/* ==========================================================================
   MONARC ULTIMAT - PREMIUM LUXURY STYLING
   ========================================================================== */

/* 1. Design Tokens & Variables */
:root {
    /* Color Palette */
    --color-black: #000000;
    --color-bg-deep: #030303;
    --color-bg-card: #080808;
    --color-border: #111111;
    --color-border-light: #1c1c1c;
    --color-border-active: rgba(255, 255, 255, 0.4);
    
    --color-text-white: #ffffff;
    --color-text-gray: #888888;
    --color-text-muted: #444444;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout Sizes */
    --header-height: 90px;
    --container-max-width: 1200px;
}

/* 2. Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-black);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--color-black);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: var(--color-black);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Layout Containers */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* 3. Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 500;
    display: flex;
    align-items: center;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-white);
}

.header-logo-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.15rem;
    letter-spacing: 0.3em;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-gray);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text-white);
    transition: var(--transition-smooth);
}

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

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.lang-selector {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--color-text-gray);
    font-weight: 400;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--color-text-gray);
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    transition: color 0.2s, opacity 0.2s;
    opacity: 0.5;
}

.lang-btn:hover {
    color: var(--color-text-white);
    opacity: 0.8;
}

.lang-btn.active {
    color: var(--color-text-white);
    opacity: 1;
    font-weight: 600;
}


.action-icon-btn {
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.action-icon-btn:hover {
    color: var(--color-text-white);
}

.action-icon-btn i {
    width: 18px;
    height: 18px;
    stroke-width: 1.5px;
}

.cart-btn {
    position: relative;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
}

.cart-btn:hover {
    color: var(--color-text-white);
}

.cart-btn i {
    width: 18px;
    height: 18px;
    stroke-width: 1.5px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background-color: var(--color-text-white);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.6rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    color: var(--color-text-gray);
}

/* 4. Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-black);
    border-right: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    transition: var(--transition-slow);
}

.mobile-menu.open {
    left: 0;
}

.menu-close-btn {
    align-self: flex-end;
    margin-bottom: 3rem;
    color: var(--color-text-gray);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    font-weight: 300;
}

/* 5. Hero Section (Spotlight & Smoke) */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
    transform: scale(1.02);
    animation: atmosphericZoom 25s infinite alternate;
}

@keyframes atmosphericZoom {
    0% { transform: scale(1.01) translate(0, 0); }
    100% { transform: scale(1.06) translate(-1%, -0.5%); }
}

.hero-smoke-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Radial Vignette */
    background: radial-gradient(circle at center, transparent 20%, var(--color-black) 90%);
    pointer-events: none;
}

@keyframes spotlightSway {
    0% { transform: translateX(-50%) rotate(-4deg); }
    100% { transform: translateX(-50%) rotate(4deg); }
}

.hero-spotlight-beam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    transform-origin: top center;
    animation: spotlightSway 15s infinite alternate ease-in-out;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-container {
    width: 160px;
    height: 160px;
    color: var(--color-text-white);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.18));
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpLogo 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-logo-icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@keyframes fadeInUpLogo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-brand-name {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.45em;
    padding-left: 0.45em; /* Compensate letter-spacing centering */
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpLogo 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    padding-left: 0.35em;
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpLogo 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-divider {
    width: 45px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeIn 2s ease 1s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-text-white), transparent);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% { transform: scaleY(0.2); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 6. Drop / Ultimate Essentials Section */
.store-section {
    padding: 10rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.store-collections-wrapper {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
}

.store-collections-tabs {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.store-collections-tabs::-webkit-scrollbar {
    display: none;
}

.collection-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--color-text-gray);
    padding: 0.5rem 0;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.collection-tab-btn:hover {
    color: var(--color-text-white);
}

.collection-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1.55rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-text-white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.collection-tab-btn.active {
    color: var(--color-text-white);
    font-weight: 400;
}

.collection-tab-btn.active::after {
    width: 100%;
}

.products-slider {
    transition: opacity 0.3s ease;
}

.products-slider.fade-out {
    opacity: 0;
}

.split-store-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.store-intro {
    position: sticky;
    top: 140px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-text-gray);
    display: block;
    margin-bottom: 1rem;
}

.store-heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 1.15;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.store-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.7;
    color: var(--color-text-gray);
    margin-bottom: 3.5rem;
}

/* Premium Outline Glow Buttons */
.btn-outline-glow {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: var(--transition-smooth);
}

.btn-outline-glow:hover {
    border-color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

/* Products Container & Slider */
.products-container {
    overflow: hidden;
}

.products-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.products-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 240px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 0.85;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-image-wrap {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.03);
}

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

.product-card:hover .product-card-img {
    transform: scale(1.04);
}

/* Quick Add Button */
.btn-quick-add {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-text-white);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-quick-add i {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
}

