/* Base Reset */
:root {
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-gray: #888888;
    --color-light-gray: #f4f4f4;
    --font-main: 'Inter', sans-serif;
    --header-height: 80px;
    --transition-speed: 0.6s;
}

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

main {
    flex: 1;
}

html,
body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    /* Ensure no viewport overflow */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ... existing styles ... */

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    /* Scale up to hide edges/UI */
    width: 100%;
    /* Changed from 100vw to avoid scrollbar overflow */
    height: 100%;
    aspect-ratio: 16/9;
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    pointer-events: none;
    /* Disable interaction */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--color-text);
    color: var(--color-bg);
    text-align: center;
    padding: 0;
    /* Clear padding, use flex centering */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    height: 30px;
    /* Fixed height for calculations */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 102;
    /* Above header */
}

/* Header */
.site-header {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    /* Transparent initially */
    background: transparent;
    transition: background 0.4s ease, transform 0.4s ease, color 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    /* White text by default */
}

/* Logo handling for dark/light modes */
.logo img {
    height: 60px !important;
    width: auto;
    display: block;
    transition: filter 0.4s ease;
    /* Invert to make black logo white on dark/transparent bg if needed */
    filter: brightness(0) invert(1);
}

/* Scrolled State (White) */
.site-header.scrolled {
    position: fixed;
    top: 0;
    background: #ffffff;
    /* Solid White */
    color: #000;
    /* Black text */
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.3s ease forwards;
    padding-top: 0;
}

.site-header.scrolled .logo img {
    filter: none;
    /* Back to original (black) */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-height);
    padding: 0 40px;
    max-width: 1800px;
    margin: 0 auto;
    position: static;
    /* Use static so mega menu anchors to site-header */
}

.logo-container {
    justify-self: start;
    position: static;
    transform: none;
    flex-shrink: 0;
    z-index: 2;
}

.logo {
    display: block;
}

/* Center the Nav Links - Grid Centered */
.main-nav {
    justify-self: center;
    position: static;
    /* removed absolute */
    transform: none;
    /* removed transform */
    display: flex;
    gap: 24px;
    align-items: center;
    white-space: nowrap;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
    /* Ensure actions are clickable */
}

.nav-link,
.icon-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: inherit;
    /* Inherit white or black from header */
}

/* Specific fix for SVG icons to follow text color */
.icon-link svg {
    stroke: currentColor;
    fill: none;
}

.chevron {
    font-size: 8px;
    margin-top: 1px;
}

.trustpilot-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    /* Inherit color */
}

.tp-stars {
    color: #00b67a;
    letter-spacing: 1px;
}

.star-half {
    position: relative;
    display: inline-block;
    color: #dbdbdb;
}

.tp-stars {
    background: #00b67a;
    color: white;
    padding: 2px 4px;
    font-size: 10px;
    display: flex;
    gap: 2px;
}

.tp-stars {
    background: #00b67a;
    display: flex;
    padding: 3px 6px;
    gap: 2px;
}

.tp-stars .star-icon {
    width: 12px;
    height: 12px;
    background-color: white;
    color: white;
    background: none;
    font-size: 12px;
    line-height: 1;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 10px;
}

.mobile-toggle {
    display: none;
}

/* Hero Section / Carousel */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: -30px;
    /* Pull up behind header/banner but header has margin */
    padding-top: 0;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-section {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Bottom Left Layout */
.hero-section.hero-bl {
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 60px;
    /* Adjusted to match reference spacing */
    padding-left: 60px;
    text-align: left;
}

/* Center Layout for About Bag */
.hero-section.hero-center {
    align-items: center;
    justify-content: center;
    text-align: center;
}


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

.hero-content {
    max-width: 600px;
    padding: 20px;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
    /* Reset padding for BL layout inside content wrapper */
    padding: 0;
}

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

/* Typography matching reference */
.hero-tag {
    display: block;
    font-size: 11px;
    /* Small, concise */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    /* Tight to title */
    color: #fff;
    font-family: var(--font-main);
}

.hero-title {
    font-size: 32px;
    /* Not huge, matching reference scale */
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #fff;
    text-transform: none;
    /* Reference uses Title Case, not all caps */
}

/* Button matching reference */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-text);
}

