* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #103048;
    --secondary: #e8e0d0;
    --accent: #8b7a63;
    --aqua: #2f6376;
    --ice-blue: #f4ecde;
    --sand: #e8e0d0;
    --ocean: #082840;
    --sea-glass: #afa695;
    --champagne: #f8f2e8;
    --white: #fffcf7;
    --light-gray: #f6f0e6;
    --dark-gray: #1d2428;
    --text: #26323a;
    --border: #ded4c4;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --spacing: 1rem;
}

body {
    font-family: 'Segoe UI', Trebuchet MS, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body.is-loading {
    overflow: hidden;
}

body.cart-open {
    overflow: hidden;
}

/* Site Loader */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 2rem;
    color: var(--primary);
    background: linear-gradient(180deg, #fffcf7 0%, #f4ecde 54%, #e8e0d0 100%);
    isolation: isolate;
    transition: opacity 0.85s ease, visibility 0.85s ease;
    --loader-progress: 0%;
}

.site-loader::before {
    content: '';
    position: absolute;
    inset: 1.25rem;
    border: 1px solid rgba(16, 48, 72, 0.08);
    opacity: 1;
    pointer-events: none;
}

.site-loader::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28%;
    background: linear-gradient(180deg, rgba(16, 48, 72, 0) 0%, rgba(16, 48, 72, 0.055) 100%);
    pointer-events: none;
}

.site-loader-inner {
    position: relative;
    z-index: 1;
    width: min(88vw, 460px);
    min-height: min(58vh, 500px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.site-loader-logo {
    position: relative;
    z-index: 1;
    width: min(154px, 42vw);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(16, 48, 72, 0.16);
    background: var(--secondary);
    box-shadow:
        0 22px 58px rgba(16, 48, 72, 0.13),
        0 0 0 10px rgba(255, 252, 247, 0.48);
    animation: loaderFloat 4.2s ease-in-out infinite, loaderGlow 5.6s ease-in-out infinite;
}

.site-loader-brand {
    position: relative;
    z-index: 1;
    margin-top: 1.45rem;
    font-family: 'Bodoni 72', Didot, Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    color: var(--primary);
    animation: loaderTextShimmer 4.2s ease-in-out infinite;
}

.site-loader-progress {
    position: relative;
    z-index: 1;
    width: min(240px, 58vw);
    margin-top: 1.2rem;
}

.site-loader-line {
    width: 100%;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(16, 48, 72, 0.14);
}

.site-loader-line span {
    position: relative;
    display: block;
    width: var(--loader-progress);
    min-width: 14px;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ocean) 0%, var(--primary) 58%, var(--accent) 100%);
    box-shadow: 0 0 18px rgba(16, 48, 72, 0.14);
    transition: width 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-loader-line span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 252, 247, 0), rgba(255, 252, 247, 0.5), rgba(255, 252, 247, 0));
    transform: translateX(-120%);
    animation: loaderLineShine 1.8s ease-in-out infinite;
}

.site-loader-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.62rem;
    color: rgba(16, 48, 72, 0.56);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-loader-meta strong {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    min-width: 3ch;
    text-align: right;
}

.site-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .site-loader {
        padding: 1.5rem;
        background: linear-gradient(180deg, #fffcf7 0%, #f4ecde 58%, #e8e0d0 100%);
    }

    .site-loader-logo {
        width: min(136px, 44vw);
    }

    .site-loader-inner {
        min-height: min(64vh, 500px);
    }

    .site-loader-brand {
        font-size: 0.78rem;
        letter-spacing: 0.28em;
    }
}