.product-card-image-wrap:hover .btn-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.btn-quick-add:hover {
    background-color: var(--color-black);
    color: var(--color-text-white);
    transform: scale(1.05);
}

/* Product Card Information */
.product-card-info {
    padding-top: 1.25rem;
}

.product-card-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-text-gray);
    margin-bottom: 0.5rem;
}

.product-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
}

/* Product Card Sizes Display */
.product-card-sizes {
    display: flex;
    gap: 0.4rem;
}

.size-select-pill {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 400;
    width: 24px;
    height: 20px;
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.size-select-pill:hover {
    color: var(--color-text-white);
    border-color: var(--color-text-gray);
}

.size-select-pill.active {
    color: var(--color-text-white);
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.slider-arrow-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
}

.slider-arrow-btn:hover {
    color: var(--color-text-white);
    border-color: var(--color-text-white);
}

.slider-arrow-btn i {
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background-color: var(--color-text-white);
    transform: scale(1.2);
}

/* 7. Value Props Grid (Separated Columns) */
.value-props-section {
    background-color: var(--color-black);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.prop-card {
    padding: 5rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.prop-card:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.prop-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.2px;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.prop-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--color-text-white);
    margin-bottom: 0.75rem;
}

.prop-description {
    font-size: 0.75rem;
    font-weight: 200;
    line-height: 1.6;
    color: var(--color-text-gray);
    max-width: 210px;
}

/* 8. Lookbook Section */
.lookbook-section {
    padding: 10rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: center;
}

.lookbook-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lookbook-heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lookbook-description {
    font-size: 0.95rem;
    font-weight: 200;
    color: var(--color-text-gray);
    margin-bottom: 3.5rem;
}

/* Glow Arrow Link Button */
.btn-outline-glow-arrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-white);
    transition: var(--transition-smooth);
}