/* Updated Hero Button with White Border */
.btn-hero {
    background: transparent;
    border: 1px solid #fff;
    /* Thin white border */
    color: #fff;
    min-width: 140px;
    text-align: center;
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 1px;
    backdrop-filter: none;
}

.btn-hero:hover {
    background: #fff;
    color: #000;
}

/* Dark layout overrides (for white/light backgrounds) - Not used in transparent header but kept for reference */
.dark-mode-text .hero-tag {
    color: #fff;
    /* Always white on dark hero images */
}

.dark-mode-text .hero-title {
    color: #fff;
    /* Always white on dark hero images */
}

/* Image Text Section */
.image-text-section {
    padding: 120px 40px;
    text-align: center;
}

.image-text-section h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.link-underline {
    display: inline-block;
    margin-top: 20px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

/* Featured Product Section (Single Product) */
.featured-product-section {
    padding: 80px 40px 120px;
    background: #ffffff;
}

.fp-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.fp-image {
    aspect-ratio: 0.85;
    background: #f4f4f4;
    overflow: hidden;
}

.fp-details {
    padding-right: 40px;
}

.fp-subtitle {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--color-gray);
}

.fp-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.fp-price {
    font-size: 18px;
    margin-bottom: 32px;
    font-weight: 500;
}

.fp-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 16px;
}

.btn-block:hover {
    opacity: 0.9;
    color: var(--color-bg);
    background: var(--color-text);
    /* Keep solid */
}

@media (max-width: 768px) {
    .fp-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .fp-details {
        padding-right: 0;
    }
}

/* Footer Redesign (Responsive) */
/* Footer Redesign (Responsive) */
.new-footer {
    background: #ffffff;
    /* Clean white background like reference */
    padding: 0;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

/* Ensure no gaps in the wrapper */
.site-footer {
    background: #ffffff;
    padding: 0;
    margin: 0;
}

.footer-content-wrapper {
    max-width: 100%;
    /* Full width container, items have padding */
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    flex-direction: column;
}

.footer-col-group {
    display: flex;
    flex-direction: column;
}

.footer-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    /* Slightly smaller to match elegant look */
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    text-transform: uppercase;
}

.footer-menu-item:hover {
    background: #eeeeee;
}

.footer-menu-item .arrow {
    color: #ccc;
    font-weight: 300;
}

/* Socials Row */
.social-icons-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    /* fill: currentColor; Removed to allow inline SVG styles (stroke vs fill) */
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 40px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.trustpilot-widget-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center on mobile */
    gap: 8px;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center on mobile */
    gap: 20px;
}

.payment-methods-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 20px;
    border: 1px solid #eee;
    padding: 2px 4px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    font-size: 10px;
}

.copyright-text {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.5px;
}

/* Desktop Styles (2 Columns) */
@media (min-width: 900px) {
    .new-footer {
        padding: 60px 0;
        /* Vertical padding */
    }

    .footer-columns {
        flex-direction: row;
        gap: 40px;
        /* Reasonable gap */
        justify-content: space-between;
        /* Full width spread */
        padding: 0 40px;
        max-width: 1400px;
        /* Keep content max width but allow spread */
        margin: 0 auto;
        width: 100%;
    }

    .footer-col-group {
        flex: 1;
        /* Grow to fill space */
        max-width: 48%;
        /* Split relatively evenly */
    }

    .footer-menu-item {
        padding: 15px 0;
        /* Less padding, remove border in desktop if preferred or keep lines */
        border-bottom: 1px solid #f5f5f5;
        /* The reference shows lines on desktop too, so keeping border */
    }

    /* Footer Bottom Split */
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        /* Align bottom */
        padding: 20px 0 0 0;
        border-top: none;
        /* Already separated by layout */
    }

    .trustpilot-widget-simple {
        align-items: flex-start;
    }

    .footer-bottom-right {
        align-items: flex-end;
    }
}

/* Shop Page */
.shop-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    /* Ensure top padding accounts for absolute header */
    padding-top: 150px;
}

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

.shop-header h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

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

/* Re-using product card styles but ensuring they exist */
.product-card {
    cursor: pointer;
}

.product-image {
    background: var(--color-light-gray);
    aspect-ratio: 0.8;
    margin-bottom: 16px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: #eaeaea;
    transition: transform 0.6s ease;
}

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