@media (max-width: 480px) {
    .site-loader-logo {
        width: min(122px, 52vw);
    }

    .site-loader-inner {
        min-height: min(58vh, 440px);
    }

    .site-loader-brand {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
    }

    .site-loader-progress {
        width: min(230px, 68vw);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 1.5rem 0 0.8rem;
    color: var(--primary);
    font-family: 'Bodoni 72', Didot, Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    text-wrap: balance;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    animation: fadeInUp 1s ease-out 0.1s backwards;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

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

.btn-primary:hover {
    background-color: var(--ocean);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 252, 247, 0.94);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.4625rem 1.5rem 0.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo img {
    display: block;
    width: 54px;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(16, 48, 72, 0.12);
    border-radius: 50%;
    background: var(--secondary);
}

.nav-search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 250px;
    margin-right: 1rem;
}

.search-icon-inside {
    position: absolute;
    left: 12px;
    color: #999;
    font-size: 0.85rem;
    pointer-events: none;
}

.nav-search-input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--light-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.logo h1 {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--primary);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    position: relative;
    font-weight: 400;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.cart-icon {
    position: relative;
    font-size: 1.1rem;
}

.mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.mobile-cart-icon {
    display: none;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    overflow: hidden;
    margin-top: 63px;
    background: var(--primary);
    isolation: isolate;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 10, 20, 0.36) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.02);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 23% 48%, rgba(83, 184, 232, 0.16) 0%, rgba(83, 184, 232, 0) 34%),
        linear-gradient(90deg, rgba(0, 10, 20, 0.62) 0%, rgba(0, 26, 51, 0.42) 36%, rgba(0, 26, 51, 0.16) 66%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    max-width: 1320px;
    padding: 0 2rem 0 4.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0.55rem;
    width: 2px;
    height: 72%;
    max-height: 360px;
    background: linear-gradient(180deg, rgba(232, 224, 208, 0.96), rgba(139, 122, 99, 0.16));
    box-shadow: 0 0 28px rgba(16, 48, 72, 0.16);
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    color: var(--ice-blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.hero-kicker::after {
    content: '';
    width: 74px;
    height: 1px;
    background: currentColor;
    opacity: 0.78;
}

.hero-title {
    max-width: 980px;
    font-family: 'Bodoni 72', Didot, Georgia, 'Times New Roman', serif;
    font-size: clamp(3.6rem, 8.8vw, 7rem);
    margin-bottom: 1.45rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.96;
    text-wrap: balance;
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.52);
}

.hero-title span {
    display: block;
}

.hero-title-accent {
    color: #c4edf2;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.62);
}

.hero-subtitle {
    max-width: 610px;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    margin-bottom: 2.6rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.hero-buttons .btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.84);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Coleções */
.colecoes {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
}

.colecoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: stretch;
}

.colecao-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
    background: var(--primary);
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(0, 26, 51, 0.1);
    min-width: 0;
}

.colecao-card:nth-child(1) { animation-delay: 0.1s; }
.colecao-card:nth-child(2) { animation-delay: 0.2s; }
.colecao-card:nth-child(3) { animation-delay: 0.3s; }
.colecao-card:nth-child(4) { animation-delay: 0.4s; }
.colecao-card:nth-child(5) { animation-delay: 0.5s; }
.colecao-card:nth-child(6) { animation-delay: 0.6s; }

.colecao-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.colecao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    transform: scale(1.01);
}

.colecao-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.04) 0%, rgba(0, 18, 35, 0.24) 46%, rgba(0, 10, 20, 0.78) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: var(--white);
    text-align: left;
    opacity: 1;
    padding: clamp(1.1rem, 3vw, 1.75rem);
    transition: var(--transition);
}

.colecao-card:hover .colecao-overlay {
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.02) 0%, rgba(0, 18, 35, 0.18) 42%, rgba(0, 10, 20, 0.7) 100%);
}

.colecao-card:hover img {
    transform: scale(1.06);
}

.colecao-overlay h3 {
    max-width: 100%;
    font-size: clamp(1.25rem, 3.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
    margin-bottom: 0.5rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.colecao-overlay p {
    max-width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    opacity: 0.92;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.search-box {
    width: 100%;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0;
}

/* Novo Sistema de Filtros */
.filtros-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.filtros-toggle {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    transition: var(--transition);
    border-radius: 30px;
    color: var(--primary);
}

.filtros-toggle i {
    transition: transform 0.4s ease;
}

.filtros-toggle.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.filtros-toggle.active i {
    transform: rotate(180deg);
}

.filtros-container {
    width: auto;
    min-width: 0;
    max-width: 0;
    max-height: 56px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-width 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease;
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    padding-top: 0;
    flex-wrap: nowrap;
}

.filtros-container.active {
    max-width: 680px;
    opacity: 1;
    pointer-events: auto;
}

.filtro-btn {
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    border-radius: 4px;
    white-space: nowrap;
}

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

.filter-count {
    margin-left: 6px;
    opacity: 0.6;
    font-size: 0.85em;
    font-weight: 300;
}

.search-box:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 26, 51, 0.1);
}

.produtos {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background:
        linear-gradient(180deg, #fffcf7 0%, #f6f0e6 48%, #fffcf7 100%);
}

.produtos .section-title {
    margin-top: 0;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.25rem, 2.6vw, 2.5rem);
    align-items: stretch;
}

.produto-card {
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white), #fffaf2);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 26, 51, 0.07);
    transition: var(--transition);
}