.btn-outline-glow-arrow i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-outline-glow-arrow:hover {
    border-color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.btn-outline-glow-arrow:hover i {
    transform: translateX(4px);
}

.lookbook-image-container {
    width: 100%;
    aspect-ratio: 1.3;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

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

.lookbook-image-container:hover .lookbook-img {
    transform: scale(1.03);
}

/* 9. Journal Section (Insights) */
.journal-section {
    padding: 10rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.journal-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.journal-intro {
    position: sticky;
    top: 140px;
}

.journal-heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.journal-description {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--color-text-gray);
    margin-bottom: 3.5rem;
}

.journal-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.journal-post {
    display: flex;
    flex-direction: column;
}

.post-img-wrapper {
    width: 100%;
    aspect-ratio: 1.15;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.journal-post:hover .post-img {
    transform: scale(1.04);
}

.post-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--color-text-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-link {
    font-size: 0.75rem;
    font-weight: 200;
    color: var(--color-text-gray);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.post-link i {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.journal-post:hover .post-link {
    color: var(--color-text-white);
}

.journal-post:hover .post-link i {
    transform: translate(2px, -2px);
}

/* 10. Drawer Carrinho (Lateral) */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background-color: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.cart-header h3 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.25em;
}

.btn-close-cart {
    padding: 0.5rem;
    color: var(--color-text-gray);
}

.btn-close-cart:hover {
    color: var(--color-text-white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    color: var(--color-text-gray);
}

.empty-icon {
    width: 40px;
    height: 40px;
    stroke-width: 1px;
    color: var(--color-text-muted);
}

.empty-cart-message p {
    font-size: 0.9rem;
    font-weight: 200;
}

/* Cart Item Styling */
.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr 90px;
    gap: 1.5rem;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
}

.cart-item-img {
    width: 70px;
    height: 80px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-text-white);
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    font-weight: 200;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
}

.qty-btn:hover {
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.02);
}

.qty-num {
    width: 28px;
    text-align: center;
    font-size: 0.75rem;
    font-family: var(--font-heading);
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.85rem;
}

.btn-remove-item {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid transparent;
}

.btn-remove-item:hover {
    color: #ff6b6b;
}

/* Cart Footer */
.cart-footer {
    padding: 2.5rem;
    border-top: 1px solid var(--color-border);
    background-color: rgba(5, 5, 5, 0.9);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.shipping-info {
    font-size: 0.7rem;
    color: var(--color-text-gray);
    font-weight: 200;
    margin-bottom: 2rem;
}

.btn-checkout {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--color-text-white);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    border: 1px solid var(--color-text-white);
}

.btn-checkout:not(:disabled):hover {
    background-color: transparent;
    color: var(--color-text-white);
}

.btn-checkout:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background-color: #222;
    border-color: #222;
    color: #666;
}

/* 11. Toast Popup */
.toast {
    position: fixed;
    bottom: 2rem;
    right: -400px;
    background-color: var(--color-text-white);
    color: var(--color-black);
    padding: 1.1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    z-index: 1500;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    right: 2rem;
}

/* 12. Expanded Footer Layout */
.main-footer {
    padding: 8rem 0 3rem 0;
    background-color: var(--color-black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 2fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-col .logo {
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.footer-tagline {
    color: var(--color-text-gray);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
}

.copyright-desktop {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-col li {
    font-size: 0.8rem;
    font-weight: 200;
    color: var(--color-text-gray);
}

.footer-links-col a:hover {
    color: var(--color-text-white);
}

.footer-newsletter-col h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-white);
    margin-bottom: 1rem;
}

.footer-newsletter-col p {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    font-weight: 200;
    margin-bottom: 1.5rem;
}

/* Newsletter Input */
.newsletter-form {
    position: relative;
    border-bottom: 1px solid #222222;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
    border-bottom-color: var(--color-text-white);
}

.newsletter-input {
    background: transparent;
    border: none;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 200;
    padding: 0.6rem 0;
    width: 100%;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    color: var(--color-text-gray);
    padding: 0.5rem 0.25rem;
}

.newsletter-btn:hover {
    color: var(--color-text-white);
}

.newsletter-btn i {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

/* Social Row */
.footer-social-row {
    display: flex;
    gap: 1.25rem;
}

.footer-social-row a {
    color: var(--color-text-gray);
}

.footer-social-row a:hover {
    color: var(--color-text-white);
    transform: translateY(-2px);
}

.footer-social-row i {
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.copyright-mobile {
    display: none;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

/* 13. High-fidelity Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-newsletter-col {
        grid-column: span 2;
    }
    
    .copyright-desktop {
        display: none;
    }
    
    .copyright-mobile {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .split-store-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .store-intro {
        position: relative;
        top: 0;
    }
    
    .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lookbook-text {
        align-items: center;
        text-align: center;
    }
    
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .journal-intro {
        position: relative;
        top: 0;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .journal-posts {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prop-card:nth-child(2) {
        border-right: none;
    }
    
    .prop-card:nth-child(3), .prop-card:nth-child(4) {
        border-top: none;
    }
    
    .prop-card:nth-child(3) {
        border-right: 1px solid var(--color-border);
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 80px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .store-section, .lookbook-section, .journal-section {
        padding: 6rem 0;
    }
    
    .store-heading, .lookbook-heading, .journal-heading {
        font-size: 2rem;
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
    }
    
    .prop-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .prop-card {
        padding: 4rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-newsletter-col {
        grid-column: span 1;
    }
    
    .cart-drawer {
        max-width: 100%;
    }
}

/* ==========================================================================
   14. Checkout Drawer & Simulated Payment System
   ========================================================================== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.checkout-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--color-border);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-drawer.open {
    right: 0;
}

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

.checkout-header h3 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.25em;
    flex-grow: 1;
    text-align: center;
}

.btn-back-checkout, .btn-close-checkout {
    padding: 0.5rem;
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-checkout:hover, .btn-close-checkout:hover {
    color: var(--color-text-white);
}

.btn-back-checkout i, .btn-close-checkout i {
    width: 18px;
    height: 18px;
    stroke-width: 1.5px;
}

.btn-back-checkout.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Progress Tracker */
.checkout-progress {
    position: relative;
    height: 4px;
    background-color: #111;
    width: 100%;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--color-text-white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-steps-labels {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 2.5rem;
    border-bottom: 1px solid var(--color-border);
    background-color: rgba(0, 0, 0, 0.2);
}

.step-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.step-label.active {
    color: var(--color-text-white);
    font-weight: 400;
}

/* Checkout Body & Layout */
.checkout-body {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
}

.checkout-step-content {
    display: none;
}

.checkout-step-content.active {
    display: block;
    animation: fadeInStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #111;
}

.checkout-section-title:first-of-type {
    margin-top: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.7rem;
    color: var(--color-text-gray);
    letter-spacing: 0.05em;
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row .form-group {
    margin-bottom: 1.25rem;
}

.col-cep {
    grid-column: span 1;
}

.col-num {
    grid-column: span 1;
}

.col-uf {
    grid-column: span 1;
}

.form-row:has(.col-uf) {
    grid-template-columns: 1.5fr 1.5fr 1fr;
}

.checkout-input, .checkout-select {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.checkout-input::placeholder {
    color: #555555;
}

.checkout-input:focus, .checkout-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.checkout-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.uppercase-input {
    text-transform: uppercase;
}

/* Shipping Methods Selector */
.shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipping-method-option {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.shipping-method-option:hover {
    border-color: var(--color-border-light);
    background-color: rgba(255, 255, 255, 0.02);
}

.shipping-method-option.active {
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.shipping-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shipping-radio-custom {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--color-text-muted);
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.shipping-method-option.active .shipping-radio-custom {
    border-color: var(--color-text-white);
}

.shipping-radio-custom::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-text-white);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.shipping-method-option.active .shipping-radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.shipping-method-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.shipping-name {
    font-size: 0.8rem;
    font-weight: 400;
}

.shipping-time {
    font-size: 0.7rem;
    color: var(--color-text-gray);
    font-weight: 200;
}

.shipping-cost {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Payment Selector */
.payment-method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pay-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem;
    border: 1px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.01);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--color-text-gray);
    transition: var(--transition-smooth);
}

.pay-method-btn:hover {
    border-color: var(--color-border-light);
    color: var(--color-text-white);
}

.pay-method-btn.active {
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-text-white);
}

.pay-method-btn i {
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
}

.payment-view {
    display: none;
}

.payment-view.active {
    display: block;
}

/* Simulated Interactive Credit Card */
.credit-card-wrapper {
    perspective: 1000px;
    width: 100%;
    margin-bottom: 2.25rem;
}

.credit-card-inner {
    width: 100%;
    aspect-ratio: 1.586;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.credit-card-inner.flipped {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-front {
    background: linear-gradient(135deg, #0f0f0f 0%, #030303 100%);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.card-header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-logo-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--color-text-white);
}

.card-brand-name {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--color-text-white);
}

.card-chip {
    width: 38px;
    height: 28px;
    background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.card-number-display {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    letter-spacing: 0.12em;
    color: var(--color-text-white);
    margin: 1.25rem 0;
    font-weight: 300;
}

.card-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder-wrap, .card-expiry-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-label {
    font-size: 0.55rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.card-value {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-text-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 300;
}

.card-back {
    background: linear-gradient(135deg, #050505 0%, #0c0c0c 100%);
    transform: rotateY(180deg);
    padding: 1.75rem 0;
}

.card-magnetic-strip {
    height: 38px;
    background-color: #000;
    width: 100%;
    margin-top: 0.25rem;
}

.card-signature-area {
    margin: 1rem 1.75rem 0 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-signature-lines {
    flex: 1;
    height: 28px;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-cvv-display {
    width: 48px;
    height: 28px;
    background-color: var(--color-text-white);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.card-back-branding {
    padding: 0 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
    text-align: right;
}

.card-inputs-form {
    display: flex;
    flex-direction: column;
}

/* PIX Checkout Details */
.pix-instructions {
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.pix-qr-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.pix-qr-code {
    width: 160px;
    height: 160px;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    color: #000000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-svg {
    width: 100%;
    height: 100%;
}

.pix-timer {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-weight: 400;
}

.pix-code-container {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    padding: 1rem;
    margin-bottom: 2rem;
}

.pix-code-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.pix-code-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pix-code-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-text-gray);
    font-family: monospace;
    font-size: 0.75rem;
    overflow-x: auto;
    white-space: nowrap;
}

.pix-code-input:focus {
    outline: none;
}

.btn-copy-pix-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
    border: 1px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-copy-pix-icon:hover {
    color: var(--color-text-white);
    border-color: var(--color-border-light);
}

.btn-copy-pix-icon i {
    width: 14px;
    height: 14px;
    stroke-width: 1.5px;
}

.pix-status-wait {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.pix-status-wait span {
    font-size: 0.75rem;
    font-weight: 200;
    color: var(--color-text-gray);
}

.pix-pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
    animation: statusPulse 1.5s infinite ease-in-out;
}

@keyframes statusPulse {
    0% { transform: scale(0.9); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.4; }
}

/* Success Screen */
.success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.success-checkmark-wrapper {
    width: 72px;
    height: 72px;
    margin-bottom: 2rem;
}

.checkmark-svg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: block;
    stroke-width: 2.5;
    stroke: #ffffff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #ffffff;
    animation: fillCheckmark .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2.5;
    stroke-miterlimit: 10;
    stroke: rgba(255, 255, 255, 0.08);
    fill: none;
    animation: strokeCheckmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 2.5;
    stroke: #ffffff;
    animation: strokeCheckmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCheckmark {
    100% { stroke-dashoffset: 0; }
}

@keyframes fillCheckmark {
    100% { box-shadow: inset 0px 0px 0px 36px rgba(255, 255, 255, 0.03); }
}

@keyframes scaleCheckmark {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

.success-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.35rem;
    letter-spacing: 0.2em;
    color: var(--color-text-white);
    margin-bottom: 0.75rem;
    text-align: center;
}

.success-subtitle {
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--color-text-gray);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 320px;
}

.success-details-card {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.success-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.8rem;
}

.success-row .label {
    color: var(--color-text-muted);
    font-weight: 300;
}

.success-row .value {
    color: var(--color-text-gray);
    font-weight: 300;
    text-align: right;
    max-width: 200px;
}

.success-row .value.highlight {
    font-family: var(--font-heading);
    color: var(--color-text-white);
    font-weight: 400;
}

.success-row .value.status-pill {
    background-color: rgba(74, 222, 128, 0.06);
    color: #4ade80;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    border: 1px solid rgba(74, 222, 128, 0.15);
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.success-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: 0.5rem 0;
}

.total-label {
    font-family: var(--font-heading);
    color: var(--color-text-white) !important;
    font-weight: 400;
}

.total-value {
    font-family: var(--font-heading);
    color: var(--color-text-white) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Sticky Checkout Footer */
.checkout-footer {
    padding: 2rem 2.5rem;
    border-top: 1px solid var(--color-border);
    background-color: rgba(5, 5, 5, 0.9);
}

.checkout-footer.hidden {
    display: none;
}

.checkout-summary {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-gray);
    font-weight: 300;
}

.summary-line.total {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-text-white);
    border-top: 1px solid #111;
    padding-top: 0.6rem;
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
}

.footer-btn-container {
    width: 100%;
}

.btn-checkout-primary {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--color-text-white);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    border: 1px solid var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-checkout-primary:hover {
    background-color: transparent;
    color: var(--color-text-white);
}

.btn-checkout-primary i {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

/* Simulated Processing Overlay */
.checkout-processing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.checkout-processing-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.processing-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.checkout-loader {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--color-text-white);
    border-radius: 50%;
    animation: loaderSpinner 1s linear infinite;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.02);
}

@keyframes loaderSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-content h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.processing-content p {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Adjustments for smaller devices */
@media (max-width: 576px) {
    .checkout-drawer {
        max-width: 100%;
    }
    .checkout-header {
        padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    }
    .checkout-progress {
        height: 3px;
    }
    .progress-steps-labels {
        padding: 0.6rem 1.5rem;
    }
    .checkout-body {
        padding: 1.5rem;
    }
    .checkout-footer {
        padding: 1.5rem;
    }
    .credit-card-wrapper {
        margin-bottom: 1.5rem;
    }
    .card-face {
        padding: 1.25rem;
    }
    .card-number-display {
        font-size: 1.15rem;
        margin: 0.75rem 0;
    }
    .card-signature-area {
        margin: 0.75rem 1.25rem 0 1.25rem;
    }
}

/* ==========================================================================
   15. LGPD Cookie Consent Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-content p {
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 300;
    color: var(--color-text-gray);
    margin: 0;
}

.cookie-link {
    color: var(--color-text-white);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: var(--color-text-gray);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-cookie {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cookie-pri {
    background-color: var(--color-text-white);
    color: var(--color-black);
    border: 1px solid var(--color-text-white);
}

.btn-cookie-pri:hover {
    background-color: transparent;
    color: var(--color-text-white);
}

.btn-cookie-sec {
    background-color: transparent;
    color: var(--color-text-gray);
    border: 1px solid var(--color-border);
}

.btn-cookie-sec:hover {
    border-color: var(--color-text-white);
    color: var(--color-text-white);
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 1rem;
        width: 95%;
        padding: 1.25rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   16. Checkout Review & Mercado Pago Notice Styling
   ========================================================================== */
.checkout-review-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    line-height: 1.4;
}

.review-label {
    color: var(--color-text-gray);
    font-weight: 300;
}

.review-value {
    color: var(--color-text-white);
    font-weight: 400;
    text-align: right;
    max-width: 70%;
}

.checkout-review-items {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mp-payment-notice-card {
    display: flex;
    gap: 1rem;
    background: rgba(0, 154, 240, 0.03);
    border: 1px solid rgba(0, 154, 240, 0.15);
    border-radius: 4px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    align-items: flex-start;
}

.mp-notice-icon {
    color: #009ae5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-notice-icon i {
    width: 20px;
    height: 20px;
}

.mp-notice-text h5 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-white);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.mp-notice-text p {
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--color-text-gray);
    font-weight: 300;
}

/* Checkout Payment Methods Selector */
.checkout-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-method-option {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.payment-method-option:hover {
    border-color: var(--color-border-light);
    background-color: rgba(255, 255, 255, 0.02);
}

.payment-method-option.active {
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-radio-custom {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--color-text-muted);
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.payment-method-option.active .payment-radio-custom {
    border-color: var(--color-text-white);
}

.payment-radio-custom::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-text-white);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.payment-method-option.active .payment-radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.payment-method-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.payment-name {
    font-size: 0.8rem;
    font-weight: 400;
}

.payment-desc {
    font-size: 0.7rem;
    color: var(--color-text-gray);
    font-weight: 200;
}

/* ==========================================================================
   ABOUT PAGE STYLING
   ========================================================================== */
.about-hero-section {
    position: relative;
    height: 55vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-black);
    padding-top: var(--header-height);
    border-bottom: 1px solid var(--color-border);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), var(--color-black)), url('assets/about_hero.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) grayscale(0.5);
    transform: scale(1.02);
}

.about-hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 0.35em;
    padding-left: 0.35em;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.manifesto-section {
    padding: 8rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.manifesto-heading-col h2 {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
    margin-bottom: 2rem;
}

.highlight-quote {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-white);
    border-left: 2px solid var(--color-text-white);
    padding-left: 1.5rem;
    font-style: italic;
}

.manifesto-body-col {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.manifesto-body-col p {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.8;
    color: var(--color-text-gray);
}

.pillars-section {
    padding: 8rem 0;
    background-color: #030303;
    border-bottom: 1px solid var(--color-border);
}

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

.pillar-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 200;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
    display: block;
}

.pillar-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: var(--color-text-white);
}

.pillar-desc {
    font-size: 0.75rem;
    font-weight: 200;
    line-height: 1.6;
    color: var(--color-text-gray);
}

.about-gallery-section {
    padding: 8rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5rem;
    height: 600px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
}

.gallery-item.item-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7);
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    filter: grayscale(0.2) brightness(0.85);
    transform: scale(1.03);
}

/* ==========================================================================
   JOURNAL PAGE STYLING
   ========================================================================== */
.journal-hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 4rem;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.journal-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.journal-hero-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 3rem;
    letter-spacing: 0.3em;
    padding-left: 0.3em;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.journal-hero-desc {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

.featured-post-section {
    padding: 6rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
    overflow: hidden;
}

.featured-img-wrap {
    height: 480px;
    overflow: hidden;
    border-right: 1px solid var(--color-border);
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) brightness(0.7);
    transition: var(--transition-slow);
}

.featured-post-card:hover .featured-img-wrap img {
    filter: grayscale(0) brightness(0.8);
    transform: scale(1.02);
}

.featured-info-wrap {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
    display: block;
}

.featured-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.featured-desc {
    font-size: 0.85rem;
    font-weight: 200;
    line-height: 1.7;
    color: var(--color-text-gray);
    margin-bottom: 3rem;
}

.featured-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.post-date {
    font-size: 0.75rem;
    font-weight: 200;
    color: var(--color-text-muted);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--color-text-white);
}

.btn-read-more i {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

.journal-list-section {
    padding: 8rem 0;
    background-color: #030303;
}

.journal-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
}

.journal-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
    transition: var(--transition-smooth);
}

.journal-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.journal-card-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.journal-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.7) brightness(0.65);
    transition: var(--transition-slow);
}

.journal-card:hover .journal-card-img-wrap img {
    filter: grayscale(0.2) brightness(0.8);
    transform: scale(1.03);
}

.card-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--color-text-white);
}