.product-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
}

/* About Page */
.about-section {
    padding: 120px 0;
    padding-top: 150px;
    /* Offset for header */
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 60px;
}

.full-width-image {
    width: 100%;
    height: 60vh;
    background: #f4f4f4;
    margin: 80px 0;
    overflow: hidden;
}

/* Premium Contact Page Styles */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 120px 40px;
    padding-top: 180px;
    /* More top space */
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-container .page-title {
    text-align: center;
    font-size: 2.5rem;
    /* Larger title */
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 0;
    /* Removing side padding for underline style */
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    color: var(--color-text);
    border-radius: 0;
    /* Reset radius */
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
    font-weight: 300;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #000;
}

.form-textarea {
    resize: none;
    min-height: 100px;
    margin-top: 10px;
}

.btn-block {
    margin-top: 20px;
    padding: 18px;
    font-size: 12px;
    letter-spacing: 2px;
    background-color: #000;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-block:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

/* Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #ffffff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

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

.drawer-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.drawer-header h2 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.drawer-content {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    margin-top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray);
    font-size: 14px;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
    background: #ffffff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
    }
}

/* Mobile Menu Drawer - Premium Standard */
.menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Full Width */
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    /* Space for close button */
}

.menu-drawer.active {
    transform: translateX(0);
}

.menu-drawer .drawer-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Close button on right */
    padding: 0 20px;
    border-bottom: none;
    /* Clean header */
}

.menu-drawer .drawer-header h2 {
    display: none;
    /* Hide title, keep pure */
}

.menu-drawer .close-drawer {
    font-size: 32px;
    font-weight: 300;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 30px;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s;
}

