@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
:root {
    /* Modern Premium Palette (Olive Green Theme) */
    --primary: #22311A; /* Deep Olive from Text/Button */
    --primary-light: #526B33; /* Medium Olive from Circle */
    --dark: #1D2D15; /* Darker text */
    --light: #F9FBF6; 
    --bg-main: #EDF2E8; /* Very light modern green-white mix */
    --bg-soft: #E2EAD8; /* Slightly deeper green-white for contrast */
    --bg-card: #F4F7F0; /* Pure white for cards */
    
    /* Typography */
    --font-serif: 'Outfit', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-sans: 'Jost', sans-serif;
    
    /* Animations */
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* REVEAL ANIMATIONS (Safety First) */
.reveal {
    opacity: 1; /* Changed from 0 to 1 to ensure content is ALWAYS visible */
    transform: translateY(0); /* Reset transform to ensure no overlap */
    transition: 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.custom-cursor {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400; /* Lighter font weight for modern premium look */
    color: var(--dark);
}

/* Custom Cursor */
.custom-cursor {
    display: none !important;
}

/* ==============================
   ANNOUNCEMENT RIBBON
============================== */
.announcement-ribbon {
    width: 100%;
    background: var(--primary);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 200;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.announcement-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}

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

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

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

.ann-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #d1d5db;
    padding: 0 28px;
}

.ann-item strong {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.ann-item i {
    color: #10b981;
    font-size: 11px;
}

.ann-sep {
    color: rgba(255,255,255,0.2);
    font-size: 9px;
    flex-shrink: 0;
}

/* MintPay logo inside ribbon */
.ann-logo {
    height: 14px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    vertical-align: middle;
}

/* Koko brand text style */
.ann-brand {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    color: #f0f0f0;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* MintPay brand text style */
.ann-mintpay {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #e91e8c;
    text-transform: lowercase;
    line-height: 1;
}
.ann-mintpay em {
    font-style: normal;
    color: #ff5dc8;
}

/* -----------------------------
   FANCY MODERN HEADER
------------------------------ */
.fancy-header-container {
    width: 100%;
    position: relative;
    z-index: 100;
}

.top-utility-bar {
    background: var(--primary); /* Light Black */
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #fff;
}

.top-utility-bar i {
    margin-right: 5px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    transition: 0.3s;
    font-size: 13px;
}

.social-icons a:hover {
    color: var(--primary-light);
}

.logo-pill-wrapper {
    background: var(--bg-card);
    display: flex;
    justify-content: center;
    position: relative;
    height: 50px; /* Reduced height */
}

.logo-pill {
    background: var(--primary);
    color: #fff;
    width: 360px; /* Increased width */
    height: 35px; /* Reduced height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    border-radius: 0 0 60px 60px;
    position: absolute;
    top: -5px; /* Slightly adjusted for smaller height */
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fancy-logo {
    font-size: 20px; /* Slightly smaller for the new height */    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: baseline;
}

.fancy-logo .first-letter {
    color: var(--primary-light);
    font-size: 32px;
}

.fancy-logo .rest-letters {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    margin-left: 2px;
}

.lang-selector, .account-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 10px;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
}

.shipping-info-bar {
    background: var(--bg-card);
    padding: 10px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
}

.shipping-info-bar span {
    color: var(--primary-light);
    font-weight: 400;
}

.main-nav-bar {
    background: var(--primary);
    padding: 10px 0; /* Reduced from 20px for a more compact look */
}

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

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-light);
}

.nav-icons {
    position: absolute;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.nav-icons a {
    color: #fff;
}

.cart-trigger {
    position: relative;
}

.cart-count {
    background: var(--primary-light);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -12px;
}

/* -----------------------------
   FANCY HERO SLIDER
------------------------------ */
.fancy-hero {
    width: 100%;
    height: 90vh; /* Increased from 85vh */
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.hero-slider-track {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: 1s var(--transition);
}

.hero-slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center; /* Adjusted from center to top center to fix cutoff */
    background-repeat: no-repeat;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 50%;
}

.slide-title {
    font-size: 82px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.slide-desc {
    font-size: 18px;
    color: var(--primary-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-fancy {
    display: inline-block;
    background: var(--primary-light);
    color: #fff;
    padding: 18px 50px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: 0.4s var(--transition);
    font-size: 12px;
}

.btn-fancy:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.slider-dots-vertical {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-light);
}

.free-shipping-bar {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    z-index: 5;
}

.free-shipping-bar span {
    color: #888;
    font-weight: 400;
}

/* Hotspots */
.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 100;
    cursor: pointer;
}

.hotspot-pulse {
    width: 100%;
    height: 100%;
    background: rgba(30, 63, 50, 0.15);
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: pulse 2s infinite;
}

.hotspot-card {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 8px; /* Sharper modern look */
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s var(--transition);
    color: var(--dark);
    text-align: center;
}

.hotspot:hover .hotspot-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot-card h4 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 8px; font-weight: 500; }

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* -----------------------------
   SECTIONS
------------------------------ */
.section-padding { padding: 160px 0; }
.section-head { text-align: center; margin-bottom: 90px; }
.section-tag { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: block; font-weight: 500; }
.section-title { font-size: 56px; color: var(--dark); font-weight: 400; letter-spacing: -1px; }

/* Categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cat-item { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 8px; cursor: pointer; }
.cat-item img { width: 100%; height: auto; object-fit: contain; transition: 1.2s var(--transition); filter: brightness(0.9); }
.cat-item:hover img { transform: scale(1.08); filter: brightness(1); }
.cat-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 50px 40px; 
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); 
    color: #fff; 
    transition: 0.5s var(--transition);
}
.cat-overlay h3 { font-size: 32px; margin-bottom: 12px; color: #fff; font-weight: 400; }
.cat-overlay p { font-size: 12px; text-transform: uppercase; letter-spacing: 3px; opacity: 0.8; }
.cat-item:hover .cat-overlay { padding-bottom: 60px; }

/* Marquee */
.marquee-wrap { background: var(--bg-soft); padding: 50px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
.marquee { display: inline-block; font-family: var(--font-serif); font-size: 45px; font-style: italic; color: rgba(0,0,0,0.1); padding-left: 100%; animation: marquee 25s linear infinite; letter-spacing: 2px; }
@keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }

/* Product Grid */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.prod-card { position: relative; cursor: pointer; group; }
.prod-img-wrap { 
    width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 20px; 
    background: transparent; margin-bottom: 25px; position: relative; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.prod-img-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 20px; transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.prod-card:hover .prod-img-wrap img { transform: scale(1.08); }
.prod-info { text-align: center; }
.prod-name { font-family: var(--font-serif); font-size: 20px; margin-bottom: 10px; color: var(--dark); font-weight: 400; transition: 0.3s; }
.prod-card:hover .prod-name { color: var(--primary); }
.prod-price { font-size: 14px; font-weight: 500; color: var(--primary-light); letter-spacing: 1px; }

/* Testimonial / Story Split */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.story-img { width: 100%; aspect-ratio: 4/5; border-radius: 8px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.story-text h2 { font-size: 56px; margin-bottom: 35px; font-weight: 400; line-height: 1.1; letter-spacing: -1px; }
.story-text p { font-size: 17px; color: var(--primary-light); margin-bottom: 40px; line-height: 1.9; font-weight: 300; }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 450px 450px;
    gap: 20px;
}
.bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: 0.5s var(--transition);
}
.bento-item:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.bento-item.large {
    grid-column: span 2;
    background: var(--bg-soft);
}
.bento-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: 1s var(--transition);
}
.bento-item:hover .bento-img { transform: scale(1.05); }
.bento-content { position: relative; z-index: 2; }
.bento-title { font-size: 36px; margin-bottom: 15px; font-weight: 400; }
.bento-item.dark-text .bento-title { color: var(--dark); }
.bento-item.light-text .bento-title { color: #fff; }
.bento-item.light-text .bento-desc { color: rgba(255,255,255,0.9); font-weight: 300; }

/* Video Lookbook */
.video-lookbook {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 120px 0;
}
.video-lookbook video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.video-lookbook .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}
.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

/* Digital Luxury */
.digital-section {
    background: #050505;
    color: #fff;
    padding: 160px 0;
    position: relative;
}
.digital-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}
.digital-title {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(50px, 7vw, 100px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
}
.digital-subtitle { font-family: var(--font-serif); font-style: italic; color: var(--primary-light); font-size: 28px; }
.digital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
}
.digital-card {
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 80px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.6s var(--transition);
}
.digital-card:hover { background: var(--primary); }
.digital-card-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: 0.8s var(--transition);
    margin-bottom: 40px;
}
.digital-card:hover .digital-card-img { filter: grayscale(0%) brightness(1); transform: scale(1.03); }
.digital-card h3 { font-size: 32px; margin-bottom: 15px; color: #fff; font-family: var(--font-sans); font-weight: 300; letter-spacing: 2px; text-transform: uppercase; }
.digital-card p { color: #888; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }

.digital-marquee-wrap { background: #050505; color: #fff; padding: 70px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.digital-marquee {
    display: inline-block; font-family: var(--font-sans); font-weight: 300; text-transform: uppercase; font-size: 70px;
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.3); padding-left: 100%; animation: marquee 20s linear infinite;
}
.digital-marquee span { color: #fff; -webkit-text-stroke: 0; font-weight: 400; }

/* Editorial Accordion */
.accordion-section { padding: 120px 0; background: var(--bg-soft); }
.accordion-container { display: flex; width: 100%; height: 650px; gap: 15px; padding: 0 5%; }
.accordion-item {
    position: relative; flex: 1; height: 100%; border-radius: 12px; overflow: hidden; cursor: pointer;
    transition: flex 0.8s var(--transition);
}
.accordion-item:hover { flex: 3; }
.accordion-bg { position: absolute; top: 0; left: 0; width: 100%; height: auto; object-fit: contain; transition: transform 0.8s var(--transition); }
.accordion-item:hover .accordion-bg { transform: scale(1.05); }
.accordion-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, var(--primary) 0%, rgba(0,0,0,0) 60%); }
.accordion-content { position: absolute; bottom: 40px; left: 50px; color: #fff; opacity: 0; transform: translateY(30px); transition: 0.6s var(--transition); white-space: nowrap; }
.accordion-item:hover .accordion-content { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.accordion-content h3 { font-size: 45px; font-family: var(--font-serif); margin-bottom: 10px; color: #fff; font-weight: 400; }
.accordion-content p { font-size: 13px; text-transform: uppercase; letter-spacing: 3px; color: #fff; opacity: 0.8; }
.accordion-vert-title {
    position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%) rotate(-90deg); transform-origin: left bottom;
    color: #fff; font-size: 13px; letter-spacing: 5px; text-transform: uppercase; white-space: nowrap; transition: 0.4s; font-weight: 500;
}
.accordion-item:hover .accordion-vert-title { opacity: 0; }

/* Newsletter */
.newsletter-section { background: var(--primary); color: #fff; padding: 140px 0; text-align: center; }
.newsletter-form { max-width: 600px; margin: 50px auto 0; position: relative; }
.newsletter-form input {
    width: 100%; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.4); padding: 20px 0;
    color: #fff; font-size: 18px; outline: none; font-family: var(--font-sans); transition: 0.4s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: #fff; }
.newsletter-form button {
    position: absolute; right: 0; bottom: 20px; background: none; border: none; color: #fff;
    font-size: 24px; cursor: pointer; transition: transform 0.3s ease;
}
.newsletter-form button:hover { transform: translateX(5px); }

/* Footer */
.site-footer { background: var(--bg-main); color: var(--dark); padding: 120px 0 60px; text-align: center; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-logo { font-family: var(--font-serif); font-size: 36px; letter-spacing: 6px; margin-bottom: 50px; display: block; color: var(--dark); text-decoration: none; }
.footer-links { display: flex; justify-content: center; gap: 45px; margin-bottom: 70px; list-style: none; }
.footer-links a { color: var(--primary-light); text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); }
.copyright { color: #999; font-size: 11px; letter-spacing: 2px; margin-top: 80px; text-transform: uppercase; }

/* Text Mask */
.text-mask-section {
    position: relative; width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--bg-main); margin-bottom: 120px;
}
.text-mask-media { position: absolute; top: 0; left: 0; width: 100%; height: auto; object-fit: contain; z-index: 1; }
.text-mask-content {
    position: relative; z-index: 2; background: var(--bg-main); width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    mix-blend-mode: screen; 
}
.text-mask-text {
    font-family: var(--font-serif); font-size: clamp(90px, 18vw, 300px); font-weight: 400; line-height: 0.8;
    color: var(--primary); text-align: center; letter-spacing: -4px; margin: 0;
}
.text-mask-sub { font-size: 16px; font-family: var(--font-sans); color: var(--primary); letter-spacing: 12px; text-transform: uppercase; margin-top: 30px; font-weight: 500; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* -----------------------------
   ESSENTIALS GRID SECTION
------------------------------ */
.essentials-section {
    padding: 80px 5% 100px;
    background: var(--bg-soft); /* Moose-like light beige background changed to soft green */
}

.essentials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 1.4fr 1fr 1fr; /* Added column for side text */
    gap: 20px;
    align-items: start;
}

.essentials-col-large {
    display: flex;
    align-items: stretch;
    position: relative;
    grid-column: span 2; /* Side block + Large card */
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px; /* Increased to 20px gap */
}

.essentials-col-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.essentials-side-block {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.essentials-side-block h2 {
    font-family: 'Arial Black', Impact, 'Helvetica Neue', sans-serif;
    font-size: clamp(60px, 6vw, 90px);
    font-weight: 900;
    color: #9333ea;
    white-space: nowrap;
    letter-spacing: 12px; /* Increased gap between letters */
    margin: 0;
    line-height: 0.8;
    opacity: 0.9;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg) scale(1.2, 2.2);
    pointer-events: none;
    z-index: 1;
}

.essentials-large-card {
    position: relative;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 600px;
}

.essentials-large-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
    transition: 1s var(--transition);
}

.essentials-large-card:hover img {
    transform: scale(1.05);
}

.essentials-large-content {
    position: absolute;
    z-index: 3;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.essentials-large-content h4 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.essentials-large-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.essentials-large-content .hashtag {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 3px;
    margin-top: 150px;
    text-transform: uppercase;
}

/* Column Stacks */
.essentials-col-stack .essentials-small-card {
    height: 290px; /* Fixed height for consistency */
}

.essentials-small-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.essentials-small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s var(--transition);
    mix-blend-mode: multiply;
}

.essentials-small-card:hover img {
    transform: scale(1.08);
}

.essentials-small-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.essentials-small-content h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--bg-card);
    color: var(--primary);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    transition: 0.4s var(--transition);
}

.essentials-small-card:hover .icon-circle {
    transform: translateX(5px);
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1024px) {
    .essentials-container {
        grid-template-columns: 1fr;
    }
    .essentials-large-card {
        min-height: 500px;
    }
    .essentials-side-block {
        display: none; /* Hide side text on tablet/mobile to save space */
    }
}
@media (max-width: 768px) {
    .essentials-container {
        grid-template-columns: 1fr;
    }
    .essentials-col-stack {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        display: grid;
    }
}
@media (max-width: 500px) {
    .essentials-col-stack {
        grid-template-columns: 1fr; /* 1 column on small phones */
    }
}

/* -----------------------------
   PROMOTIONS SECTION
------------------------------ */
.promo-slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.promo-track {
    display: flex;
    gap: 30px;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.promo-card {
    position: relative;
    flex: 0 0 calc(50% - 15px);
    border-radius: 4px; /* Minimalist soft edge */
    overflow: hidden;
    cursor: pointer;
    background: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.promo-card img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
    transition: 0.8s var(--transition);
}

.promo-card:hover img {
    transform: scale(1.05);
}

.promo-nav {
    display: flex;
    gap: 15px;
}

.promo-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s var(--transition);
    font-size: 14px;
}

.promo-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 63, 50, 0.2);
}