.journal-card-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.journal-card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.journal-card-desc {
    font-size: 0.8rem;
    font-weight: 200;
    line-height: 1.6;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    flex: 1;
}

.journal-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.journal-card-date {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.journal-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-text-white);
}

.journal-card-link i {
    width: 12px;
    height: 12px;
    transition: var(--transition-smooth);
}

.journal-card-link:hover i {
    transform: translate(2px, -2px);
}

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */
.contact-hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 4rem;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 3rem;
    letter-spacing: 0.3em;
    padding-left: 0.3em;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.contact-hero-desc {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

.contact-main-section {
    padding: 8rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.contact-info-text {
    font-size: 0.85rem;
    font-weight: 200;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 3.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 1.75rem 2rem;
    transition: var(--transition-smooth);
}

.channel-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.channel-icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
    color: var(--color-text-white);
}

.channel-details h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: var(--color-text-gray);
    margin-bottom: 0.25rem;
}

.channel-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-white);
}

.channel-link:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.channel-details p {
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--color-text-white);
}

/* Glassmorphism Contact Form */
.glass-contact-form {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid var(--color-border-light);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-input-field {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    padding: 1.1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 200;
    transition: var(--transition-smooth);
}

.contact-input-field::placeholder {
    color: var(--color-text-muted);
}

.contact-input-field:focus {
    outline: none;
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.04);
}