/* Primary Links (Shop, Collections, etc) */
.mobile-nav-link.primary {
    font-size: 32px;
    /* Large luxury font */
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

/* Secondary Links (Account, Help) */
.mobile-nav-footer {
    margin-top: auto;
    /* Push to bottom */
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link.secondary {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.drawer-region {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

/* Marquee */
.marquee-section {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Style Grid */
.style-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
        justify-content: center;
    }

    /* Hide desktop nav and actions */
    .main-nav,
    .header-actions {
        display: none;
    }

    .header-right-group {
        display: none;
    }

    .nav-left,
    .nav-right-links,
    .nav-icons {
        display: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 13px;
        text-transform: uppercase;
        position: absolute;
        left: 20px;
        color: inherit;
    }

    .logo-container {
        /* Center logo on mobile */
        margin: 0 auto;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-section.hero-bl {
        padding-bottom: 60px;
        padding-left: 20px;
        align-items: flex-end;
        justify-content: flex-start;
    }
}

/* -----------------------------------------------------------------------------
   NEW HOME SECTIONS (Refined Layout)
   ----------------------------------------------------------------------------- */
/* ...previous new section styles... */
.product-strip-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.product-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.strip-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.strip-item:hover {
    transform: translateY(-5px);
}

.strip-img {
    height: 90px;
    /* Reduced from 120px */
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.strip-name {
    font-size: 11px;
    /* Slightly smaller text */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: #000;
}

.strip-number {
    font-size: 10px;
    vertical-align: super;
}

/* Split Banner / Product Feature (Big Cards) */
.split-banner {
    display: flex;
    flex-wrap: wrap;
    min-height: 65vh;
    /* Reduced from 80vh */
    /* Large impactful height */
}

.split-col {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: transform 0.7s ease;
}

.split-col:hover .split-bg-img {
    transform: scale(1.03);
}

.split-content {
    text-align: center;
    color: #fff;
    /* Assuming dark image, adjust if light */
    z-index: 2;
    padding: 40px;
}

/* Ensure text readable on light images */
.split-content.dark-text {
    color: #000;
}

.split-title {
    font-size: 36px;
    /* Reduced from 42px */
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Secondary Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Match previous slider height */
    overflow: hidden;
    background: #000;
}

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

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    /* Scale up to hide edges/UI */
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    pointer-events: none;
    /* Disable interaction */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Just to block clicks */
    z-index: 2;
}


/* Info Grid (4 blocks) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(400px, auto);
}

.info-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    /* Slight border */
    overflow: hidden;
    text-decoration: none;
    color: #000;
}

.info-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: transform 0.6s ease;
}

.info-block:hover .info-bg {
    transform: scale(1.05);
}

.info-content {
    text-align: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    /* readable text box */
    padding: 20px 40px;
    backdrop-filter: blur(5px);
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Instagram Feed */
.instagram-section {
    padding: 80px 40px;
    text-align: center;
}

.instagram-title {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.instagram-handle {
    font-size: 24px;
    margin-bottom: 40px;
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.instagram-handle:hover {
    border-bottom-color: #000;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.insta-item {
    aspect-ratio: 1;
    background: #f4f4f4;
    overflow: hidden;
    position: relative;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (max-width: 768px) {
    .split-banner {
        flex-direction: column;
        height: auto;
    }

    .split-col {
        height: 50vh;
        /* Reduced from 60vh */
        width: 100%;
    }

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

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

/* Drop Section (New) */
.drop-section {
    padding: 60px 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.drop-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-family: inherit;
    /* Ensure it matches site font */
}

.drop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 40px;
}

.drop-item {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.drop-img-wrap {
    background-color: #f6f6f6;
    /* Light gray background for the card */
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 1;
    /* Square aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-item.empty {
    pointer-events: none;
}

.drop-img-wrap {
    background-color: #f7f7f7;
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.plus-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    color: #000;
}

.drop-info {
    text-align: left;
}

.drop-brand {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
    letter-spacing: 0.5px;
}

.drop-name {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #000;
}

.drop-sub {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.drop-price {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-top: 8px;
}

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

@media (max-width: 480px) {
    .drop-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force side-by-side on mobile */
    }

    .product-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* Force side-by-side */
        gap: 20px;
        padding: 0 10px;
    }

    .strip-item {
        width: 100%;
    }
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    /* Below site-header */
    left: 0;
    width: 100%;
    /* Full width of site-header */
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 40px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    text-align: left;
    color: #000;
}

.nav-item.has-mega-menu {
    position: static;
    /* Essential for mega menu to escape */
    display: inline-block;
    height: 100%;
}

.nav-item.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dark Header for Inner Pages */
body.dark-header .site-header {
    background: #fff;
    color: #000;
    position: relative;
    /* Ensure it starts in flow */
    top: 0;
}

body.dark-header .site-header .logo img {
    filter: none;
    /* Black logo */
}

body.dark-header .nav-link,
body.dark-header .header-actions {
    color: #000;
}

body.dark-header .announcement-bar {
    position: relative;
    z-index: 102;
    background: #000;
    color: #fff;
    display: flex;
    /* Ensure it stays visible */
}


.mega-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: flex-start;
    /* Align start to group Links and Products */
    gap: 80px;
    /* Space between Links and Products */
    padding: 0;
}



.mega-col.links-col {
    /* flex: 0 0 200px; removed */
    border-right: none;
    /* Removed border */
    padding-right: 0;
    /* Removed padding */
    margin-right: 0;
    width: 200px;
    /* Fixed width for better alignment */
}

.mega-col.style-col {
    margin-right: 0;
    /* Products next to collections */
    /* flex: none; removed */
    /* Override any default flex-basis */
}

.mega-col.feature-col {
    margin-left: auto;
    display: flex;
    gap: 30px;
    /* flex: 2; removed */
}

.mega-heading {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

/* Links Column */
.mega-links {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.mega-links li {
    margin-bottom: 12px;
}

.mega-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: color 0.2s;
    font-weight: 400;
}

.mega-links a:hover {
    color: #555;
}

.mega-links a.highlight {
    color: #000;
}

.btn-black {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

/* Products Column */
.mega-product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-prod-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #000;
    transition: transform 0.2s;
}

.mega-prod-item span {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.mega-prod-item:hover {
    transform: translateX(5px);
}

.mega-prod-item img {
    width: 220px;
    height: auto;
    object-fit: contain;
    background: transparent !important;
    padding: 0;
}

.mega-prod-item span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Feature Column */
.mega-feature {
    position: relative;
    flex: 1;
    height: 300px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
}

.mega-feature .feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mega-feature:hover .feature-img {
    transform: scale(1.05);
}

.feature-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 2;
}

.feature-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-link {
    font-size: 11px;
    text-decoration: underline;
    text-transform: uppercase;
}

/* Shop Header Hero - New Addition */
.shop-header-hero {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 60px;
    /* Match standard padding */
    margin-top: -30px;
    /* Pull behind transparent header */
    color: white;
    overflow: hidden;
}

.shop-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* Dark overlay */
    backdrop-filter: blur(8px);
    /* Stronger blur as per user request 'difuminada' */
    z-index: 1;
}

.shop-header-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
    /* Space for the header */
}

.breadcrumbs {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    opacity: 0.8;
    font-weight: 500;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.shop-main-title {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -1.5px;
}

.shop-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
    max-width: 550px;
}

/* Adjust shop section padding since header is now handled by hero */
.shop-section {
    padding-top: 80px !important;
    /* Override previous 150px */
}

@media (max-width: 768px) {
    .shop-header-hero {
        height: 400px;
        padding: 0 20px;
    }

    .shop-main-title {
        font-size: 36px;
    }

    .shop-header-content {
        padding-top: 60px;
    }
}

/* Members Page Styles */
.members-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: #fff;
}

.members-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.members-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.auth-section {
    padding: 80px 20px;
}

.auth-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px;
}

.auth-col {
    flex: 1;
}

.auth-divider {
    width: 1px;
    background: #e0e0e0;
}

.auth-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.auth-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.forgot-password {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: #666;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .auth-container {
        flex-direction: column;
        gap: 40px;
    }

    .auth-divider {
        display: none;
    }
}

