/* ==========================================================================
   CATÁLOGO - Estilos específicos
   ========================================================================== */

/* Tree Navigation */
.tree-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
}

.tree-btn:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.tree-btn.active {
    color: var(--color-primary);
    font-weight: 700;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 106, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(255, 106, 0, 0.12);
    border-color: rgba(255, 106, 0, 0.2);
}

.product-card .card-img-wrap {
    height: 280px;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF6EC 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .card-img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.product-card:hover .card-img {
    transform: scale(1.12) rotate(-2deg);
    filter: drop-shadow(0 35px 70px rgba(255,106,0,0.2));
}

.product-card .card-category {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-primary);
}

.product-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-artisan);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 700;
}

/* Modal Animation */
@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-modal-in {
    animation: modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in {
    animation: modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive */
@media (max-width: 1024px) {
    .tree-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-card .card-img-wrap {
        height: 200px;
    }

    .product-card .card-img {
        max-height: 150px;
    }
}
