/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #622331;
    --primary-light: #7a2d3e;
    --primary-dark: #4a1a25;
    --secondary-color: #CC9F3C;
    --secondary-light: #e0b85e;
    --secondary-dark: #b88a2a;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(98, 35, 49, 0.15);
    --shadow-hover: 0 8px 30px rgba(98, 35, 49, 0.25);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: splashFadeOut 0.5s ease-out 1.6s forwards;
}

.returning-visitor .splash-screen {
    display: none !important;
}

.splash-content {
    text-align: center;
    animation: splashContent 0.8s ease-out;
}

.splash-logo {
    width: 250px;
    max-width: 80%;
    height: auto;
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
}

.splash-loader {
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.splash-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--secondary-light);
    animation: loaderSlide 1.5s ease-in-out infinite;
}

@keyframes splashFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes splashContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes loaderSlide {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

/* Main Content */
.main-content {
    opacity: 0;
    animation: mainContentFadeIn 0.8s ease-out 1.6s forwards;
}

.returning-visitor .main-content {
    opacity: 1;
    animation: none;
}

@keyframes mainContentFadeIn {
    to {
        opacity: 1;
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 25px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

.logo-link {
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.header .nav-icons .internal-area-btn,
.header .nav-icons a.internal-area-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 20px;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(98, 35, 49, 0.2);
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.header .nav-icons .internal-area-icon {
    flex-shrink: 0;
    stroke: #ffffff;
}

.header .nav-icons .internal-area-btn:hover,
.header .nav-icons a.internal-area-btn:hover {
    background: var(--primary-light);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(98, 35, 49, 0.35);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.slide-out {
    opacity: 0;
    transform: translateX(-100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(74, 26, 37, 0.6) 0%, rgba(98, 35, 49, 0.35) 45%, rgba(74, 26, 37, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-light);
    margin-bottom: 18px;
    animation: subtitleFadeIn 1s ease-out 0.3s both;
}

.hero-kicker::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--secondary-light);
    margin-right: 10px;
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: titleFadeIn 1s ease-out 0.5s both;
}

.hero-title-accent {
    font-weight: 400;
    font-style: italic;
    color: var(--secondary-light);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    animation: subtitleFadeIn 1s ease-out 0.8s both;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: var(--white);
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204, 159, 60, 0.3);
    animation: btnFadeIn 1s ease-out 1.1s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(204, 159, 60, 0.5);
}

@keyframes btnFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    width: 100%;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Trust Bar */
.trust-bar {
    padding: 22px 0;
    background: var(--light-gray);
    border-bottom: 1px solid rgba(98, 35, 49, 0.06);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    line-height: 1.55;
}

.trust-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.trust-item-hours {
    white-space: nowrap;
}

.trust-hours-inline {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 1px;
}

.trust-hours-inline strong {
    color: var(--primary-color);
}

.trust-item-text {
    display: block;
    padding-top: 1px;
}

.trust-hours-sep {
    margin: 0 12px;
    color: rgba(98, 35, 49, 0.3);
    font-weight: 400;
}

.trust-item-hours strong {
    display: inline;
    font-size: 13px;
    margin-bottom: 0;
}

/* Novidades */
.novidades-section {
    padding: 60px 0 10px;
    background: var(--white);
}

.novidades-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.novidades-grid::-webkit-scrollbar {
    height: 6px;
}

.novidades-grid::-webkit-scrollbar-thumb {
    background: rgba(98, 35, 49, 0.2);
    border-radius: 10px;
}

.novidades-grid .product-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.novidades-grid .product-image-container {
    height: 320px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.view-all-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: var(--secondary-color);
}

.collections-catalog {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.collection-block {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: none;
    border: 1px solid rgba(98, 35, 49, 0.08);
    scroll-margin-top: 100px;
}

.collection-block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color, #eadde1);
}

.collection-banner {
    position: relative;
    margin: -36px -36px 32px;
    min-height: 220px;
    border-radius: 20px 20px 0 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.collection-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(74, 26, 37, 0) 0%, rgba(74, 26, 37, 0.8) 100%);
}

.collection-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.collection-banner-content .collection-title {
    color: var(--white);
}

.collection-banner-content .collection-description {
    color: rgba(255, 255, 255, 0.88);
}

.collection-banner-content .collection-count {
    color: var(--secondary-light);
    padding-top: 0;
}

.collection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.collection-description {
    color: var(--text-light, #666);
    font-size: 15px;
    max-width: 560px;
    line-height: 1.6;
}

.collection-count {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    white-space: nowrap;
    padding-top: 8px;
}

.collection-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--text-light, #666);
    font-size: 15px;
    background: var(--light-gray);
    border-radius: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(98, 35, 49, 0.08);
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.product-view-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 5;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(98, 35, 49, 0.92);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-view-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-gray);
    transition: transform 0.6s ease, opacity 0.5s ease;
}

.product-image-secondary {
    opacity: 0;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card:hover .product-image-primary {
    opacity: 0;
}

.product-card:hover .product-image-secondary {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 13px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(98, 35, 49, 0.35);
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    z-index: 10;
}

.favorite-btn:hover {
    background: var(--white);
    color: #e74c3c;
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    position: relative;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.product-price-section {
    margin-bottom: 18px;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.product-installment {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.modal-installment-table {
    margin-top: 16px;
}

.installment-table-wrap {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 16px;
}

.installment-table-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.installment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.installment-table th,
.installment-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(98, 35, 49, 0.08);
}

.installment-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-light);
    font-weight: 600;
}

.installment-table tbody tr:last-child td {
    border-bottom: none;
}

.installment-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 72px;
}

.installment-table td:nth-child(2) {
    font-weight: 600;
    color: var(--secondary-color);
}

.installment-cash {
    color: var(--text-light);
    font-size: 12px;
}

.installment-table-note {
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

.product-size {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.add-to-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.add-to-cart:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(98, 35, 49, 0.3);
}

/* Product Detail Modal */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 26, 37, 0.75);
    backdrop-filter: blur(4px);
}

