/* =============================================================================
   CATÁLOGO DE VINIS - CSS ELEGANTE E PROFISSIONAL
   ============================================================================= */


/* --- HEADER DO CATÁLOGO --- */
.catalogo-header {
    background: linear-gradient(135deg, #232f3e 0%, #1a2332 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    /* ESSENCIAL: Altura definida para o contêiner */
    height: 170px; /* (60px superior + 60px inferior + ~50px de conteúdo = 170px) */
}

.catalogo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* NOVO: Aumenta a altura para garantir o loop infinito */
    height: 300%; 
    bottom: unset; /* Remove o 'bottom: 0' original */
    
    /* NOVO SVG de Vinil */
    background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><defs><style>.cls-1{fill:none;stroke:rgba(253,185,19,0.1);stroke-width:1.5px;}</style></defs><circle class="cls-1" cx="12" cy="12" r="10"/><circle class="cls-1" cx="12" cy="12" r="4"/><circle fill="rgba(253,185,19,0.3)" cx="12" cy="12" r="1.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.8;
    background-repeat: repeat; /* Garante a repetição */

    /* NOVO: Aplica a animação "soft-flow-infinite" */
    animation: soft-flow-infinite 45s infinite linear;
    
    /* ESSENCIAL: Começa a animação de uma posição "escondida" no fundo para evitar o "salto" */
    transform: translateY(-66.66%); 
}

/* NOVO: Definição da Animação de Fluxo Infinito */
@keyframes soft-flow-infinite {
    /* Começa no ponto onde o padrão visualmente se encaixa (ex: -200px / -300px) */
    0% { 
        transform: translate(0, 0); 
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -75px);
    }
    50% { 
        transform: translate(-10px, -150px);
        opacity: 0.9;
    }
    75% {
        transform: translate(15px, -225px);
    }
    100% { 
        /* O movimento vertical deve ser um MÚLTIPLO EXATO do background-size (100px). 
           -300px (3 x 100px) garante o loop visual perfeito. */
        transform: translate(0, -300px); 
        opacity: 0.6;
    }
}
.catalogo-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.catalogo-subtitle {
    color: #fdb913;
    font-size: 18px;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* --- LAYOUT PRINCIPAL --- */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.catalogo-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* --- SIDEBAR DE FILTROS --- */
.catalogo-sidebar {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 25px;
    position: sticky;
    top: 20px;
    transition: box-shadow 0.3s ease;
}

.catalogo-sidebar:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* --- GRUPOS DE FILTROS --- */
.filtro-grupo {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8e8e8;
}

.filtro-grupo:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filtro-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #232f3e;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filtro-titulo i {
    color: #fdb913;
}

/* --- LISTA DE FILTROS --- */
.filtro-lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filtro-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.filtro-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #fdb913;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.filtro-item:hover {
    background: #ffffff;
    color: #232f3e;
    border-color: #fdb913;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(253,185,19,0.2);
}

.filtro-item:hover::before {
    transform: scaleY(1);
}

.filtro-item i {
    font-size: 16px;
    color: #888;
    transition: all 0.3s ease;
}

.filtro-item:hover i {
    color: #fdb913;
    transform: scale(1.1);
}

/* --- FILTRO ATIVO --- */
.filtro-item.ativo {
    background: linear-gradient(135deg, #1b2433 0%, #232f3e 100%);
    color: #ffffff;
    border-color: #1a2433;
    font-weight: 700;
    box-shadow: 0 4px 15px rgb(137 137 137 / 30%);
}

.filtro-item.ativo::before {
    transform: scaleY(1);
    background: #ffffff;
}

.filtro-item.ativo i {
    color: #ffffff;
}

.filtro-item.ativo:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(42,138,42,0.4);
}

/* --- SUBMENU DE FILTROS --- */
.filtro-submenu {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 3px solid #fdb913;
    position: relative;
}

.filtro-submenu::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #fdb913 0%, transparent 100%);
}

.filtro-submenu-titulo {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filtro-submenu .filtro-item {
    font-size: 13px;
    padding: 10px 12px;
}

/* --- SELECT DE ESTADO --- */
.filtro-form-estado {
    margin-top: 12px;
}

.filtro-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23888" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.filtro-select:hover {
    border-color: #fdb913;
    box-shadow: 0 4px 12px rgba(253,185,19,0.15);
}

.filtro-select:focus {
    border-color: #2a8a2a;
    outline: none;
    box-shadow: 0 0 0 4px rgba(42,138,42,0.1);
}

/* --- PROMPT DE UPGRADE --- */
.upgrade-prompt {
    padding: 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    text-align: center;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.upgrade-prompt::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    opacity: 0.3;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.upgrade-prompt p {
    margin: 0 0 15px;
    font-size: 13px;
    color: #856404;
    font-weight: 600;
    line-height: 1.5;
}

.btn-upgrade-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fdb913 0%, #f59e0b 100%);
    color: #232f3e;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(253,185,19,0.3);
}