.textarea-field {
    resize: none;
}

.btn-outline-glow-send {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: var(--transition-smooth);
}

.btn-outline-glow-send i {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

.btn-outline-glow-send:hover {
    border-color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.btn-outline-glow-send:hover i {
    transform: translate(2px, -2px);
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 8rem 0;
    background-color: #030303;
}

.faq-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.faq-section-desc {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--color-text-gray);
    margin-bottom: 5rem;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
    transition: var(--transition-smooth);
}

.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 1.75rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
    color: var(--color-text-gray);
    transition: transform var(--transition-smooth);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-text-white);
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    font-size: 0.8rem;
    font-weight: 200;
    line-height: 1.7;
    color: var(--color-text-gray);
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
    border-top-color: rgba(255, 255, 255, 0.03);
}

.faq-answer a {
    color: var(--color-text-white);
    text-decoration: underline;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .manifesto-grid,
    .contact-grid,
    .featured-post-card {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .pillars-grid,
    .journal-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-gallery-grid {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.item-large {
        grid-row: span 1;
    }
    
    .featured-img-wrap {
        height: 300px;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .featured-info-wrap {
        padding: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pillars-grid,
    .journal-list-grid {
        grid-template-columns: 1fr;
    }
    
    .manifesto-section,
    .pillars-section,
    .about-gallery-section,
    .featured-post-section,
    .journal-list-section,
    .contact-main-section,
    .faq-section {
        padding: 5rem 0;
    }
    
    .glass-contact-form {
        padding: 2rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.5rem 1.25rem;
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Apple Style)
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered loading for grids/lists */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* ==========================================================================
   15. Storefront Product Details Modal & Hover-Swap
   ========================================================================== */
.store-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.store-modal-card {
    background-color: rgba(8, 8, 8, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.store-modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--color-text-gray);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    border: none;
}

.store-modal-close-btn:hover {
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.store-modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem;
    gap: 3.5rem;
}

/* Left: Gallery View */
.store-modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.store-modal-main-img-wrap {
    width: 100%;
    aspect-ratio: 0.85;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-modal-thumbnails-container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.store-modal-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.store-modal-thumb:hover {
    opacity: 0.9;
}

.store-modal-thumb.active {
    opacity: 1;
    border-color: var(--color-text-white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* Right: Details View */
.store-modal-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-modal-category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.store-modal-name {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--color-text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.store-modal-price {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.store-modal-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
    white-space: pre-wrap;
}

.store-modal-sizes-title {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.store-modal-sizes-grid {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.store-modal-size-pill {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    width: 44px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.store-modal-size-pill:hover {
    color: var(--color-text-white);
    border-color: var(--color-text-gray);
    background-color: rgba(255, 255, 255, 0.02);
}

.store-modal-size-pill.active {
    color: var(--color-text-white);
    border-color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.08);
}

.store-modal-action-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--color-text-white);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.store-modal-action-btn:hover {
    background-color: var(--color-black);
    color: var(--color-text-white);
    border: 1px solid var(--color-text-white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

/* Hover swap cards img transition */
.product-card-img.main-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
}

.product-card-img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-card-img.main-img {
    opacity: 0;
}

.product-card:hover .product-card-img.hover-img {
    opacity: 1;
}

/* Mobile responsive for store details modal */
@media (max-width: 768px) {
    .store-modal-content-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }
    
    .store-modal-card {
        width: 95%;
        max-height: 95vh;
    }
    
    .store-modal-name {
        font-size: 1.5rem;
    }
}

/* ============================================================
   CAMPAIGN READINESS FEATURES
   ============================================================ */

/* --- 1. ANNOUNCEMENT BAR --- */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #0a0a0a 0%, #111 40%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 600;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.announcement-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: announcement-scroll 28s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.announcement-track:hover {
    animation-play-state: paused;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 56px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

.announcement-item .ann-icon {
    font-size: 13px;
    flex-shrink: 0;
}

.announcement-item .ann-highlight {
    color: #ffffff;
    font-weight: 400;
}

.announcement-separator {
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

@keyframes announcement-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Push header and body down when bar is present */
body.has-announcement-bar .main-header {
    top: 36px;
}
body.has-announcement-bar .hero-section,
body.has-announcement-bar .about-hero-section,
body.has-announcement-bar .contact-hero-section,
body.has-announcement-bar .journal-hero-section {
    padding-top: 36px;
}

/* --- 2. SOCIAL PROOF / REVIEWS SECTION --- */
.reviews-section {
    padding: 100px 0;
    background-color: var(--color-bg-deep);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header .section-tag {
    display: block;
    margin-bottom: 14px;
}

.reviews-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 12px;
}

.reviews-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.stars-filled {
    color: #f5c842;
    font-size: 16px;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 28px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.review-card:hover {
    border-color: rgba(255,255,255,0.12);
    background-color: rgba(255,255,255,0.04);
}

.review-card-stars {
    color: #f5c842;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.review-card-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    font-style: italic;
}

.review-card-text::before {
    content: '"';
    font-size: 24px;
    line-height: 0;
    vertical-align: -8px;
    color: rgba(255,255,255,0.15);
    margin-right: 4px;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.review-author-info .author-name {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
}

.review-author-info .author-detail {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
    letter-spacing: 0.05em;
}

.review-verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    color: rgba(34,197,94,0.7);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.05em;
}

/* --- 3. TRUST BADGES --- */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 20px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 14px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.trust-badge-icon {
    font-size: 13px;
}

/* --- 4. NEWSLETTER SUCCESS STATE --- */
.newsletter-success {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(34,197,94,0.8);
    letter-spacing: 0.05em;
    padding: 8px 0;
}

.newsletter-success.visible {
    display: flex;
}

/* --- 5. FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 450;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

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

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.whatsapp-float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2.5s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.7); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 62px;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(10,10,10,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 11.5px;
    white-space: nowrap;
    color: rgba(255,255,255,0.8);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    letter-spacing: 0.04em;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .announcement-item {
        padding: 0 32px;
        font-size: 10px;
    }

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

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

    .whatsapp-tooltip {
        display: none;
    }

    .trust-badges-row {
        gap: 6px 14px;
    }
}

/* --- ARTICLE READING MODAL (GLASSMORPHISM) --- */
.article-reader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 4, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-reader-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.article-reader-card {
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    width: 90%;
    max-width: 780px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: translateY(30px) scale(0.98);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-reader-overlay.open .article-reader-card {
    transform: translateY(0) scale(1);
}

.article-reader-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.4);
}

.article-reader-header h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
}

.btn-close-reader {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.btn-close-reader:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.article-reader-body {
    padding: 32px 40px;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
}

.article-reader-body::-webkit-scrollbar {
    width: 6px;
}

.article-reader-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.article-reader-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.article-reader-body h4 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.article-reader-meta {
    font-size: 11px;
    color: #c5a880;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.article-reader-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-reader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 0.6s ease;
}

.article-reader-img-wrap:hover .article-reader-img {
    transform: scale(1.03);
}

.article-reader-text p {
    margin-bottom: 20px;
    font-weight: 300;
}

.article-reader-text blockquote {
    border-left: 2px solid #c5a880;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .article-reader-card {
        width: 95%;
        max-height: 90vh;
    }
    
    .article-reader-header {
        padding: 16px 20px;
    }
    
    .article-reader-body {
        padding: 24px 20px;
        font-size: 14px;
    }
    
    .article-reader-img-wrap {
        height: 200px;
        margin-bottom: 20px;
    }
}

/* --- MOBILE DESIGN REFINEMENTS ("PRIME DO PRIME") --- */
@media (max-width: 768px) {
    /* Optimize Header Spacing and layout */
    .header-container {
        padding: 0 1.25rem;
    }
    
    .header-actions {
        gap: 0.85rem;
    }
    
    /* Hide language selector from top bar to declutter header */
    .header-actions .lang-selector {
        display: none;
    }
    
    /* Center slider controls for a balanced layout */
    .slider-controls {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    /* Optimize product modal details on mobile */
    .store-modal-content-grid {
        padding: 2rem 1.25rem;
        gap: 1.5rem;
    }
    
    .store-modal-main-img-wrap {
        aspect-ratio: 1;
        max-height: 300px;
    }
    
    /* Glassmorphic close button that is always visible over clothing details */
    .store-modal-close-btn {
        top: 1rem;
        right: 1rem;
        background-color: rgba(10, 10, 10, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 36px;
        height: 36px;
    }
    
    /* Ensure sizes grid wraps gracefully on narrow screens */
    .store-modal-sizes-grid {
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    /* Stack price and sizes on mobile product cards to prevent squishing */
    .product-card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-card-sizes {
        gap: 0.3rem;
    }
    
    /* Optimize storefront products slider for swipe on mobile */
    .products-slider {
        gap: 1.25rem !important;
        padding-bottom: 1rem;
    }
    
    .product-card {
        flex: 0 0 78%;
        min-width: 220px;
    }
}

/* ==========================================================================
   17. Search Overlay & Dynamic Results Styling
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.search-container {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.search-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-text-white);
    font-weight: 300;
}

.search-close-btn {
    background: none;
    border: none;
    color: var(--color-text-white);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

.search-close-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

.search-input-wrap {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

#search-input {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    padding: 1rem 0 1rem 3rem;
    outline: none;
    letter-spacing: 0.02em;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.search-field-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-bottom: 2rem;
}

/* Custom scrollbar for search results */
.search-results-grid::-webkit-scrollbar {
    width: 3px;
}

.search-results-grid::-webkit-scrollbar-track {
    background: transparent;
}

.search-results-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Search result item styles */
.search-result-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-align: left;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.search-result-img {
    width: 50px;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.search-result-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-white);
    letter-spacing: 0.05em;
}

.search-result-price {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.search-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    padding: 3rem 0;
    font-weight: 300;
    letter-spacing: 0.05em;
}

#paypal-button-container {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    z-index: 10;
}

.hidden {
    display: none !important;
}

/* Responsive Collection Tabs for Mobile */
@media (max-width: 768px) {
    .store-collections-wrapper {
        margin-bottom: 2.5rem;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .store-collections-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 0.3rem;
        border-radius: 100px;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        overflow-x: hidden;
    }
    
    .collection-tab-btn {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        padding: 0.8rem 0.5rem;
        text-align: center;
        width: 100%;
        border-radius: 100px;
        border: 1px solid transparent;
        transition: background 0.3s ease, color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    .collection-tab-btn::after {
        display: none !important;
    }
    
    .collection-tab-btn.active {
        background: rgba(255, 255, 255, 0.08);
        color: var(--color-text-white);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}