.produto-card:hover {
    box-shadow: 0 26px 60px rgba(0, 26, 51, 0.12);
    transform: translateY(-4px);
}

.produto-image {
    position: relative;
    aspect-ratio: 3 / 4 !important; /* Forcei 3:4 */
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 0;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    max-width: calc(100% - 1.8rem);
    padding: 0.45rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 10;
    border-radius: 4px;
    white-space: nowrap;
}

.badge.destaque {
    background: var(--primary);
    color: var(--white);
}

.badge.promocao {
    background: #d32f2f;
    color: var(--white);
}

.badge.armacao {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    border: 1px solid rgba(0, 26, 51, 0.12);
}

.badge.acessorio {
    background: rgba(255, 252, 247, 0.94);
    color: var(--primary);
    border: 1px solid rgba(16, 48, 72, 0.12);
}

.produto-card {
    cursor: pointer;
    transition: var(--transition);
}

.produto-card {
    cursor: pointer;
    transition: var(--transition);
}

.produto-hover {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 12;
    transition: var(--transition);
}

.btn-add-cart {
    width: 46px;
    height: 46px;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(16, 48, 72, 0.14);
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.92);
    color: var(--primary);
    cursor: pointer;
    font-size: 0.92rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(16, 48, 72, 0.14);
    pointer-events: auto;
}

.btn-add-cart:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 16px 34px rgba(16, 48, 72, 0.22);
}

.btn-add-cart span {
    display: none;
}

.produto-card:hover .produto-hover {
    opacity: 1;
}

.produto-card:hover img {
    transform: scale(1.1);
}

.produto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.25rem 1.2rem 1.1rem;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), #fffcf7);
}

.produto-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 48, 72, 0.18), rgba(139, 122, 99, 0.58), rgba(139, 122, 99, 0));
}

.produto-info h3 {
    font-family: 'Bodoni 72', Didot, Georgia, 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.4vw, 1.32rem);
    margin-bottom: 0.95rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    color: var(--primary);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
    transition: color 0.25s ease;
}

.produto-info h3::after {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    margin-top: 0.72rem;
    background: linear-gradient(90deg, var(--accent), rgba(139, 122, 99, 0.24));
}

.produto-card:hover .produto-info h3 {
    color: var(--ocean);
}

.descricao {
    font-size: 0.9rem;
    color: #6d7278;
    margin-bottom: 1.15rem;
    letter-spacing: 0;
    line-height: 1.55;
}