.btn-upgrade-small:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #fdb913 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253,185,19,0.4);
    color: #232f3e;
}

.btn-upgrade-small i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* --- ÁREA PRINCIPAL --- */
.catalogo-main {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* --- TOOLBAR --- */
.catalogo-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.resultado-contagem {
    margin: 0;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.resultado-contagem strong {
    color: #2a8a2a;
    font-size: 18px;
    font-weight: 700;
}

.btn-limpar-filtros {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244,67,54,0.3);
}

.btn-limpar-filtros:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,67,54,0.4);
    color: white;
}

.btn-limpar-filtros i {
    transition: transform 0.3s ease;
}

.btn-limpar-filtros:hover i {
    transform: rotate(90deg);
}

/* --- GRID DE VINIS --- */
.vinis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* --- PAGINAÇÃO --- */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-container ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-container li {
    margin: 0;
}

.pagination-container a,
.pagination-container span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 8px;
    background: #f8f9fa;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 45px;
}

.pagination-container a:hover {
    background: #fdb913;
    color: #232f3e;
    border-color: #fdb913;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253,185,19,0.3);
}

.pagination-container .current {
    background: linear-gradient(135deg, #2a8a2a 0%, #1e6e1e 100%);
    color: #ffffff;
    border-color: #2a8a2a;
    box-shadow: 0 4px 12px rgba(42,138,42,0.3);
}

.pagination-container .prev,
.pagination-container .next {
    font-weight: 700;
}

.pagination-container .prev i,
.pagination-container .next i {
    transition: transform 0.3s ease;
}

.pagination-container .prev:hover i {
    transform: translateX(-3px);
}

.pagination-container .next:hover i {
    transform: translateX(3px);
}

/* --- MENSAGEM SEM VINIS --- */
.sem-vinis {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px dashed #ddd;
    border-radius: 12px;
    margin: 40px 0;
}

.sem-vinis-icon {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sem-vinis h3 {
    color: #333;
    font-size: 24px;
    margin: 0 0 15px;
    font-weight: 700;
}

.sem-vinis p {
    color: #666;
    font-size: 16px;
    margin: 0 0 25px;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #232f3e 0%, #1a2332 100%);
    color: #fdb913;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(35,47,62,0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1a2332 0%, #0d1419 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(35,47,62,0.4);
    color: #fdb913;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1200px) {
    .catalogo-layout {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
    
    .vinis-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 992px) {
    .catalogo-layout {
        grid-template-columns: 1fr;
    }
    
    .catalogo-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .vinis-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalogo-header {
        padding: 40px 20px;
    }
    
    .catalogo-title {
        font-size: 32px;
    }
    
    .catalogo-subtitle {
        font-size: 16px;
    }
    
    .catalogo-main {
        padding: 20px;
    }
    
    .catalogo-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 15px;
    }
    
    .btn-limpar-filtros {
        justify-content: center;
    }
    
    .vinis-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .pagination-container a,
    .pagination-container span {
        padding: 10px 14px;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .catalogo-title {
        font-size: 26px;
    }
    
    .vinis-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .filtro-item {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* --- ANIMAÇÕES EXTRAS --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.catalogo-sidebar {
    animation: slideInLeft 0.5s ease-out;
}

.catalogo-main {
    animation: slideInRight 0.5s ease-out;
}

/* --- SCROLLBAR CUSTOMIZADA --- */
.catalogo-sidebar::-webkit-scrollbar {
    width: 6px;
}

.catalogo-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.catalogo-sidebar::-webkit-scrollbar-thumb {
    background: #fdb913;
    border-radius: 10px;
}

.catalogo-sidebar::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* --- LOADING STATES --- */
.filtro-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

.filtro-item.loading::after {
    content: '';
    position: absolute;
    right: 15px;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top-color: #fdb913;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- BADGE DE FILTROS ATIVOS --- */
.filtro-titulo .badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #fdb913;
    color: #232f3e;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
    margin-left: auto;
}

/* --- TRANSIÇÕES SUAVES --- */
* {
    transition-property: background-color, color, border-color, transform, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* --- LIVING SLEEVE INTERACTION (Capa Viva) --- */

.vinil-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    perspective: 1000px; /* Essencial para o 3D */
    z-index: 1;
}

.vinil-link-wrapper {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%; /* Aspect Ratio 1:1 Quadrado */
    cursor: pointer;
}

/* 1. O Disco (Fica atrás da capa inicialmente) */
.vinil-disc {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    border-radius: 50%;
    background: #111;
    background: radial-gradient(circle, #222 30%, #111 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* Efeito Mola Suave */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Detalhes do Disco */
.vinil-grooves {
    position: absolute;
    width: 95%;
    height: 95%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.05);
    background: repeating-radial-gradient(
      #111, 
      #111 2px, 
      #222 3px, 
      #222 4px
    );
}

.vinil-label {
    width: 35%;
    height: 35%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid #111;
    position: relative;
    z-index: 2;
    filter: sepia(0.2) contrast(1.2); /* Estilo vintage */
}
/* Furo central do disco */
.vinil-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.8);
}

/* 2. A Capa (Fica na frente) */
.vinil-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    transform-origin: left center; /* Gira a partir da esquerda como um livro/luva */
    overflow: hidden;
}

.vinil-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efeito de Plástico/Brilho na capa */
.vinil-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}

/* Badges de Status */
.vinil-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 20;
}
.badge-trocado { background: #2a8a2a; }
.badge-pendente { background: #ffc107; color: #333; }
.badge-indisponivel { background: #dc3545; }

/* 3. A INTERAÇÃO (HOVER) */

/* Capa inclina levemente */
.vinil-card-wrapper:hover .vinil-cover {
    transform: rotateY(-15deg) translateX(-5px); 
    box-shadow: 10px 15px 30px rgba(0,0,0,0.3);
}

/* Disco sai para fora e gira */
.vinil-card-wrapper:hover .vinil-disc {
    transform: translateX(50%) rotate(180deg); /* Desliza 50% para a direita */
    /* Ativa animação de loop */
    animation: vinil-spin 4s linear infinite;
    animation-delay: 0.3s; /* Delay para começar a girar só depois de sair */
}

@keyframes vinil-spin {
    from { transform: translateX(50%) rotate(180deg); }
    to { transform: translateX(50%) rotate(540deg); } /* 180 + 360 */
}

/* Meta Data e Botão */
.vinil-meta {
    padding-top: 15px;
    text-align: center;
}

/* --- ESTILO DO TÍTULO DO VINIL (Ajustado) --- */

.vinil-title {
    font-size: 16px;
    font-weight: 700;
    margin: 12px 0 6px; /* Espaçamento melhorado */
    line-height: 1.3;   /* Altura da linha confortável */
    
    /* Lógica para permitir 2 linhas e cortar com '...' */
    white-space: normal; /* Permite quebrar linha */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Mostra até 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Altura fixa para manter todos os cards alinhados */
}

/* Estiliza o Link (o texto em si) */
.vinil-title a {
    color: #232f3e;        /* Azul Profundo (sua cor tema) */
    text-decoration: none; /* Remove o sublinhado feio */
    transition: color 0.3s ease;
}

/* Efeito Hover */
.vinil-title a:hover {
    color: #fdb913;        /* Dourado ao passar o mouse */
}

.vinil-details {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.vinil-details span::after {
    content: '•';
    margin-left: 8px;
    color: #ccc;
}
.vinil-details span:last-child::after { content: ''; }

.btn-quick-view {
    background: transparent;
    border: 1px solid #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0; /* Escondido por padrão */
    transform: translateY(10px);
}

.vinil-card-wrapper:hover .btn-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.btn-quick-view:hover {
    background: #fdb913;
    border-color: #fdb913;
    color: #fff;
}




/* --- LIKE BUTTON (AIRBNB STYLE) --- */

/* Ajuste UX: Movemos o badge para a esquerda para o coração reinar na direita */
.vinil-badge {
    left: 10px; /* Era right: 10px */
    right: auto;
}

.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 30; /* Acima do badge e glare */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efeito elástico */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); /* Sombra para contraste na capa */
}

/* O SVG base */
.btn-wishlist svg {
    display: block;
    height: 24px;
    width: 24px;
    stroke: #ffffff; /* Borda branca grossa */
    stroke-width: 2px;
    fill: rgba(0, 0, 0, 0.3); /* Preenchimento levemente escuro p/ contraste */
    overflow: visible;
    transition: all 0.3s ease;
}

/* Hover State: Escala leve */
.btn-wishlist:hover {
    transform: scale(1.15);
}

/* Active State (Liked) */
.btn-wishlist.liked svg {
    stroke: #ff385c; /* Ou use sua cor tema: #fdb913 se preferir dourado */
    fill: #ff385c;   /* Cor de preenchimento cheia */
}

/* Animação de Clique (Pulse) */
.btn-wishlist.animating {
    animation: heart-burst 0.4s forwards;
}

@keyframes heart-burst {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

/* Correção para o 3D: Como sua capa gira, o botão deve ignorar pointer-events do pai se necessário,
   mas aqui ele está dentro, então ele gira junto. Para garantir clique fácil: */
.vinil-cover {
    transform-style: preserve-3d;
}
.btn-wishlist {
    transform: translateZ(1px); /* Garante que fique "acima" da textura da capa no 3D */
}