/* Mobile Header Layout Update */
@media (max-width: 900px) {
    .site-header {
        height: 60px;
        padding: 0;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 20px;
        height: 100%;
        position: relative;
        /* Needed for absolute positioning of logo */
    }

    /* 1. Hamburger Icon on Left */
    .mobile-toggle {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 20;
    }

    .mobile-toggle span {
        display: none;
    }

    .mobile-toggle svg {
        width: 24px;
        height: 24px;
        stroke-width: 1.5;
        /* Crisp thin lines */
    }

    .mobile-toggle::before {
        display: none;
        /* Remove old CSS hack */
    }

    /* 2. Center Logo - Absolute Positioning */
    .logo-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        margin: 0;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        height: 62px !important;
        /* Increased to 42px per user request */
        width: auto;
        /* Maintain aspect ratio */
    }

    /* 3. Icons on Right */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        /* Reduced gap slightly */
        z-index: 20;
        /* Natural flow puts it at the end with space-between */
        margin-left: auto;
        /* CRITICAL: Force to right side */
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 15px;
        /* Slightly looser */
    }

    .cart-count {
        display: none;
        /* Clean look, no number */
    }

    .trustpilot-widget {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .icon-link svg {
        width: 22px;
        height: 22px;
        stroke-width: 1.5;
        /* Uniform stroke with hamburger */
    }
}

