/* Global Reset & Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #0c0c0c;
    --bg-secondary: #141414;
    --text-primary: #e6e6e6;
    --text-secondary: #a3a3a3;
    --brand-olive: #4a5d4a;
    --brand-gold: #c5a059;
    --brand-gold-hover: #d4b06a;
    --white: #ffffff;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--brand-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--brand-gold);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--bg-color);
}

.btn-link {
    color: var(--brand-gold);
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}

.btn-link:hover {
    border-color: var(--brand-gold);
}

/* Header Premium Flutuante */
/* Header Premium Flutuante */
.main-header {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--spacing-sm);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 12, 12, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--brand-gold);
    font-weight: 500;
}

/* Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    opacity: 0.8;
}

.desktop-nav a:hover {
    color: var(--white);
    opacity: 1;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.search-box:focus-within,
.search-box.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.9rem;
    width: 120px;
    font-family: 'Inter', sans-serif;
    transition: width 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box button {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0.7;
    padding: 0;
    display: flex;
    align-items: center;
}

.search-box button:hover {
    opacity: 1;
}


.cart-icon {
    position: relative;
    color: var(--white);
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Responsividade do Header */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        font-size: 1.1rem;
        color: var(--white);
        margin-left: 0.5rem;
    }

    /* Compact Header */
    .main-header {
        top: 0.5rem;
        padding: 0 0.8rem;
    }

    .header-content {
        padding: 0.5rem 1rem;
        border-radius: 20px;
        background: rgba(12, 12, 12, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Logo Mobile */
    .logo {
        gap: 0.4rem;
    }

    .logo-icon {
        font-size: 1.1rem;
        margin-right: 0 !important;
        /* Override inline styles if any */
    }

    .logo-text {
        flex-direction: row;
        /* Single line */
        align-items: baseline;
        gap: 4px;
    }

    .logo-main {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .logo-sub {
        font-size: 0.55rem;
        transform: translateY(-1px);
    }

    /* Search Box Mobile */
    .search-box {
        padding: 0;
        background: transparent;
        border: none;
    }

    .search-box input {
        width: 0;
        padding: 0;
        opacity: 0;
    }

    .search-box.active input,
    .search-box:focus-within input {
        width: 100px;
        padding: 0 0.5rem;
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
        /* Background when active */
        border-radius: 4px;
        height: 30px;
    }

    .search-box button {
        font-size: 1rem;
        padding: 5px;
    }

    .header-actions {
        gap: 0.8rem;
    }
}

/* Hero Section */
/* Hero Section Cinematic */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Centraliza verticalmente o texto */
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out;
    /* Fade suave */
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 6s linear forwards;
    /* Zoom effect */
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }

    /* Movimento sutil, não enjoativo */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Acima do overlay */
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    /* White for better Contrast */
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-hero {
    background-color: var(--white);
    color: var(--bg-color);
    border: none;
    font-weight: 600;
    padding: 1.2rem 3rem;
}

.btn-hero:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 5;
    opacity: 0;
    animation: fadeIn 1s 1s forwards, bounce 2.5s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 300;
}

.scroll-indicator i {
    color: var(--white);
    font-size: 1rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 0.8;
    }
}

/* Responsividade Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        text-align: left;
        /* Mantém alinhamento elegante */
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Em mobile, talvez centralizar seja melhor como pedido */
    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }
}

/* Social Proof */
.social-proof {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--brand-gold);
    font-size: 1.2rem;
}

/* Collection */
.collection {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Product Card Container */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    padding: 3rem 1rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    /* Clean background - No borders initially */
    background: transparent;
}

/* Image Handling & Breathing Animation */
.product-img {
    height: 380px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 2.5rem;
    transform: scale(1);
    /* Initial: Diffuse, floating shadow */
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
    will-change: transform, filter;
}

.product-card:hover .product-img {
    transform: scale(1.03);
    /* Subtle breathing */
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.5));
}

/* Typography & Hierarchy */
.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    color: var(--white);
    text-transform: uppercase;
    transition: transform 0.4s ease;
}

.product-card:hover .product-name {
    transform: translateY(-5px);
    /* Gentle lift */
}

.product-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
}

.old-price {
    display: none;
    /* Ensure strictly removed */
}

/* CTA Button - Editorial Fade In */
.product-card .btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 1rem 2.5rem;
    width: auto;
    min-width: 180px;
    opacity: 0;
    /* Hidden initially */
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
    /* Slight delay */
    border-radius: 50px;
    /* More modern/editorial pill shape */
}