@media (max-width: 900px) {
    .promo-card {
        flex: 0 0 100%;
    }
}

/* -----------------------------
   BENTO SPLIT CATEGORIES
------------------------------ */
.bento-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.bento-item-3 { grid-column: span 2; }
.bento-item-left { grid-column: span 3; }
.bento-item-right { grid-column: span 3; }

.split-card {
    display: flex;
    width: 100%;
    height: 340px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.5s var(--transition);
    border-radius: 4px;
}

.split-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.split-info {
    flex: 1.1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.split-info h3 {
    font-size: 26px;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.split-btn {
    align-self: flex-start;
    padding: 10px 20px;
    background: var(--bg-card);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.split-card:hover .split-btn {
    background: var(--primary);
    color: #fff;
}

.split-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: 0.8s var(--transition);
}

.split-card:hover .split-img {
    transform: scale(1.05);
}

@media (max-width: 1100px) {
    .bento-item-3 { grid-column: span 3; }
    .bento-item-left, .bento-item-right { grid-column: span 6; }
}

@media (max-width: 768px) {
    .bento-item-3 { grid-column: span 6; }
    .split-card { height: 300px; }
    .split-info { padding: 30px; }
    .split-info h3 { font-size: 22px; }
}

/* -----------------------------
   BIG SALE BANNER SECTION
------------------------------ */
.big-sale-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.big-sale-container {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.big-sale-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.sale-badge {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    background: rgba(188, 108, 129, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    text-align: center;
    z-index: 3;
}

.sale-badge span {
    font-size: 70px;
    display: block;
    line-height: 1;
}

.sale-logo-placeholder {
    color: #fff;
    margin-bottom: 30px;
}

.sale-title {
    font-size: 140px;
    line-height: 0.8;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-sans);
    text-transform: uppercase;
    position: relative;
    letter-spacing: -5px;
}

.script-text {
    position: absolute;
    top: 25%;
    left: 120px;
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    color: var(--primary);
    text-transform: none;
    font-style: italic;
    letter-spacing: 0;
    font-weight: 400;
}

.sale-sub {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 30px;
    letter-spacing: 2px;
}

.sale-desc {
    max-width: 600px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.6;
}

.sale-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 50px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s var(--transition);
}

.sale-btn:hover {
    background: var(--bg-card);
    color: #bc6c81;
}

.sale-site-link {
    position: absolute;
    bottom: 50px;
    right: 50px;
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.slider-dots-vertical {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

@media (max-width: 1024px) {
    .sale-title { font-size: 100px; }
    .script-text { font-size: 60px; left: 80px; }
    .sale-badge { width: 200px; height: 200px; right: 5%; }
    .sale-badge span { font-size: 50px; }
}

@media (max-width: 768px) {
    .big-sale-container { height: auto; padding: 100px 0; }
    .sale-title { font-size: 70px; letter-spacing: -2px; }
    .script-text { font-size: 40px; left: 50px; top: 20%; }
    .sale-badge { position: relative; top: 0; transform: none; right: 0; margin-bottom: 40px; }
    .sale-desc { font-size: 14px; }
}

/* -----------------------------
   PRODUCT GRID SECTION
------------------------------ */
.product-grid-section {
    padding: 120px 0; /* More padding to separate from hero */
    background: var(--bg-card);
    position: relative;
    z-index: 5;
    margin-top: 0;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-subtitle {
    color: #888;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
}

.product-grid.grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    transition: 0.3s;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 20px;
    aspect-ratio: 3/4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 20px;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-side-actions {
    position: absolute;
    right: -50px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

.product-card:hover .product-side-actions {
    right: 15px;
}

/* -----------------------------
   MODERN BLACK & WHITE NAVBAR
------------------------------ */
.modern-bw-header {
    background: var(--bg-card);
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    transition: 0.4s var(--transition);
}

.modern-bw-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-left a, .nav-right a {
    text-decoration: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    padding: 10px; /* Expand hit area */
    display: inline-flex;
    align-items: center;
}

/* Dropdown Styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-trigger, .cart-btn-modern, .user-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent !important;
    color: var(--primary);
    font-size: 18px; /* Elegant, slightly smaller size */
    border: none !important;
    padding: 5px 8px !important;
    position: relative;
    box-shadow: none !important;
}

.search-trigger:hover, .cart-btn-modern:hover, .user-nav-btn:hover {
    background: transparent !important;
    transform: scale(1.15);
    color: var(--primary);
}

.cart-count {
    display: none !important;
}

.cart-btn-modern:hover .cart-count {
    transform: scale(1.1) translate(2px, -2px);
}

.dropdown-trigger i {
    font-size: 10px;
    transition: 0.3s;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    min-width: 180px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.4s var(--transition);
    z-index: 1000;
    padding: 15px 0;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content a {
    display: block !important;
    padding: 10px 25px !important;
    font-size: 11px !important;
    color: var(--primary-light) !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
}

.dropdown-content a:hover {
    color: var(--primary) !important;
    background: #fafafa;
    padding-left: 30px !important;
}

.nav-left a::after, .nav-right a:not(.cart-btn-modern):not(.search-trigger)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-left a:hover::after, .nav-right a:hover::after {
    width: 100%;
}

.logo-text {
    font-family: 'Bodoni Moda', serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 15px;
    text-transform: uppercase;
    margin: 0 40px;
    transition: 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    display: inline-block;
}

.logo-text:hover {
    letter-spacing: 20px;
    opacity: 0.8;
}

/* Duplicate cart button styles removed */

@media (max-width: 992px) {
    .nav-left, .nav-right {
        display: none;
    }
    .nav-split {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* -----------------------------
   PAGES DROPDOWN NAV
------------------------------ */
.nav-pages-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.pages-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
    padding: 5px 0;
    position: relative;
}

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

.nav-pages-dropdown:hover .pages-trigger::after {
    width: 100%;
}

.pages-trigger i {
    font-size: 9px;
    transition: 0.3s;
}

.nav-pages-dropdown:hover .pages-trigger i {
    transform: rotate(180deg);
}

.pages-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid #eee;
    border-top: 2px solid var(--primary);
    min-width: 160px;
    padding: 8px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: 0.3s cubic-bezier(0.2, 1, 0.2, 1);
    z-index: 3000;
}

.nav-pages-dropdown:hover .pages-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pages-dropdown-menu a {
    display: block !important;
    padding: 10px 20px;
    font-size: 12px;
    color: var(--primary) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.2s;
    border-bottom: none !important;
    position: relative;
}

.pages-dropdown-menu a::after {
    display: none !important;
}

.pages-dropdown-menu a:hover {
    background: #f8f8f8;
    color: var(--primary) !important;
    padding-left: 25px;
}

/* -----------------------------
   MODERN BLACK LUXURY FOOTER (BALANCED)
------------------------------ */
.modern-footer {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 40px;
    font-family: var(--font-sans);
    margin-top: 60px;
}

.modern-footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-wrap .logo-text {
    color: #fff;
    margin: 0;
    margin-bottom: 25px;
    display: block;
    font-size: 24px;
    letter-spacing: 6px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-bio {
    font-size: 13px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: block;
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--primary-light);
    font-size: 13px;
    transition: 0.3s;
    display: block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(8px);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--primary-light);
    font-size: 13px;
    line-height: 1.6;
}

.contact-item i {
    color: #fff;
    font-size: 14px;
    width: 20px;
    margin-top: 3px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.footer-socials a:hover {
    background: var(--bg-card);
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid var(--dark);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-text {
    font-size: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-icons {
    display: flex;
    gap: 20px;
    opacity: 0.3;
}

.payment-icons i {
    font-size: 20px;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------
   REFINED ABOUT PAGE (EDITORIAL)
------------------------------ */
.about-page-hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--bg-card);
    padding: 0 5%;
}

.about-page-hero .subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 25px;
    display: block;
}

.about-page-hero h1 {
    font-size: clamp(48px, 8vw, 110px);
    font-family: 'Bodoni Moda', serif;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-hero-img-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 120px;
}

.about-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
}

.about-split.reverse {
    direction: rtl;
}

.about-split.reverse .story-content {
    direction: ltr;
}

.story-content h2 {
    font-size: 48px;
    font-family: 'Bodoni Moda', serif;
    margin-bottom: 30px;
    line-height: 1.1;
}

.story-content p {
    font-size: 15px;
    color: var(--primary-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-feature-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
}

.philosophy-section {
    padding: 150px 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.philosophy-section blockquote {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    max-width: 1100px;
    margin: 0 auto;
    font-style: italic;
}

.philosophy-section .author {
    display: block;
    margin-top: 40px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 120px 0;
}

.value-card h4 {
    font-family: 'Bodoni Moda', serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.value-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-page-hero h1 { font-size: 56px; }
}

/* -----------------------------
   MODERN CTA SECTION (SHARP & ANIMATED)
------------------------------ */
.modern-cta-section {
    padding: 140px 5%;
    background: var(--bg-card);
    text-align: left;
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    gap: 40px;
}

.cta-text h2 {
    font-family: var(--font-sans);
    font-size: 90px;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: -3px;
    opacity: 1; /* Safety: Visible by default */
    transform: translateY(0);
    transition: 1s var(--transition);
}

.cta-text h2.active {
    opacity: 1;
    transform: translateY(0);
}

.cta-text h2 span {
    display: block;
    color: #eee;
    -webkit-text-stroke: 1px var(--primary);
    font-style: normal;
}

.cta-btn-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 45px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: 0.5s var(--transition);
    border: 1px solid var(--primary);
}

.cta-btn-pill:hover {
    background: transparent;
    color: var(--primary);
    padding-right: 55px;
}

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

.cta-col {
    padding: 40px 30px;
    border-top: 1px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: 0.4s var(--transition);
    border-right: 1px solid #f0f0f0;
}

.cta-col:last-child {
    border-right: none;
}

.cta-col::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 2;
}

.cta-col.active::before {
    width: 100%;
}

.cta-col-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-col-info p {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}

.cta-col i {
    font-size: 20px;
    color: var(--primary);
    transition: 0.4s;
    opacity: 0.2;
}

.cta-col:hover {
    background: #fafafa;
}

.cta-col:hover i {
    opacity: 1;
    transform: scale(1.2) rotate(-10deg);
}

@media (max-width: 1024px) {
    .cta-text h2 { font-size: 60px; }
    .cta-flex { flex-direction: column; align-items: flex-start; }
    .cta-grid { grid-template-columns: 1fr 1fr; }
    .cta-col { border-right: none; border-bottom: 1px solid #f0f0f0; }
}

@media (max-width: 600px) {
    .cta-text h2 { font-size: 45px; }
    .cta-grid { grid-template-columns: 1fr; }
}

.side-action-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    color: var(--primary);
}

.side-action-btn:hover {
    background: var(--primary-light);
    color: #fff;
}

.btn-buy-now {
    position: absolute;
    bottom: -60px;
    left: 15px;
    right: 15px;
    padding: 15px;
    background: var(--primary);
    backdrop-filter: blur(5px);
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.4s var(--transition);
    z-index: 5;
}

.product-card:hover .btn-buy-now {
    bottom: 15px;
}

.btn-buy-now:hover {
    background: var(--primary-light);
}

.product-info {
    padding-top: 15px;
    text-align: center;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* -----------------------------
   TOP COLLECTION SECTION
------------------------------ */
.top-collection-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.collection-col-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collection-col-main {
    display: flex;
}

.collection-card {
    background: #f4f4f4;
    border-radius: 4px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    cursor: pointer;
    transition: 0.5s var(--transition);
    text-decoration: none;
    flex: 1;
}

.collection-card.large {
    padding: 60px 30px;
}

.collection-card:hover {
    background: #eee;
    transform: translateY(-5px);
}

.collection-img-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.collection-img-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: 0.8s var(--transition);
}

.collection-card.large .collection-img-box img {
    max-width: 90%;
    max-height: 90%;
}

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

.collection-card h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.collection-card h3 span {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin-left: 5px;
    vertical-align: super;
}

@media (max-width: 992px) {
    .top-collection-grid {
        grid-template-columns: 1fr 1fr;
    }
    .collection-col-main {
        grid-column: span 2;
        order: -1;
    }
}

@media (max-width: 600px) {
    .top-collection-grid {
        grid-template-columns: 1fr;
    }
    .collection-col-main {
        grid-column: span 1;
    }
}

/* -----------------------------
   PRODUCT PAGE EXTRAS
------------------------------ */
.product-usp-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

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

.usp-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.usp-header a {
    font-size: 13px;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
    transition: 0.3s;
}

.usp-header a:hover {
    color: var(--primary);
}

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

.usp-item {
    padding: 20px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.usp-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.usp-yellow { background: var(--bg-card)beb; }
.usp-green { background: #f0fdf4; }
.usp-pink { background: #fdf2f8; }

.usp-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    z-index: 1;
}

.usp-icon {
    align-self: flex-end;
    font-size: 32px;
    opacity: 0.08;
    position: absolute;
    bottom: -5px;
    right: -5px;
    transition: 0.4s;
}

.usp-item:hover .usp-icon {
    transform: scale(1.2) rotate(-10deg);
    opacity: 0.15;
}

/* MODAL STYLING */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: 0.5s var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

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

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.close-modal {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    background: #eee;
    transform: rotate(90deg);
}

.modal-usp-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-usp-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.modal-usp-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.modal-usp-icon.yellow { background: var(--bg-card)beb; color: #b45309; }
.modal-usp-icon.green { background: #f0fdf4; color: #15803d; }
.modal-usp-icon.pink { background: #fdf2f8; color: #be185d; }

.modal-usp-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-usp-info p {
    font-size: 14px;
    color: var(--primary-light);
    line-height: 1.6;
}

.product-share-section {
    margin-top: 40px;
}

.product-share-section p {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.share-icons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.4s var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.share-btn.fb { background: #1877F2; }
.share-btn.wa { background: #25D366; }
.share-btn.ig { background: #E4405F; }

/* ==============================
   USER NAVBAR / SESSION
============================== */
.user-nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Logged-out: simple icon button */
.user-nav-btn {
    display: flex;
}

/* Logged-in: trigger row */
.user-nav-dropdown {
    display: flex;
    align-items: center;
    position: relative;
}

.user-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent !important;
    color: var(--primary);
    border: none !important;
    padding: 5px 8px !important;
    position: relative;
    box-shadow: none !important;
    cursor: pointer;
}
.user-nav-trigger:hover, .user-nav-trigger.active {
    background: transparent !important;
    transform: scale(1.15);
    color: var(--primary);
}

/* Hide the old avatar, name, and chevron */
.user-nav-avatar, .user-nav-name, .user-nav-trigger .fa-chevron-down {
    display: none !important;
}

/* Inject the minimalist user icon via CSS */
.user-nav-trigger::before {
    content: "\f007"; /* FontAwesome user icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit; /* inherit hover color */
}

.user-nav-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.user-nav-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-sans);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Dropdown menu */
.user-dropdown-menu {
    display: none !important; /* Disabled per user request (redirecting to profile page instead) */
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 170px;
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.user-dropdown-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 13px;
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: background 0.15s;
}
.user-dropdown-menu a:hover {
    background: #f9fafb;
    color: var(--primary);
}
.user-dropdown-menu a i {
    width: 16px;
    text-align: center;
    color: var(--primary-light);
    font-size: 13px;
}


@keyframes productFloatUp {
    0% { opacity: 0; transform: translateY(50px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.product-card, .prod-card {
    animation: productFloatUp 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.product-card:nth-child(1), .prod-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2), .prod-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3), .prod-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4), .prod-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5), .prod-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6), .prod-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7), .prod-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8), .prod-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(n+9), .prod-card:nth-child(n+9) { animation-delay: 0.9s; }