/* =========================================
   GLOBAL MOBILE ADAPTATION (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    /* 1. Global Typography & Spacing */
    :root {
        --header-height: 60px;
    }

    body {
        font-size: 14px;
        /* Slightly smaller body text */
    }

    h1,
    .hero-title,
    .shop-main-title {
        font-size: 32px !important;
        /* Prevent huge headings */
        line-height: 1.2;
    }

    h2,
    .section-title,
    .auth-heading {
        font-size: 24px !important;
    }

    .container,
    .shop-container,
    .drop-section,
    .members-hero,
    .auth-container {
        padding-left: 10px !important;
        /* Maximize width */
        padding-right: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    section {
        padding-top: 30px !important;
        /* Tighter vertical spacing */
        padding-bottom: 30px !important;
    }

    /* 2. Hero Sections Detailed Refinement */
    .hero-slide,
    .hero-section {
        height: 60vh !important;
        min-height: 400px;
    }

    .hero-content {
        position: absolute;
        bottom: 30px;
        left: 20px;
        text-align: left;
        width: auto;
        padding: 0;
        transform: none;
    }

    .hero-tag {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 8px;
        display: block;
        text-transform: uppercase;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.1;
        margin-bottom: 20px;
        font-weight: 500;
        text-transform: none;
    }

    .btn.btn-hero {
        background: transparent;
        border: 1px solid #fff;
        color: #fff;
        padding: 12px 24px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        min-width: 0;
        width: auto;
        display: inline-block;
        margin-top: 0;
    }

    .product-strip-section {
        padding-top: 20px !important;
        /* User requested ~20px gap */
        margin-top: 0 !important;
        /* Revert negative margin */
        position: relative;
        z-index: 1;
        /* Normal stacking */
    }

    .hero-wrapper {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        height: 60vh !important;
        /* Restore explicit height matching slides */
        display: block;
        position: relative;
    }

    /* 3. Product Grids (Maximize Space) */
    .drop-grid,
    .shop-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        row-gap: 24px !important;
    }

    /* Product Strip (Below Hero) - Force 2 cols */
    .product-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-content: center;
        margin-top: 0 !important;
    }

    .strip-item {
        width: 100%;
        margin: 0 !important;
    }

    /* 4. Footer Stacking */
    .footer-inner {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        margin-top: 10px;
    }

    /* 5. Members Page Special */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .auth-container {
        flex-direction: column;
        padding: 0;
    }

    .auth-divider {
        display: none;
    }

    .auth-col {
        width: 100%;
        margin-bottom: 40px;
    }

    /* 6. About & Contact Pages */
    .about-hero,
    .contact-hero {
        padding-top: 100px;
    }

    .about-content-row,
    .contact-layout {
        flex-direction: column;
    }

    .about-image,
    .about-text,
    .contact-info,
    .contact-form-container {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* =========================================
   PRODUCT PAGE REDESIGN (REF: IMAGE)
   ========================================= */
.product-main-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px 100px;
}

.product-breadcrumbs {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.product-breadcrumbs a {
    color: #888;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: #000;
}

.product-grid-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    /* Image column wider */
    gap: 60px;
}

/* Gallery */
.product-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-frame {
    width: 100%;
    background: #f6f6f6;
    /* Light gray background like ref */
    border-radius: 4px;
    /* Slight round */
    overflow: hidden;
}

.p-main-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Helps if image has white bg */
}

.dark-mode .p-main-img {
    mix-blend-mode: normal;
}

/* Reset for dark mode if needed */

.p-thumbs-row {
    display: flex;
    gap: 10px;
}

.p-thumb {
    width: 80px;
    height: 80px;
    background: #f6f6f6;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
}

.p-thumb.active {
    border-color: #000;
}

.p-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Sticky Details */
.product-details-col {
    position: sticky;
    top: 100px;
    /* Adjust based on header */
    height: fit-content;
}

.p-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.p-price {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.p-section-label {
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
    display: block;
}

/* Colors */
.p-colors-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.color-swatch {
    width: 60px;
    height: 40px;
    /* Rectangular as per ref */
    background: #f6f6f6;
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.color-swatch.active {
    border: 1px solid #000;
}

.color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Size Grid - Critical Match */
.p-size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.size-chart-link {
    font-size: 12px;
    text-decoration: underline;
    color: #666;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 per row */
    gap: 8px;
    margin-bottom: 15px;
}

.size-btn {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 12px 0;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    color: #000;
}

.size-btn:hover {
    border-color: #000;
}

.size-btn:focus,
.size-btn.selected {
    border-color: #000;
    background: #000;
    color: #fff;
}

.size-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    text-decoration: line-through;
    border-color: #eee;
}

.size-notification-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-decoration: underline;
    color: #444;
    margin-bottom: 30px;
    cursor: pointer;
}

/* Buttons */
.btn-add-cart {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 2px;
}

.btn-add-cart:hover {
    background: #333;
}

.btn-shop-pay {
    width: 100%;
    background: #5a31f4;
    /* Shop Pay Purple */
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
}

.shop-logo {
    font-weight: 800;
    font-family: sans-serif;
    letter-spacing: -0.5px;
}

/* Payment & Shipping */
.payment-icons-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pay-icon {
    border: 1px solid #eee;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 10px;
    color: #666;
}

.shipping-info-box {
    margin-bottom: 30px;
}

.ship-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
}