.product-card:hover .btn-secondary {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

@media (max-width: 1024px) {
    .product-card .btn-secondary {
        opacity: 1;
        transform: translateY(0);
        border-color: var(--brand-gold);
        color: var(--brand-gold);
    }
}

/* Benefits */
/* Animations System */
.product-card,
.benefit-item,
.lifestyle-quote,
.section-title {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Benefits (Why Choose VLANC?) */
.benefits {
    padding: var(--spacing-xl) 0;
    background-color: #0B0B0B;
    position: relative;
    overflow: hidden;
}

.benefits .section-header {
    margin-bottom: 6rem;
    position: relative;
}

.benefits-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-weight: 400;
    opacity: 0.7;
}

.benefits .section-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.benefit-icon-wrapper {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Optional: subtle background or just icon */
    background: transparent;
}

.benefit-item i {
    font-size: 2rem;
    color: #c5a059;
    /* Matte Gold */
    filter: brightness(0.9);
    /* Matte effect */
    transition: transform 0.5s ease;
}

/* Pulse Animation on Appear */
.benefit-item.visible i {
    animation: goldPulse 2s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

@keyframes goldPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
    font-weight: 300;
}

.benefits-signature {
    margin-top: 6rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.4;
    letter-spacing: 1.5px;
    font-weight: 300;
}

/* Responsive Benefits */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .benefits .section-title {
        font-size: 2.2rem;
    }
}

/* Lifestyle / Manifesto */
.lifestyle {
    display: flex;
    min-height: 85vh;
    background-color: #0B0B0B;
    overflow: hidden;
    position: relative;
}

.lifestyle-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.lifestyle-img.visible {
    opacity: 1;
    transform: scale(1);
}

.lifestyle-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    position: relative;
}

.manifesto-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.manifesto-line {
    width: 2px;
    height: 140px;
    background: linear-gradient(to bottom, var(--brand-gold), transparent);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
    margin-top: 0.5rem;
}

.manifesto-line.visible {
    opacity: 1;
    transform: scaleY(1);
}

.manifesto-text-group {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease-out;
    transition-delay: 0.3s;
}

.manifesto-text-group.visible {
    opacity: 1;
    transform: translateX(0);
}