.product-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(98, 35, 49, 0.35);
    animation: modalSlideIn 0.35s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.product-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-modal-gallery {
    padding: 24px;
    background: var(--light-gray);
    border-radius: 20px 0 0 20px;
}

.modal-main-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 16px;
}

.modal-main-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.modal-main-image-wrap img.hidden,
.modal-main-video.hidden {
    display: none;
}

.modal-main-video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    background: #000;
}

.modal-thumb-video {
    position: relative;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.modal-thumb-video video {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}

.modal-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 18px;
}

.modal-size-picker {
    margin: 16px 0;
}

.modal-size-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-option {
    min-width: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(98, 35, 49, 0.18);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option:hover,
.size-option.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.modal-size-error {
    margin-top: 8px;
    font-size: 12px;
    color: #b42318;
}

.cart-item-size {
    font-size: 12px;
    color: var(--text-light);
    margin: 2px 0 6px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.modal-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.modal-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.modal-thumb:hover,
.modal-thumb.active {
    opacity: 1;
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.btn-gallery-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
}

.btn-gallery-open:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-modal-info {
    padding: 40px 32px 32px;
    display: flex;
    flex-direction: column;
}

.modal-badge {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.modal-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-add-cart {
    margin-top: 8px;
    margin-bottom: 16px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--border, #eadde1);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-back-home:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.gallery-lightbox img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox .gallery-prev { left: 24px; }
.gallery-lightbox .gallery-next { right: 24px; }

.gallery-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(98, 35, 49, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(98, 35, 49, 0.3);
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.instagram-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.instagram-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--light-gray);
}

.instagram-link:hover {
    color: var(--white);
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(204, 159, 60, 0.1) 0%, transparent 50%);
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-feature {
    text-align: center;
}

.footer-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.footer-feature-text {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-text {
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.footer-legal {
    margin-bottom: 10px;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

/* Privacy bar */
.privacy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background: rgba(74, 26, 37, 0.97);
    color: var(--white);
    border-top: 1px solid rgba(204, 159, 60, 0.35);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    padding: 16px 0;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.privacy-bar.is-visible {
    transform: translateY(0);
}

.privacy-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.privacy-bar-text {
    flex: 1;
    min-width: 240px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.privacy-bar-text a {
    color: var(--secondary-light);
    font-weight: 600;
    text-decoration: underline;
}

.privacy-bar-text a:hover {
    color: var(--white);
}

.privacy-bar-btn {
    flex-shrink: 0;
    padding: 12px 28px;
    font-size: 12px;
    white-space: nowrap;
}

body.privacy-bar-visible .whatsapp-float {
    bottom: 88px;
}

/* Legal / Privacy page */
.legal-page {
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-header {
    background: var(--white);
    border-bottom: 1px solid rgba(98, 35, 49, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.legal-logo-link {
    display: inline-flex;
}

.legal-main {
    padding: 48px 0 80px;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(98, 35, 49, 0.08);
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--primary-color);
    margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal-footer {
    padding: 40px 0;
}

.legal-footer-link {
    display: inline-block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
}

.legal-footer-link:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

.btn-back-site {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(98, 35, 49, 0.06);
    border: 1px solid rgba(98, 35, 49, 0.12);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-back-site:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.close-cart {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quantity-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #c0392b;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.total-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal.open {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(74, 26, 37, 0.75);
    backdrop-filter: blur(4px);
}

.checkout-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: 92dvh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    padding: 28px 24px 24px;
    box-shadow: 0 24px 60px rgba(98, 35, 49, 0.35);
}

.checkout-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkout-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.checkout-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 6px;
    padding-right: 40px;
}

.checkout-modal-subtitle {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.checkout-order-summary {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.checkout-summary-row strong {
    color: var(--primary-color);
    font-size: 18px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-field label,
.checkout-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.checkout-input,
.checkout-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #eadde1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-input:focus,
.checkout-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(184, 138, 42, 0.15);
}

.checkout-textarea {
    resize: vertical;
    min-height: 80px;
}

.checkout-payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.checkout-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #eadde1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.checkout-payment-option:has(input:checked) {
    border-color: var(--secondary-color);
    background: rgba(184, 138, 42, 0.08);
}

.checkout-payment-option input {
    accent-color: var(--primary-color);
}

.checkout-payment-option small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.checkout-submit {
    width: 100%;
}

.checkout-back {
    width: 100%;
    text-align: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #eadde1;
    color: var(--primary-color);
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.checkout-back:hover {
    border-color: var(--primary-color);
}

.checkout-installments-field.hidden {
    display: none;
}

.checkout-installment-preview {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.empty-cart-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
}

body.shopping-flow-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px) scale(0.85);
    animation: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Scroll Animations */
.product-card,
.contact-card,
.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.animate-in,
.contact-card.animate-in,
.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }
.product-card:nth-child(5) { transition-delay: 0.5s; }

.contact-card:nth-child(1) { transition-delay: 0.1s; }
.contact-card:nth-child(2) { transition-delay: 0.2s; }
.contact-card:nth-child(3) { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-bar-inner {
        gap: 20px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .trust-item {
        font-size: 12px;
    }

    .novidades-grid .product-card {
        flex: 0 0 200px;
    }

    .novidades-grid .product-image-container {
        height: 260px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
        z-index: 99;
    }
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-icons {
        gap: 8px;
        flex-shrink: 0;
    }

    .header .nav-icons .internal-area-btn,
    .header .nav-icons a.internal-area-btn {
        padding: 8px 12px;
        font-size: 9px;
        letter-spacing: 0.5px;
        border-radius: 8px;
    }
    
    .logo-link {
        position: static;
        transform: none;
    }
    
    .header-logo {
        height: 45px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .collections-catalog {
        gap: 48px;
    }

    .collection-block {
        padding: 24px 20px;
    }

    .collection-block-header {
        flex-direction: column;
        gap: 12px;
    }

    .collection-banner {
        margin: -24px -20px 24px;
        min-height: 160px;
    }

    .collection-banner-content {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .collection-title {
        font-size: 26px;
    }
    
    .footer-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-field-row {
        grid-template-columns: 1fr;
    }

    .checkout-modal-dialog {
        padding: 24px 18px 18px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .product-modal-gallery {
        border-radius: 20px 20px 0 0;
    }

    .modal-main-image-wrap img {
        height: 320px;
    }

    .product-modal-info {
        padding: 24px 20px;
    }

    .modal-title {
        font-size: 26px;
    }

    .privacy-bar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .privacy-bar-btn {
        width: 100%;
        text-align: center;
    }

    body.privacy-bar-visible .whatsapp-float {
        bottom: 120px;
    }

    .legal-content {
        padding: 32px 22px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-header .container {
        flex-wrap: wrap;
    }

    .btn-back-site {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .header-logo {
        height: 40px;
    }
}