.produto-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-view-product {
    width: 100%;
    min-height: 42px;
    margin-top: 1rem;
    border: 1px solid rgba(16, 48, 72, 0.16);
    border-radius: 6px;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.preco {
    display: inline-flex;
    align-items: baseline;
    gap: 0.18rem;
    padding: 0 0.08rem 0.08rem 0;
    background: linear-gradient(180deg, transparent 62%, rgba(158, 215, 223, 0.32) 0);
    font-family: 'Bodoni 72', Didot, Georgia, 'Times New Roman', serif;
    font-size: clamp(1.32rem, 2.5vw, 1.58rem);
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0;
    line-height: 0.95;
    white-space: nowrap;
}

.preco-moeda {
    display: inline-block;
    font-family: 'Segoe UI', Trebuchet MS, sans-serif;
    font-size: 0.56em;
    font-weight: 700;
    color: var(--ocean);
    letter-spacing: 0.04em;
    line-height: 1;
    transform: translateY(-0.06em);
}

.preco-valor {
    font-variant-numeric: lining-nums tabular-nums;
}

.preco-pendente {
    font-family: 'Segoe UI', Trebuchet MS, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-entrega {
    background: rgba(158, 215, 223, 0.18);
    color: var(--ocean);
    border: 1px solid rgba(26, 77, 122, 0.16);
    padding: 0.36rem 0.62rem;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Modal de Detalhes do Produto */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    animation: fadeIn 0.4s ease;
}

.close-product-modal {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 2001; /* Higher than modal content */
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-product-modal:hover {
    background: var(--light-gray);
    transform: rotate(90deg);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.no-results i {
    font-size: 4rem;
    color: var(--aqua);
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
}

.clear-search-btn {
    min-height: 42px;
    padding: 0.72rem 1.2rem;
    border: 1px solid rgba(0, 26, 51, 0.16);
    border-radius: 6px;
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--transition);
}

.clear-search-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.product-modal.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.modal-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 2rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
}

.modal-gallery {
    display: grid;
    gap: 1rem;
}

.main-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumb-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border-radius: 4px;
    border: 2px solid transparent; /* Add border for active state */
}

.thumb-img:hover, .thumb-img.active {
    opacity: 1;
    border-color: var(--primary); /* Highlight active/hovered thumbnail */
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-actions {
    margin-top: auto; /* Push actions to the bottom of modal-info */
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky; /* Make actions sticky on scroll */
    bottom: 0;
    background: var(--white); /* Ensure background covers content when sticky */
    z-index: 10; /* Ensure it's above other modal content */
    padding-bottom: 1rem; /* Add some padding at the bottom */
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    width: fit-content;
    margin: 0 auto; /* Center the quantity selector */
}

.quantity-selector .qty-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-selector .qty-btn:hover {
    background: var(--light-gray);
    border-radius: 50%;
}

.quantity-selector span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    min-width: 25px;
    text-align: center;
}

.modal-info h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-family: 'Bodoni 72', Didot, Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0;
    line-height: 1.04;
    margin-bottom: 0.5rem;
    text-wrap: balance;
}

.modal-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.22rem;
    width: fit-content;
    padding-bottom: 0.16rem;
    background: linear-gradient(180deg, transparent 62%, rgba(158, 215, 223, 0.34) 0);
    font-family: 'Bodoni 72', Didot, Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 500;
    color: var(--primary);
    line-height: 0.95;
}