.manifesto-quote {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.manifesto-quote span {
    display: block;
}

.manifesto-sub {
    font-size: 1.25rem;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.manifesto-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    font-weight: 300;
}

.lifestyle-signature {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 1s ease 1s;
}

.lifestyle-content.visible .lifestyle-signature {
    opacity: 0.4;
}

/* Responsive Lifestyle */
@media (max-width: 900px) {
    .lifestyle {
        flex-direction: column;
        min-height: auto;
    }

    .lifestyle-image-container {
        height: 50vh;
        width: 100%;
    }

    .lifestyle-content {
        padding: 4rem 2rem;
    }

    .manifesto-quote {
        font-size: 2.5rem;
    }

    .manifesto-block {
        gap: 1.5rem;
    }

    .lifestyle-signature {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
        text-align: center;
    }
}

/* Premium Product Showcase */
.premium-showcase {
    background-color: #0B0B0B;
    /* Continuous dark flow from previous section */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.showcase-track {
    display: flex;
    gap: 4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    padding: 3rem 1rem;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.showcase-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.showcase-item {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.7;
    /* Side items slightly faded */
    transform: scale(0.95);
    cursor: pointer;
}

/* Hover & Active States */
.showcase-item:hover,
.showcase-item.active {
    opacity: 1;
    transform: scale(1);
}

.showcase-img-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    /* Fixed height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.showcase-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
}

/* Breathing Animation on Hover */
.showcase-item:hover .showcase-img {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.4));
}

.showcase-info {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.showcase-item:hover .showcase-info,
.showcase-item.active .showcase-info {
    opacity: 1;
    transform: translateY(0);
}

.showcase-name {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.showcase-link {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.showcase-link:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold);
}

/* Navigation Buttons */
.showcase-nav {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.showcase-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Indicators */
.showcase-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--brand-gold);
}

/* Responsive Showcase */
@media (max-width: 768px) {
    .showcase-track {
        justify-content: flex-start;
        /* Allow scroll start */
        padding: 2rem 5vw;
        gap: 2rem;
    }

    .showcase-item {
        width: 80vw;
        /* Full width on mobile */
        opacity: 1;
        transform: scale(1);
    }

    .showcase-nav {
        display: none;
        /* Swipe only on mobile */
    }

    .showcase-info {
        opacity: 1;
        /* Always show info on mobile */
        transform: translateY(0);
    }

    .showcase-img-wrapper {
        height: 320px;
    }
}

/* Safety / Trust Section */
.safety {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
    /* Dark Graphite backdrop */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.safety-header {
    text-align: center;
    margin-bottom: 5rem;
}

.safety-title {
    font-size: 2.5rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.safety-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.safety-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.safety-item:nth-child(1) {
    transition-delay: 0.1s;
}

.safety-item:nth-child(2) {
    transition-delay: 0.3s;
}

.safety-item:nth-child(3) {
    transition-delay: 0.5s;
}

.safety-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.safety-icon-box {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--brand-gold);
    opacity: 0.9;
}

.safety-item-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.safety-item-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.safety-footer-text {
    text-align: center;
    margin-top: 6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

/* Responsive Safety */
@media (max-width: 900px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .safety-title {
        font-size: 2rem;
    }

    .safety-icon-box {
        font-size: 2.2rem;
    }

    .safety-item-desc {
        font-size: 1rem;
    }

    .safety-header {
        margin-bottom: 3.5rem;
    }

    .safety-footer-text {
        margin-top: 4rem;
    }
}

/* Closing CTA / Brand Reaffirmation */
.closing-cta {
    padding: var(--spacing-xl) 0 8rem 0;
    /* Extra pudding at bottom */
    background-color: #0c0c0c;
    /* Pure black for finality */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.closing-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned on desktop */
}

.closing-text-group {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.closing-text-group.visible {
    opacity: 1;
    transform: translateY(0);
}

.closing-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.closing-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 450px;
}

.btn-closing {
    background-color: var(--white);
    color: var(--bg-color);
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    /* Soft rounding */
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-closing:hover {
    background-color: var(--bg-color);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.closing-brand-signature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
    /* Delayed fade in */
}

.closing-cta .visible .closing-brand-signature {
    opacity: 0.6;
    /* Subtle */
}

.closing-brand-signature .brand-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.closing-brand-signature .brand-tagline {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Responsive Closing CTA */
@media (max-width: 900px) {
    .closing-content {
        align-items: center;
        text-align: center;
    }

    .closing-title {
        font-size: 2.2rem;
    }

    .closing-subtitle {
        margin: 0 auto 3rem auto;
    }

    .closing-brand-signature {
        align-items: center;
        margin-top: 2rem;
    }
}

footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .lifestyle {
        grid-template-columns: 1fr;
    }

    .lifestyle-img {
        height: 400px;
        order: -1;
    }

    .lifestyle-content {
        padding: 3rem 1.5rem;
    }

    .safety-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

/* Commitment & Warranty Section */
.commitment {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
    /* Matching Safety section for transition */
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #0c0c0c 100%);
    /* Fade back to pure black */
    color: var(--white);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.commitment-header {
    margin-bottom: 5rem;
    text-align: left;
}

.commitment-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.commitment-manifesto {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.9;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alinhado à esquerda */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.commitment-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.commitment-icon {
    font-size: 1.5rem;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.commitment-item-title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.commitment-item-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
    font-weight: 300;
}

.commitment-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 4rem;
    display: block;
}

/* Responsive Commitment */
@media (max-width: 900px) {
    .commitment-header {
        text-align: center;
    }

    .commitment-manifesto {
        margin: 0 auto;
        font-size: 1rem;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .commitment-item {
        align-items: center;
    }

    .commitment-title {
        font-size: 1.8rem;
    }
}

/* WhatsApp Floating Button */
/* WhatsApp Floating Button */
.btn-whatsapp-minimal {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;

    /* Estado inicial: oculto */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

.btn-whatsapp-minimal.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn-whatsapp-minimal:hover {
    background-color: #20bd5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-minimal i {
    font-size: 1.8rem;
}

/* Marquee Banner */
.marquee-banner {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 0;
    /* Faixa fina */
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    /* Movimento lento e suave */
}

.marquee-item {
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    white-space: nowrap;
    padding-right: 2rem;
    /* Espaço entre repetições */
    display: flex;
    align-items: center;
}

.marquee-item .divider {
    color: var(--brand-gold);
    font-weight: bold;
    margin: 0 1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move metade se houver repetição suficiente */
    }
}

/* =========================================
   PAGE: PRODUCT DETAIL (PDP)
   ========================================= */

/* Hero Section */
.pdp-hero {
    padding-top: 140px;
    /* Space for fixed header */
    padding-bottom: var(--spacing-lg);
    min-height: 90vh;
    /* Full viewport feel */
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 30% 50%, #1a1a1a 0%, #0c0c0c 70%);
    /* Subtle spotlight effect */
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Image wider than text */
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Image Column */
.pdp-main-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.pdp-main-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: floatWatch 6s ease-in-out infinite;
}

@keyframes floatWatch {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Info Column */
.pdp-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.pdp-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    font-weight: 700;
}

.pdp-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    font-style: italic;
}

.pdp-price {
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.btn-pdp-buy {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    letter-spacing: 2px;
}

.pdp-trust-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.pdp-trust-line span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pdp-trust-line i {
    color: var(--brand-gold);
}

.pdp-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 300;
}

/* Gallery Section */
.pdp-gallery {
    padding: var(--spacing-lg) 0;
    background-color: #0c0c0c;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 0.8;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Editorial Block */
.pdp-editorial {
    padding: 8rem 0;
    text-align: center;
    background-color: #0e0e0e;
}

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
}

.editorial-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 500;
}

.editorial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Differentiators (Reuse benefits aesthetic but specifically for PDP) */
.pdp-differentiators {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.diff-item {
    padding: 2rem;
}

.diff-icon {
    font-size: 2rem;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
}

.diff-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.diff-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Specifications (Accordion) */
.pdp-specs {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.spec-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.spec-item[open] {
    padding-bottom: 1rem;
}

.spec-item summary {
    padding: 1.5rem 0;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.spec-item summary:hover {
    color: var(--brand-gold);
}

.spec-item summary::-webkit-details-marker {
    display: none;
}

.spec-item summary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.spec-item[open] summary i {
    transform: rotate(180deg);
}

.spec-content {
    padding-top: 0.5rem;
    color: var(--text-secondary);
    animation: fadeSpec 0.5s ease;
}

.spec-content ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.spec-content ul li:last-child {
    border-bottom: none;
}

@keyframes fadeSpec {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Final CTA */
.pdp-final-cta {
    padding: 8rem 0;
    background: linear-gradient(to top, #0f0f0f, #0c0c0c);
}

.final-cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.scale-up {
    min-width: 300px;
    font-size: 1.2rem;
}

.final-cta-support {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive PDP */
@media (max-width: 1024px) {
    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .pdp-hero {
        padding-top: 100px;
        height: auto;
    }

    .pdp-main-image-wrapper {
        height: 400px;
    }

    .pdp-info-col {
        padding-right: 0;
    }

    .pdp-title {
        font-size: 2.8rem;
    }

    .pdp-trust-line {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* =========================================
   PAGE: SHOP (LOJA)
   ========================================= */

/* Shop Hero */
.shop-hero {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #0c0c0c, #111);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.shop-hero-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.shop-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Shop Showcase Grid */
.shop-showcase {
    padding: var(--spacing-lg) 0;
    background-color: #0c0c0c;
    min-height: 60vh;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    /* Generous spacing */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Shop Card */
.shop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    /* For reveal animation */
    height: 100%;
    /* Force full height in grid */
}

.shop-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.shop-img-wrapper {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.shop-img {
    height: 320px;
    /* Fixed height for visual consistency */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Hover Effects */
.shop-card:hover .shop-img {
    transform: scale(1.03) translateY(-5px);
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.4));
}

.shop-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    /* Allow to expand */
    justify-content: flex-end;
    /* Align bottom content */
}

.shop-name {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--white);
    transition: color 0.3s ease;
    min-height: 3.5rem;
    /* Space for 2 lines */
    display: flex;
    align-items: center;
    /* Vertical center for short names */
    justify-content: center;
}

.shop-price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Ghost Button Style */
.btn-shop {
    background: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    /* Wider padding like image */
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 50px;
    min-width: 220px;
    /* Force equal button width */
    /* Pill shape */
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-shop:hover {
    background: var(--brand-gold);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

/* Shop Footer Text */
.shop-footer-text {
    padding: 6rem 0;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0c0c;
}

.shop-quote-main {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.shop-quote-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
}

/* Responsive Shop */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .shop-hero-title {
        font-size: 2.2rem;
    }

    /* Mobile: Solid Gold Button for better visibility */
    /* Mobile: Adjust padding slightly but keep gold pill style */
    .btn-shop {
        padding: 1rem 2.5rem;
        width: 100%;
        /* Full width on mobile looks better for touch */
    }
}

/* Social Proof Section - High End */
.pdp-social-proof {
    padding: 5rem 1rem;
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
    margin-bottom: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.social-proof-rating {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--brand-gold);
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.verified-label {
    font-size: 0.7rem;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-proof-card {
    max-width: 900px;
    margin: 0 auto;
}

.social-proof-card+.social-proof-card {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-content {
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.proof-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.proof-author {
    font-size: 0.85rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-style: normal;
    font-weight: 600;
}

.proof-gallery {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    /* Fallback */
}

.proof-img-wrap {
    flex: 0 0 220px;
    height: 280px;
    /* Portrait ratio mostly */
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

/* Hover effect for desktop */
.proof-img-wrap:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.proof-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.proof-img-wrap:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .proof-gallery {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 1rem;
        /* Scroll snap for app-like feel */
        scroll-snap-type: x mandatory;
        padding-left: 1rem;
        padding-right: 1rem;
        margin: 0 -1rem;
        /* Full bleed on mobile */
    }

    .proof-img-wrap {
        flex: 0 0 260px;
        /* Larger cards on mobile */
        height: 320px;
        scroll-snap-align: center;
    }

    .proof-text {
        font-size: 1.1rem;
    }
}

/* Disclaimer Text */
.social-proof-disclaimer {
    display: block;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
    opacity: 0.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Shop Section Label */
.shop-section-label {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
}

/* Color Selector in PDP */
.color-selector-block {
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.color-selector-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.color-selector-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    background: #1a1a1a;
}

.color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    /* Zoom in to see texture/color better */
}

.color-option:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.color-option.active {
    opacity: 1;
    border-color: var(--brand-gold);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

/* Mobile check */
@media (max-width: 768px) {
    .color-option {
        width: 45px;
        height: 45px;
    }
}

/* =========================================
   PREMIUM FOOTER
   ========================================= */

.main-footer {
    background-color: #080808;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 1. Top Band - Brand */
.footer-top {
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-decoration: none;
}

.footer-logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--brand-gold);
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 300;
}

/* 2. Middle Band - Info Grid */
.footer-main {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col-title {
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-info-item {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-link:hover {
    color: var(--brand-gold);
}

/* Socials Specifics - Centered & Gold */
.footer-col:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-gold);
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    background: transparent;
}

.social-icon:hover {
    opacity: 0.7;
    border-color: var(--brand-gold);
}

/* 3. Bottom Band - Trust & Legal */
.footer-bottom {
    padding: 2rem 0;
    background-color: #050505;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.payment-methods-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges img,
.payment-icons img {
    height: 30px;
    width: auto;
    opacity: 1;
    /* Full visibility */
    filter: none;
    /* Original colors */
    transition: all 0.3s ease;
}

.trust-badges img:hover,
.payment-icons img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .payment-methods-row {
        gap: 1rem;
    }
}

/* =========================================
   REVIEW MOBILE - FINAL ADJUSTMENTS (SMARTPHONES)
   ========================================= */
@media (max-width: 768px) {

    /* 1. Elementos Clicáveis em Dourado (Links e Botões) */
    a,
    .footer-link,
    .footer-info-item a,
    .showcase-link,
    .btn-link,
    .nav-link {
        /* Garante que links interativos usem o dourado */
    }

    .footer-link {
        color: var(--brand-gold) !important;
    }

    .footer-info-item a {
        color: var(--brand-gold) !important;
        text-decoration: none;
    }

    /* Ícones no Rodapé já são Dourados, reforçando */
    .social-icon {
        color: var(--brand-gold) !important;
        border-color: rgba(197, 160, 89, 0.4) !important;
    }

    /* 2. Margens e Respiração */
    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .section-header {
        margin-bottom: 3rem !important;
    }

    .hero-title,
    .pdp-title,
    .shop-hero-title {
        font-size: 2.2rem !important;
        /* Tamanho mais seguro */
        word-wrap: break-word;
    }

    /* 3. Centralização de Imagens e Cards */
    .shop-grid,
    .products-grid,
    .benefits-grid,
    .safety-grid,
    .commitment-grid,
    .gallery-grid,
    .diff-grid {
        grid-template-columns: 1fr !important;
        /* Uma coluna apenas */
        gap: 3rem !important;
    }

    .shop-card,
    .product-card {
        width: 100% !important;
        max-width: 380px !important;
        /* Evita que fique gigante em tablets pequenos */
        margin: 0 auto !important;
        padding: 0 !important;
        /* Remove padding lateral extra */
    }

    .shop-img-wrapper,
    .pdp-main-image-wrapper,
    .showcase-img-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .shop-img,
    .product-img,
    .showcase-img,
    .pdp-main-img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 320px !important;
        /* Altura controlada */
        object-fit: contain !important;
        margin: 0 auto !important;
    }

    /* 4. Rodapé Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2.5rem !important;
    }

    .footer-col {
        align-items: center !important;
        /* Centralizar flex items */
        margin-bottom: 1.5rem;
    }

    .footer-info-list {
        align-items: center !important;
    }

    /* Espaçamento extra no final para não cobrir com botão WhatsApp */
    footer {
        padding-bottom: 6rem !important;
    }

    /* Botões Mobile - Full Width e Dourado */
    .btn-shop,
    .btn-pdp-buy {
        width: 100% !important;
        max-width: 350px !important;
        /* Trava largura máxima */
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        background-color: var(--brand-gold) !important;
        /* Sólido para melhor toque */
        color: var(--bg-color) !important;
        border: none !important;
    }

    /* 5. Tabela de Especificações - Mobile Layout (2 Linhas) */
    .spec-content ul li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.2rem !important;
        padding-bottom: 1.2rem !important;
        margin-bottom: 0.8rem !important;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.08) !important;
    }

    .spec-content ul li strong {
        font-size: 0.8em !important;
        color: var(--text-secondary) !important;
        /* Cinza suave para o label */
        font-weight: 400 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 2px;
        display: block;
    }

    /* O valor (texto solto) herda do li, vamos reforçar */
    .spec-content ul li {
        color: var(--white) !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    /* 6. Ajuste Botão WhatsApp Mobile (Menor) */
    .btn-whatsapp-minimal {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        /* Ícone um pouco menor */
        bottom: 1.5rem !important;
        right: 1.5rem !important;
    }

    .btn-whatsapp-minimal i {
        font-size: 1.5rem !important;
    }
}

/* =========================================
   MOBILE MENU OVERLAY (FINAL PREMIUM VERSION)
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    /* PRETO ABSOLUTO */
    z-index: 999999;
    /* ACIMA DE TUDO */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Alimenta do topo agora */
    padding-top: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Top Bar (Logo + Close) --- */
.mobile-menu-top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-logo i {
    font-size: 1.8rem;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--white);
}

.mobile-logo-text span {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.mobile-logo-text small {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--brand-gold);
    text-transform: uppercase;
}

.mobile-menu-close {
    position: static;
    /* Reset absolute */
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 100;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--brand-gold);
}

/* --- Mobile Search --- */
.mobile-search-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 3rem;
}

.mobile-search-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    /* Dark glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    /* Modern soft radius */
    padding: 1rem 1.2rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-search-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.mobile-search-field:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-gold);
}

.mobile-search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: transparent;
    border: none;
    color: var(--brand-gold);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container de Navegação */
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    /* Espaçamento bem amplo */
    width: 100%;
}

/* Links do Menu */
.mobile-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    /* Leve/Light */
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Espaçamento premium */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--brand-gold);
}

/* Remove estilos de botão padrão para evitar caixa cinza */
button:focus {
    outline: none;
}

/* Travar Rolagem */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Fix Mobile Product Title Spacing */
@media (max-width: 768px) {
    .product-name {
        margin-top: 2rem;
    }
}

/* ---------------------------------------------------------------------------------- */
/* Refined Hero Styles (Institutional Feel) - Added by Agent */
/* ---------------------------------------------------------------------------------- */

/* Title: Stronger, but cleaner */
.pdp-hero .pdp-title {
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -1px;
    font-size: 3.8rem;
}

/* Institutional Phrase (Tagline): Discrete */
.pdp-hero .pdp-tagline {
    font-size: 1.1rem;
    margin-bottom: 5rem;
    /* Large breathing room */
    color: var(--text-secondary);
    opacity: 0.9;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Support Text: Minimalist */
.pdp-support-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    /* Space before button */
    opacity: 0.6;
    font-weight: 400;
}

/* Button: Discrete and Elegant */
.pdp-hero-btn {
    display: inline-block !important;
    width: auto !important;
    padding: 0.8rem 3rem !important;
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: transparent !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    transition: all 0.5s ease !important;
    text-align: center !important;
    margin-top: 1rem;
}

.pdp-hero-btn:hover {
    border-color: var(--white) !important;
    /* White border on hover for clean feel */
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Adjust grid for more space (Luxury Empty Space) */
.pdp-hero .pdp-grid {
    gap: 8rem;
    /* Significant gap */
    align-items: center;
}

@media (max-width: 1024px) {
    .pdp-hero .pdp-grid {
        gap: 3rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pdp-hero .pdp-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .pdp-hero .pdp-tagline {
        margin-bottom: 3rem;
    }

    .pdp-support-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .pdp-hero-btn {
        margin-left: auto;
        margin-right: auto;
        display: inline-block !important;
    }
}

/* ---------------------------------------------------------------------------------- */
/* Refined Editorial Block - Added by Agent */
/* ---------------------------------------------------------------------------------- */

.editorial-content {
    max-width: 600px;
    margin: 0 auto;
}

.editorial-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    color: var(--white);
}

.editorial-divider {
    width: 60px;
    height: 1px;
    background-color: var(--brand-gold);
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}

.editorial-text.is-main {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: 3rem;
    font-style: normal;
    opacity: 0.9;
}

.editorial-footer-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    opacity: 0.6;
    font-weight: 400;
}

/* ---------------------------------------------------------------------------------- */
/* Refined Editorial Gallery - Added by Agent */
/* ---------------------------------------------------------------------------------- */

.editorial-gallery {
    padding: 8rem 0;
    /* Huge vertical spacing */
    background-color: var(--bg-color);
    /* Seamless flow */
}

.editorial-image-layout {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    /* Space between main image and details trio */
    max-width: 1000px;
    margin: 0 auto;
}

.editorial-main-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Subtle framing */
    border-radius: 2px;
}

.editorial-main-img img {
    width: 100%;
    height: auto;
    display: block;
    /* Clean, high-res feel */
    opacity: 0.95;
    transition: opacity 1s ease;
}

.editorial-secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    /* Wide gap */
    align-items: center;
}

.editorial-sec-img {
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    /* Force nice aspect ratio if needed, but allowing natural height usually better for editorial */
}

.editorial-sec-img img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.editorial-sec-img:hover img {
    transform: scale(1.05);
    /* Gentle zoom */
    opacity: 1;
}

/* Responsive Editorial Gallery */
@media (max-width: 768px) {
    .editorial-gallery {
        padding: 4rem 0;
    }

    .editorial-image-layout {
        gap: 3rem;
    }

    .editorial-secondary-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 2rem;
    }
}

/* ---------------------------------------------------------------------------------- */
/* Institutional Trust Block (Post-Specs) - Added by Agent */
/* ---------------------------------------------------------------------------------- */

.pdp-trust-institutional {
    padding: 6rem 0;
    background-color: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-institutional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-inst-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.trust-inst-icon {
    font-size: 1.4rem;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.trust-inst-title {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-inst-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.8;
    max-width: 280px;
}

/* Mobile adjustments for Trust Block */
@media (max-width: 768px) {
    .trust-institutional-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pdp-trust-institutional {
        padding: 4rem 0;
    }
}

/* ---------------------------------------------------------------------------------- */
/* Final Conversion Block (Institutional Style) - Refined by Agent */
/* ---------------------------------------------------------------------------------- */

.pdp-final-conversion {
    padding: 10rem 0;
    /* Increased from 8rem for more luxury breathing room */
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.conversion-title {
    font-size: 2.2rem;
    font-weight: 400;
    /* Lighter weight for elegance */
    margin-bottom: 3rem;
    /* Increased spacing */
    letter-spacing: -0.5px;
    color: var(--white);
}

.conversion-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    /* Slightly larger for readability */
    color: var(--text-primary);
    /* Higher contrast */
    margin-bottom: 4rem;
    /* Increased spacing before button */
    font-weight: 300;
    opacity: 0.9;
}

.status-dot {
    width: 24px;
    height: 1px;
    background-color: var(--brand-gold);
    border-radius: 0;
    box-shadow: none;
    opacity: 0.8;
}

.btn-conversion {
    display: inline-block;
    padding: 1.1rem 5rem;
    /* Wider padding */
    font-size: 0.85rem;
    letter-spacing: 3px;
    /* Wider tracking */
    text-transform: uppercase;
    background-color: #bfa36f;
    /* Refined, deeper gold (less yellow) */
    color: var(--white);
    border: 1px solid #bfa36f;
    border-radius: 1px;
    /* Sharper edges */
    transition: all 0.5s ease;
    font-weight: 500;
    margin-bottom: 5rem;
    /* Large space below button */
    text-decoration: none;
    box-shadow: none;
    /* Removed glow for matte look */
}

.btn-conversion:hover {
    background-color: transparent;
    color: #bfa36f;
    transform: translateY(-1px);
    /* Subtle lift */
    box-shadow: none;
}

.conversion-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.75rem;
    /* Smaller, discrete */
    color: var(--text-secondary);
    opacity: 0.8;
    /* Increased contrast slightly */
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.8;
}

.conversion-footer .separator {
    color: #bfa36f;
    opacity: 0.4;
    font-size: 1.2rem;
    /* Larger separator */
    vertical-align: middle;
}

/* Mobile adjustments for Conversion Block */
@media (max-width: 768px) {
    .pdp-final-conversion {
        padding: 6rem 0;
    }

    .conversion-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .conversion-status {
        flex-direction: column;
        /* Stack for clarity */
        text-align: center;
        margin-bottom: 3rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-conversion {
        width: 100%;
        max-width: 100%;
        padding: 1.2rem 0;
        margin-bottom: 4rem;
    }

    .conversion-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .conversion-footer .separator {
        display: none;
    }
}

/* Updated Final Conversion Elements */
.conversion-price {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: -1px;
}

/* Update Button Text Color to Black for Contrast */
.btn-conversion {
    background-color: var(--brand-gold) !important;
    color: var(--bg-color) !important;
    border: 1px solid var(--brand-gold) !important;
    font-weight: 600 !important;
    border-radius: 2px !important;
    /* Reverting to brand standard radius if needed, but 4px is fine. Let's stick to 2px for sharp luxury or 0 for standard? .btn usually has small radius. Let's start with 2px or unset to inherit */
}

/* Match standard .btn-primary hover behavior */
.btn-conversion:hover {
    background-color: var(--brand-gold-hover) !important;
    color: var(--bg-color) !important;
    border-color: var(--brand-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

/* Footer Icons Style */
.conversion-footer-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.conf-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.conf-icon {
    font-size: 1rem;
    color: var(--brand-gold);
    /* Standard Gold */
}

@media (max-width: 768px) {
    .conversion-price {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .conversion-footer-icons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* ---------------------------------------------------------------------------------- */
/* Hero Button - Specific Gold Border Refinement (No Fill) */
/* ---------------------------------------------------------------------------------- */
.pdp-hero .btn-secondary {
    border: 1px solid #C6A85E !important;
    /* Specific sophisticated gold */
    color: #ffffff;
    /* Keep Text White */
    background-color: transparent;
    transition: all 0.4s ease;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 0.8rem 2.5rem;
    box-shadow: none;
}

.pdp-hero .btn-secondary:hover {
    border-color: #dcb365 !important;
    /* Slightly lighter on hover */
    background-color: transparent !important;
    /* NO FILL */
    color: #ffffff !important;
    /* Text remains white */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* Subtle shadow only */
}  
/* Noir Mesh Custom Hero Button */  
.btn-gold-outline-hero {  
    background-color: transparent;  
    border: 1px solid #c5a059;  
    color: #ffffff;  
    transition: all 0.4s ease;  
}  
.btn-gold-outline-hero:hover {  
    color: #c5a059;  
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.3);  
    border-color: #d4b06a;  
    transform: translateY(-2px);  
} 

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0c0c0c;
    color: #fff;
    padding: 20px 40px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e6e6e6;
    flex: 1;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

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

.btn-cookie-accept {
    background-color: #D4AF37;
    color: #000;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-accept:hover {
    background-color: #eac55a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.btn-cookie-settings {
    background: transparent;
    color: #D4AF37;
    border: 1px solid transparent;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-settings:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 20px 20px 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: left;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-cookie-accept {
        flex: 1;
        text-align: center;
    }
    
    .btn-cookie-settings {
        flex: 1;
        text-align: center;
        font-size: 0.75rem;
    }
}