/* Trustpilot Widget */
.tp-widget-product {
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.tp-logo-row {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tp-stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
}

.green-box {
    background: #00b67a;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.gray-box {
    background: #dbdbdb;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.tp-score {
    font-size: 12px;
    color: #666;
}

/* Mobile Responsive */
@media(max-width: 900px) {
    .product-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-details-col {
        position: static;
    }

    .product-main-wrapper {
        padding: 20px;
    }
}

/* Utility Class for White Header with Black Text */
.header-dark {
    color: #000 !important;
    background-color: #fff !important;
}

.header-dark .logo img {
    filter: invert(1);
    /* If logo is white by default, invert it to black. If already black, remove this. */
}

/* Assuming logo.png is white text for the dark hero. Let's verify logo first. */
/* ... existing code ... */

/* Brand Values Section (ICARO 3-Column) */
.values-section {
    padding: 100px 40px;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.values-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.values-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--color-gray);
}

.values-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    /* Square images as per reference */
    background: #f9f9f9;
    margin-bottom: 32px;
    overflow: hidden;
    position: relative;
}

.values-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.values-col:hover .values-img {
    transform: scale(1.03);
}

.values-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #000;
}

.values-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray);
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .values-col {
        text-align: center;
    }
}

/* Newsletter Section Optimization */
.newsletter-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 40px auto 0;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #000;
    outline: none;
    text-align: center;
}

.newsletter-input::placeholder {
    color: #666;
    opacity: 1;
}

.newsletter-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    /* Slightly larger arrow */
    color: #000;
    padding: 0 10px;
    transition: transform 0.3s ease;
    line-height: 1;
}

.newsletter-btn:hover {
    transform: translateX(3px);
}

/* Instagram Feed Section */
.instagram-feed-section {
    padding: 0;
    /* Full width, no vertical padding */
    width: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.instagram-title {
    font-size: 24px;
    margin: 40px 0 20px 40px;
    /* Spacing for title */
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 columns */
    gap: 0;
    /* No gap for seamless look, or maybe 1px if border needed? Image shows NO gap. */
    width: 100%;
    max-width: 100%;
}

.gram-item {
    aspect-ratio: 1;
    background-color: #eee;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
}

.gram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

/* Hover Overlay - Cleens Style (Darken slightly with Icon) */
.gram-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add Instagram Icon on Hover */
.gram-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='32px' height='32px'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gram-item:hover::after {
    opacity: 1;
}

.gram-item:hover::before {
    opacity: 1;
}

.gram-item:hover img {
    /* Slight zoom on hover */
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .instagram-grid {
        /* Mobile: 3 columns */
        grid-template-columns: repeat(3, 1fr);
    }
}

/* About Hero (Refactored from inline) */
.about-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: -30px;
    /* Pull up behind header/announcement bar */
}

/* Ensure overlay covers correctly */
.about-hero .hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 2;
}

/* Returns Page */
.returns-section {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--color-bg);
    min-height: 60vh;
    /* Ensure footer pushes down */
}

.returns-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.divider-line {
    margin-top: 40px;
    height: 1px;
    background: #eee;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Section (Infinite Marquee) */
.reviews-section {
    padding: 60px 0;
    /* Removed side padding for full width */
    background: #fff;
    text-align: center;
    border-top: 1px solid #f5f5f5;
    overflow: hidden;
    /* Essential for marquee */
    width: 100%;
}

.reviews-container {
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
}

.reviews-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: fit-content;
    /* Allow track to grow */
    animation: marquee 40s linear infinite;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ensure track has enough width for the animation to be smooth */
.reviews-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: max-content;
    /* Ensure it doesn't wrap */
    animation: marquee 60s linear infinite;
    /* Slower for premium feel */
    will-change: transform;
    /* Optimize performance */
}

/* Pause on Hover (Optional, good UX) */
.reviews-track:hover {
    animation-play-state: paused;
}

/* Review Card */
.review-card {
    flex: 0 0 320px;
    /* slightly wider */
    text-align: left;
    padding: 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    /* Clean look */
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* New Clean Stars */
.star-icon {
    width: 16px;
    height: 16px;
    fill: #000;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
    /* Push to right */
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    font-size: 12px;
    color: #999;
}

.review-author {
    font-weight: 500;
    color: #000;
}

@media (max-width: 768px) {
    .reviews-track {
        animation-duration: 30s;
        /* Faster on mobile */
    }

    .review-card {
        flex: 0 0 280px;
        padding: 15px;
    }
}