.modal-price.is-pending {
    font-family: 'Segoe UI', Trebuchet MS, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal-price-note {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.modal-color {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-description {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.modal-features {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.modal-features h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    color: #888;
}

.modal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-features li {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--aqua);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Lifestyle */
.lifestyle {
    padding: 6rem 0;
    background: var(--light-gray);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(280px, auto);
}

.lifestyle-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
}

.lifestyle-logo-item {
    display: grid;
    place-items: center;
    background: var(--secondary);
}

.lifestyle-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.lifestyle-logo-item img {
    width: min(62%, 260px);
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(16, 48, 72, 0.14);
    border-radius: 50%;
    box-shadow: 0 22px 48px rgba(16, 48, 72, 0.14);
}

.lifestyle-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(2px);
    color: var(--white);
    padding: 3rem 1.5rem 1.5rem;
    text-align: left;
    transition: var(--transition);
}

.lifestyle-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

.lifestyle-text p {
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    opacity: 0.9;
}

.lifestyle-item:hover img {
    transform: scale(1.05);
}

/* Instagram Section */
.instagram-section {
    padding: 6rem 0;
    background: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.insta-button {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.insta-button a {
    text-decoration: none;
}

/* FAQ */
.faq {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--aqua);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 2rem;
}

.faq-question:hover {
    color: var(--accent);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(16, 48, 72, 0.22);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    overflow: hidden;
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-content {
    width: min(400px, 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-modal.active .cart-content {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.close-cart {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.close-cart:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 2rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: #999;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-btn {
    background: var(--light-gray);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

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

.cart-summary {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.observacoes {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.85rem;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 100;
    text-decoration: none;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

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

/* Animations */
@keyframes loaderFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes loaderGlow {
    0%, 100% {
        box-shadow:
            0 22px 58px rgba(16, 48, 72, 0.13),
            0 0 0 10px rgba(255, 252, 247, 0.48);
    }
    50% {
        box-shadow:
            0 26px 66px rgba(16, 48, 72, 0.17),
            0 0 0 13px rgba(255, 252, 247, 0.62),
            0 0 34px rgba(139, 122, 99, 0.16);
    }
}

@keyframes loaderTextShimmer {
    0%, 100% {
        color: var(--primary);
        text-shadow: 0 8px 24px rgba(16, 48, 72, 0);
    }
    50% {
        color: var(--ocean);
        text-shadow: 0 10px 32px rgba(16, 48, 72, 0.08);
    }
}

@keyframes loaderLineShine {
    0% {
        transform: translateX(-120%);
    }
    58%, 100% {
        transform: translateX(140%);
    }
}

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

@keyframes shake {
    0% { transform: scale(1); }
    20% { transform: scale(1.2) rotate(15deg); }
    40% { transform: scale(1.2) rotate(-15deg); }
    60% { transform: scale(1.2) rotate(10deg); }
    80% { transform: scale(1.2) rotate(-10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.cart-shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-loader-logo,
    .site-loader-brand,
    .site-loader-line span::after {
        animation: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(3.7rem, 8.4vw, 5.8rem);
    }

    .hero-subtitle {
        font-size: 1.12rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
        flex: 0 0 auto;
        margin: 0;
    }

    .mobile-nav-actions {
        order: 2;
        margin-left: auto;
    }

    .mobile-cart-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        color: var(--primary);
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 50%;
        text-decoration: none;
    }

    .mobile-cart-icon::after {
        display: none;
    }

    .desktop-cart-icon {
        display: none;
    }

    .container {
        padding: 0 1.25rem;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.6125rem 1.25rem 0.3rem;
    }

    .logo img {
        width: 48px;
    }

    .logo {
        order: 1; /* Nome Velaris no topo */
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%; /* Abre logo abaixo do header empilhado */
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 560px;
        align-items: flex-end;
        padding-bottom: 4rem;
    }

    .gradient-overlay {
        background:
            radial-gradient(circle at 48% 60%, rgba(83, 184, 232, 0.14) 0%, rgba(83, 184, 232, 0) 34%),
            linear-gradient(180deg, rgba(0, 10, 20, 0.08) 0%, rgba(0, 10, 20, 0.58) 64%, rgba(0, 10, 20, 0.76) 100%);
    }

    .hero-content {
        padding: 0 1.5rem 0 2.35rem;
    }

    .hero-content::before {
        left: 1.5rem;
        top: 0.35rem;
        height: 82%;
    }

    .hero-kicker {
        font-size: 0.78rem;
    }

    .hero-kicker::after {
        width: 54px;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 4.25rem);
        line-height: 0.96;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.85rem, 7vw, 2.35rem);
        letter-spacing: 0.02em;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.25rem;
    }

    .colecoes-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0.9rem;
        width: calc(100% + 2.5rem);
        margin: 0 -1.25rem;
        padding: 0 1.25rem 0.75rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-padding-inline: 1.25rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .colecoes-grid::-webkit-scrollbar {
        display: none;
    }

    .colecao-card {
        flex: 0 0 clamp(260px, 78vw, 390px);
        aspect-ratio: 16 / 11;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .colecao-overlay {
        padding: 1rem;
    }

    .colecao-overlay h3 {
        font-size: 1.18rem;
    }

    .colecao-overlay p {
        font-size: 0.85rem;
    }

    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .produto-info {
        padding: 1rem;
    }

    .produto-info::before {
        left: 1rem;
        right: 1rem;
    }

    .produto-info h3 {
        font-size: clamp(1rem, 3vw, 1.16rem);
        margin-bottom: 0.78rem;
    }

    .produto-info h3::after {
        width: 32px;
        margin-top: 0.58rem;
    }

    .produto-hover {
        opacity: 1;
        right: 0.7rem;
        bottom: 0.7rem;
        padding: 0;
    }

    .btn-add-cart {
        width: 42px;
        height: 42px;
        min-height: 0;
        padding: 0;
        font-size: 0.86rem;
    }

    .badge {
        top: 0.7rem;
        right: 0.7rem;
        max-width: calc(100% - 1.4rem);
        padding: 0.38rem 0.58rem;
        font-size: 0.64rem;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        gap: 1rem;
    }

    .lifestyle-featured {
        grid-column: span 2;
        grid-row: span 2;
        height: 400px;
    }

    .lifestyle-text h3 {
        font-size: 1.2rem;
    }

    .cart-modal {
        width: 100%;
    }

    .search-box {
        width: 100%;
        grid-column: 1 / -1;
    }

    .filtros-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 1rem;
    }

    .filtros-container {
        width: 100%;
        max-width: 100%;
        max-height: 0;
        transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease, padding-top 0.24s ease;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .filtros-container.active {
        max-width: 100%;
        max-height: 180px;
        padding-top: 1rem;
    }

    .filtros {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.65rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .filtro-btn {
        min-width: 0;
        padding: 0.68rem 0.5rem;
        font-size: 0.78rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .modal-container {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 2rem;
    }
}

@media (max-width: 560px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .produto-info h3 {
        position: relative;
        min-height: calc(2.24em + 0.72rem + 1px);
        padding-bottom: calc(0.72rem + 1px);
    }

    .produto-info h3::after {
        position: absolute;
        left: 0;
        bottom: 0;
        margin-top: 0;
    }
    
    .produto-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.52rem;
        margin-top: 0.1rem;
    }

    .colecao-card {
        aspect-ratio: 16 / 11;
    }

    .produto-card {
        width: 100%;
        max-width: 430px;
        margin-bottom: 1rem;
    }

    .nav-search-wrapper {
        order: 3;
        width: 100%;
        max-width: none;
        justify-content: center;
        margin-top: 0.8rem;
    }

    .search-toggle-btn {
        display: none !important;
    }

    .nav-search-container {
        width: 100% !important;
        opacity: 1 !important;
        overflow: visible !important;
        margin-left: 0 !important;
        margin-right: -40px;
    }

    .nav-search-input {
        width: 90%;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-container {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 2rem;
    }

    .alinhamento {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .modal-gallery {
        position: static; /* Remove sticky on mobile */
        top: auto;
        height: auto;
    }

    .modal-actions {
        position: sticky; /* Keep sticky on mobile */
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem 20px; /* Adjust padding for mobile */
        border-radius: 0;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
        margin-left: -20px; /* Counteract container padding */
        margin-right: -20px; /* Counteract container padding */
        width: calc(100% + 40px); /* Full width */
    }

    .close-product-modal {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .modal-info h2 {
        font-size: 2rem;
    }

    .modal-price {
        font-size: 1.8rem;
    }

    .modal-description {
        font-size: 1rem;
    }

    .modal-features ul {
        grid-template-columns: 1fr; /* Single column for features on small screens */
    }
}

@media (max-width: 560px) {
    .modal-container {
        padding: 50px 15px;
    }

    .modal-actions {
        padding: 1rem 15px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    .close-product-modal {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .lifestyle-featured {
        grid-column: span 1;
        grid-row: span 1;
        height: 320px;
    }

    .lifestyle-text {
        padding: 2rem 1.25rem 1.25rem;
    }

    .hero {
        min-height: 500px;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding: 0 1.15rem 0 1.85rem;
    }

    .hero-content::before {
        left: 1.15rem;
        width: 1px;
    }

    .hero-title {
        font-size: clamp(2.65rem, 13vw, 3.4rem);
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

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

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

    .produto-info {
        padding: 0.88rem;
    }

    .produto-info::before {
        left: 0.88rem;
        right: 0.88rem;
    }

    .produto-info h3 {
        font-size: 1rem;
        line-height: 1.12;
        margin-bottom: 0.65rem;
        min-height: calc(2.24em + 0.58rem + 1px);
        padding-bottom: calc(0.58rem + 1px);
    }

    .preco {
        font-size: 1.12rem;
    }

    .badge-entrega {
        padding: 0.28rem 0.46rem;
        font-size: 0.56rem;
        letter-spacing: 0.03em;
    }

    .produto-hover {
        right: 0.55rem;
        bottom: 0.55rem;
        justify-content: center;
        padding: 0;
        background: transparent;
    }

    .btn-add-cart {
        width: 36px;
        height: 36px;
        min-height: unset;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 18px rgba(16, 48, 72, 0.16);
    }

    .btn-add-cart span {
        display: none;
    }

    .filtros {
        gap: 0.5rem;
    }

    .filtro-btn {
        padding: 0.6rem 0.35rem;
        font-size: 0.72rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        justify-content: center;
    }
}

/* Hidden classes */
.hidden {
    display: none !important;
}

.product-hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

@media (max-width: 380px) {
    .preco {
        font-size: 1.02rem;
    }

    .produto-info h3 {
        font-size: 0.94rem;
    }

    .badge-entrega {
        font-size: 0.52rem;
        padding-inline: 0.38rem;
    }
}
