/* ─── Design tokens ───────────────────────────────────────────────────────── */
:root {
    /* Z-index scale — one source of truth; never use raw numbers elsewhere */
    --z-logo:       998;
    --z-mobile-nav: 999;
    --z-header:    1000;
    --z-editorial: 1001;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility */
.text-underline { text-decoration: underline; }

body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    /* overflow-x: clip (not hidden) keeps position:sticky functional in Chrome/Chromium */
    overflow-x: clip;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 45px;
    background-color: #FFFFFF;
    z-index: var(--z-header);
}

.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
}

.language-selector {
    position: relative;
    margin-left: 40px;
    width: 71px;
    height: 16px;
    opacity: 1;
    cursor: pointer;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.language-current svg {
    width: 7px;
    height: 5px;
}

/* Active state - fade current selector when open */
.language-selector.open .language-current {
    opacity: 0.5;
}

/* Dropdown */
.language-dropdown {
    position: absolute;
    top: 29px;
    left: -4px;
    background-color: #FFFFFF;
    padding: 10px;
    display: none;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-selector.open .language-dropdown {
    display: block;
}

.language-option {
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.language-option:hover {
    opacity: 0.7;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-item-with-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 36px;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.21em;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: font-size 0.3s ease, font-weight 0.3s ease;
}

.nav-link:hover {
    font-size: 18px;
    font-weight: 700;
}

/* Sign in link - different hover behavior */
.sign-in-link {
    transition: opacity 0.3s ease;
}

.sign-in-link:hover {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.5;
}

/* Editorial Full-Page Overlay */
.editorial-dropdown-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: var(--z-editorial);
    cursor: pointer;
}

.editorial-dropdown-overlay.active {
    display: block;
}

/* Positioned dynamically by JS to align under the Editorial nav link */
.editorial-dropdown {
    position: absolute;
    left: 0;
    top: 4px;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 6px;
    width: 116px;
}

/* Component 6 — EDITORIAL label, bold 18px, centered in 117×36px row */
.dropdown-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 117px;
    height: 36px;
}

.dropdown-header span {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Frame 21 — menu items container */
.dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    width: 69px;
}

/* Each item: 69×30px, padding 10px, regular 13px */
.dropdown-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    width: 69px;
    height: 30px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.dropdown-item:hover {
    opacity: 0.7;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 40px;
}

.cart-button {
    width: 17px;
    height: 17px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Hero Section with Video */
.hero {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 45px auto 0; /* 45px = header height */
    height: 844px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*
 * Logo — sticky overlay with CSS-only adaptive colour.
 *
 * Why sticky + mix-blend-mode on the CONTAINER (not the SVG):
 *  - position:fixed creates a separate GPU compositing layer in Chromium,
 *    which breaks mix-blend-mode against the page. Sticky keeps the element
 *    in the same layer as its scroll parent.
 *  - overflow-x:clip on <body> (above) is required; overflow-x:hidden would
 *    silently disable sticky in Chrome.
 *  - The blend mode must be on .logo-container, not on .logo. Applying it
 *    to both creates a nested stacking context: the SVG would then blend
 *    against the container's transparent background (a no-op) instead of
 *    the actual page content.
 *  - Known limitation: browser video elements render in a separate hardware
 *    overlay layer; blend modes cannot composite against them in Chrome.
 */
.logo-container {
    position: sticky;
    top: 0;
    height: 215px;
    margin-bottom: -215px; /* pulls following content up; logo takes no flow space */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: var(--z-logo);
    mix-blend-mode: difference; /* blend the whole container group against the page */
}

.logo {
    width: 1402px;
    max-width: 97%;
    height: auto;
    display: block;
    pointer-events: none;
    color: white; /* currentColor on SVG paths → white pixels enable difference inversion */
    /* NO mix-blend-mode here — the container handles it */
}

/* Product Showcase - New (y: 989 from top of page) */
.product-showcase {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.product-new {
    margin-top: 100px;
}

.product-container {
    position: relative;
    width: 566px;
    height: 572px;
    margin: 0 auto;
    margin-left: 437px;
}

.product-new .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-new .product-badge {
    position: absolute;
    left: 50%;
    top: var(--badge-y, 50%);
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.badge-text {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 1em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Description Sections */
.description-section {
    width: 715px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 40px 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.description-section:hover {
    opacity: 0.5;
}

.desc-1,
.desc-2 {
    margin-top: 30px;
}

.description-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.15em;
    text-align: center;
    color: #000000;
    width: 100%;
}

.description-text {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15em;
    text-align: center;
    color: #000000;
    width: 100%;
    max-width: 647px;
}

/* Product Showcase - Bestseller (y: 1745) */
.product-bestseller {
    margin-top: 130px;
}

.product-container-bestseller {
    position: relative;
    width: 1200px;
    height: 759px;
    margin: 0 auto;
    margin-left: 120px;
}

.product-bestseller .product-image-bestseller {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-bestseller .product-badge-bestseller {
    position: absolute;
    left: 50%;
    top: var(--bestseller-badge-y, 50%);
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Collections Section (y: 2688) */
.collections-section {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.collection-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 68px;
}

.collection-item:hover .collection-image {
    transform: scale(1.05);
}

.collection-large {
    width: 100%;
    max-width: 978px;
    height: 475px;
    margin: 0 auto 68px;
}

.collection-row {
    display: flex;
    justify-content: flex-start;
    gap: 68px;
    max-width: 978px;
    margin: 0 auto;
}

.collection-small {
    width: 455px;
    height: 455px;
    flex-shrink: 0;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

/* Image visible by default, video hidden */
.collection-img {
    opacity: 1;
    z-index: 1;
}

.collection-video {
    opacity: 0;
    z-index: 2;
}

/* Collection 01 — hover shows video */
#collection-01:hover .collection-img  { opacity: 0; }
#collection-01:hover .collection-video { opacity: 1; }

/* Collections 02 & 03 — hover swaps to DTS_MISC image */
.collection-hover-img {
    opacity: 0;
    z-index: 2;
}

#collection-02:hover .collection-img,
#collection-03:hover .collection-img       { opacity: 0; }

#collection-02:hover .collection-hover-img,
#collection-03:hover .collection-hover-img { opacity: 1; }

.collection-title {
    position: absolute;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(18px, 2.8vw, 40px);
    line-height: 1em;
    text-transform: uppercase;
    color: #FFFFFF;
    bottom: 202px;
    left: 78.94px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 999;
}

.collection-large .collection-title {
    font-size: clamp(30px, 4.2vw, 60px);
    bottom: 199px;
    left: 265.94px;
    z-index: 999;
}

/* Scrolling Text Section */
.scrolling-text-section {
    width: 100%;
    max-width: 1440px;
    margin: 90px auto 0;
    overflow: hidden;
    background-color: #000000;
    padding: 0;
    height: 85px;
}

.scrolling-text {
    display: flex;
    animation: scroll-left 10s linear infinite;
    height: 85px;
}

.scrolling-content {
    display: flex;
    align-items: center;
    gap: 95px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 95px;
}

.scroll-item {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 78px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.scroll-arrow {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    color: white; /* currentColor on symbol path → white fill */
}

/* Flip every second arrow to create ← → ← → alternation */
.scroll-arrow-flip {
    transform: scaleX(-1);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* Features Section (y: 4003) */
.features-section {
    width: 100%;
    max-width: 1092px;
    margin: 225px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 126px;
}

.feature-item {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.15em;
    text-transform: uppercase;
    color: #000000;
}

.feature-text {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15em;
    color: rgba(0, 0, 0, 0.6);
    width: 100%;
}

/* FAQ Section (y: 4239) */
.faq-section {
    width: 100%;
    max-width: 1440px;
    min-height: 645px;
    margin: 236px auto 0;
    background-color: #000000;
    padding: 100px 174px;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.faq-main-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
}

.faq-subtitle {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15em;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
    max-width: 605px;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.faq-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 0.5px solid #828282;
    border-radius: 100px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    /* Avoid transition:all — it's wasteful and can cause unexpected animated properties */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.faq-tab:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.faq-tab.active {
    background-color: #FFFFFF;
    color: #000000;
}

.faq-accordions {
    width: 100%;
    max-width: 1092px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accordion-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.accordion-header svg {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15em;
    color: rgba(255, 255, 255, 0.6);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Homepage Button — sits between contact section and footer */
.homepage-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 36px;
    width: 95px;
    margin-left: 10px;
    margin-top: 40px;
    background-color: transparent;
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s;
}

.homepage-button:hover {
    opacity: 0.5;
}

/* Contact Section (y: 4984) */
.contact-section {
    width: 100%;
    max-width: 1092px;
    margin: 100px auto 0;
    display: flex;
    gap: 74px;
}

.contact-intro {
    width: 375px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1em;
    text-transform: uppercase;
    color: #000000;
}

.contact-description {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15em;
    color: #000000;
    width: 100%;
    max-width: 304px;
}

.contact-form {
    width: 644px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.form-radio-group {
    display: flex;
    align-items: center;
    gap: 21px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15em;
    color: #000000;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-circle {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.radio-option input[type="radio"]:checked + .radio-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #000000;
    border-radius: 50%;
}

.form-row {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.form-field {
    flex: 1;
    position: relative;
    height: 52px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.form-field input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    background: transparent;
    padding: 18px 10px 4px;
    box-sizing: border-box;
}

/* Floating label — sits in the middle like a placeholder by default */
.floating-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

/* Float up when input is focused or has content */
.form-field input:focus ~ .floating-label,
.form-field input:not(:placeholder-shown) ~ .floating-label {
    top: 8px;
    transform: translateY(0);
    font-size: 10px;
    color: rgba(0, 0, 0, 0.4);
}

.form-select {
    position: relative;
}

/* Style the select like the other inputs */
.form-select select {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #000000;
    padding: 18px 30px 4px 10px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Hide the native arrow */
.form-select select::-ms-expand {
    display: none;
}

/* Float label up when an option is selected */
.form-select select:focus ~ .floating-label,
.form-select select:not([value=""]):valid ~ .floating-label {
    top: 8px;
    transform: translateY(0);
    font-size: 10px;
    color: rgba(0, 0, 0, 0.4);
}

.form-select .select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-checkbox input[type="checkbox"] {
    width: 17px;
    height: 17px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.form-checkbox label {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15em;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.submit-button {
    width: 140px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    background-color: #000000;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.15em;
    color: #FFFFFF;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-button:hover {
    opacity: 0.8;
}

/* Footer (y: 5381) */
.footer {
    width: 100%;    
    max-width: 1440px;
    height: 309px;
    margin: 1px auto 0;
    background-color: #F8F9F8;
    padding: 32px 60px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 37px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-heading {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.15em;
    text-transform: uppercase;
    color: #000000;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 19px;
    opacity: 0.6;
}

.footer-menu li a {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.15em;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-menu li a:hover {
    opacity: 0.7;
}

.footer-column.newsletter {
    flex-shrink: 0;
    width: 393px;
}

.newsletter-input {
    width: 100%;
    max-width: 393px;
    height: 37px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.5px solid #000000;
}

.newsletter-input input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.15em;
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-button {
    width: 100%;
    max-width: 393px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #E0E0E0;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.15em;
    color: #000000;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 20px;
}

.newsletter-button:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.copyright,
.credit {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.15em;
    color: #000000;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — all viewports below 1440 px
   ═══════════════════════════════════════════════════ */
@media (max-width: 1440px) {

    /* Full-bleed sections */
    .hero,
    .scrolling-text-section,
    .faq-section,
    .footer {
        width: 100%;
    }

    /* Logo — container stretches full-width; SVG already has max-width:97% */
    .logo-container { width: 100%; }

    /* Hero — scales height with viewport, never taller than design */
    .hero {
        height: clamp(350px, 58vw, 844px);
    }
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Product NEW — fluid width + proportional height */
    .product-container {
        width: min(566px, 80%);
        height: auto;
        aspect-ratio: 566 / 572;
        margin-left: auto;
        margin-right: auto;
    }

    /* Product BESTSELLER — fluid width + proportional height */
    .product-container-bestseller {
        width: 90%;
        height: auto;
        aspect-ratio: 1200 / 759;
        margin-left: auto;
        margin-right: auto;
    }

    /* Section wrappers */
    .collections-section,
    .features-section,
    .contact-section,
    .description-section {
        width: 90%;
        max-width: 1092px;
    }

    /* Collections — fluid height via aspect-ratio */
    .collection-large {
        width: 100%;
        height: auto;
        aspect-ratio: 978 / 475;
        margin: 0 0 40px 0;
        max-width: 978px;
    }

    /* Row gap shrinks with viewport; items wrap before overflowing */
    .collection-row {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .collection-small {
        flex: 1 1 280px;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 455px;
    }

    /* Collection titles — percentage-based so they scale with the container
       Values match Figma at 1440 px:
         small  bottom:44%≈202px left:17%≈78px  on 455×455
         large  bottom:42%≈199px left:27%≈264px on 978×475  */
    .collection-title {
        bottom: 44%;
        left: 17%;
    }
    .collection-large .collection-title {
        bottom: 42%;
        left: 27%;
    }

    /* Features — gap and items compress gracefully */
    .features-section {
        gap: clamp(24px, 6vw, 126px);
        flex-wrap: wrap;
    }
    .feature-item {
        flex: 1 1 200px;
        min-width: 0;
    }

    /* FAQ */
    .faq-section {
        padding: 100px 5%;
    }

    /* Contact — form grows to fill available space */
    .contact-intro {
        flex-shrink: 0;
    }
    .contact-form {
        flex: 1;
        width: auto;
        min-width: 0;
    }
}

/* ═══════════════════════════════════════════════════
   HAMBURGER BUTTON (hidden on desktop)
   ═══════════════════════════════════════════════════ */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 1px;
    background: #000000;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

/* Hamburger → ✕ when menu is open */
.hamburger-btn.open .hamburger-line:nth-child(1) {
    transform: translateY(4.5px) rotate(38deg);
}
.hamburger-btn.open .hamburger-line:nth-child(2) {
    transform: translateY(-4.5px) rotate(-38deg);
}

/* ═══════════════════════════════════════════════════
   MOBILE NAV — full-screen white overlay (hidden on desktop)
   ═══════════════════════════════════════════════════ */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 45px;             /* sits below the fixed header */
    left: 0;
    width: 100vw;
    height: calc(100vh - 45px);
    background: #FFFFFF;
    z-index: var(--z-mobile-nav); /* below header so header stays on top */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-nav-drawer.open {
    opacity: 1;
    pointer-events: auto;
}

/* Nav links — centered, ~113px below overlay top = 68px below header */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    margin-top: 68px;
}

.mobile-nav-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 4px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    height: 36px;
    white-space: nowrap;
}

.mobile-nav-editorial {
    background: none;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: font-size 0.2s ease, font-weight 0.2s ease;
}

.mobile-nav-editorial svg {
    width: 10px;
    height: 8px;
    flex-shrink: 0;
}

/* Editorial group wraps the trigger + submenu */
.mobile-editorial-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Submenu — hidden by default */
.mobile-editorial-submenu {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 6px 0 30px;
    gap: 15px;
    width: 136px;
}

/* Submenu items */
.editorial-sub-link {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.editorial-sub-link:hover {
    opacity: 0.6;
}

/* ── Editorial OPEN state ── */

/* Show the submenu */
.mobile-nav-editorial[aria-expanded="true"] + .mobile-editorial-submenu,
.mobile-editorial-submenu.open {
    display: flex;
}

/* Enlarge the editorial label to 24px bold */
.mobile-nav-editorial[aria-expanded="true"] .editorial-label {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

/* Match the 46px height from Figma when open */
.mobile-nav-editorial[aria-expanded="true"] {
    height: 46px;
    gap: 4px;
}

/* PLAIMANAS logo — black, pinned to bottom */
.mobile-nav-logo {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 377px;
    max-width: 97vw;
    pointer-events: none;
}

.mobile-nav-logo__svg {
    color: #000000; /* currentColor on symbol paths → black fill */
    display: block;
}

/* ═══════════════════════════════════════════════════
   MOBILE — 390px Figma spec
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Header ── */
    .header-container {
        padding: 0 14px;
    }

    .language-selector {
        display: flex;
        align-items: center;
        width: 78px;
        height: 0px;
    }

    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .mobile-nav-drawer {
        display: flex; /* show it (opacity:0 until .open is added) */
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* ── Logo ── */
    .logo-container {
        height: 215px;
        width: 100%;
    }

    .logo {
        width: 97%;
        max-width: 100%;
        height: auto;
    }

    /* ── Hero ── */
    .hero {
        margin-top: 45px;
        width: 100%;
        max-width: 100%;
        height: 713px;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ── Product NEW ── */
    .product-showcase.product-new {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 0;
        margin: 0;
        width: 100%;
    }

    .product-container {
        width: 282px;
        height: 285px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    /* Use higher specificity to win over desktop .product-new .product-image */
    .product-new .product-image {
        width: 282px;
        height: 285px;
        object-fit: cover;
        display: block;
    }

    /* Override desktop left: 169px */
    .product-new .product-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        height: 52px;
        width: 91px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .badge-text {
        font-size: 40px;
        line-height: 52px;
    }

    /* ── Description sections ── */
    .description-section {
        width: 342px;
        margin: 0 auto;
        padding: 30px 0;
        text-align: center;
    }

    .description-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 16px;
        margin-bottom: 14px;
    }

    /* Override desktop width: 647px */
    .description-text {
        width: 100%;
        max-width: 342px;
        font-size: 12px;
        line-height: 16px;
    }

    /* ── Product BESTSELLER ── */
    .product-showcase.product-bestseller {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 0;
        margin: 0;
        width: 100%;
    }

    .product-container-bestseller {
        width: 346px;
        height: 219px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    /* Use higher specificity to win over desktop .product-bestseller .product-image-bestseller */
    .product-bestseller .product-image-bestseller {
        width: 100%;
        height: 219px;
        object-fit: cover;
        display: block;
    }

    /* Override desktop left: 371px */
    .product-bestseller .product-badge-bestseller {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        height: 52px;
        width: 220px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    /* ── Collections ── */
    .collections-section {
        width: 346px;
        margin: 0 auto;
        padding: 40px 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    /* Remove desktop margin-bottom from collection items inside the flex layout */
    .collection-item {
        margin-bottom: 0;
    }

    .collection-large {
        width: 346px;
        height: 167px;
        flex-shrink: 0;
        margin: 0;           /* Override desktop margin: 0 auto 68px */
    }

    /* Reset desktop fixed-offset title positions */
    .collection-title {
        bottom: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .collection-large .collection-title {
        bottom: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .collection-row {
        display: contents;
    }

    .collection-small {
        width: 161px;
        height: 161px;
    }

    /* ── Scrolling Text ── */
    .scrolling-text-section {
        height: 85px;
        padding: 0;
        margin-top: 0;
        overflow: hidden;
    }

    .scrolling-content {
        gap: 20px;
        padding-right: 20px;
    }

    .scroll-item {
        font-size: 24px;
        line-height: 31px;
    }

    .scroll-arrow {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    /* ── Features ── */
    .features-section {
        flex-direction: column;
        width: 346px;
        margin: 0 auto;
        gap: 48px;
        padding: 60px 0;
        align-items: flex-start;
    }

    .feature-item {
        width: 100%;
    }

    .feature-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 18px;
        margin-bottom: 14px;
    }

    .feature-text {
        font-size: 14px;
        line-height: 16px;
        color: rgba(0, 0, 0, 0.6);
    }

    /* ── FAQ ── */
    .faq-section {
        padding: 50px 22px;    /* Override desktop 100px 174px */
        margin-top: 0;
    }

    .faq-main-title {
        font-size: 24px;
        line-height: 100%;
    }

    /* Override desktop width: 605px */
    .faq-subtitle {
        width: 100%;
    }

    .faq-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 346px;
        margin: 0 auto 30px;
    }

    .faq-accordions {
        width: 100%;
        max-width: 100%;
    }

    .accordion-header span {
        font-size: 16px;
        line-height: 18px;
    }

    .accordion-content p {
        font-size: 14px;
        line-height: 16px;
    }

    /* ── Contact ── */
    .contact-section {
        flex-direction: column;
        width: 346px;
        margin: 0 auto;
        padding: 60px 0;
        gap: 60px;
    }

    .contact-intro,
    .contact-form {
        width: 100%;
    }

    .contact-title {
        font-size: 40px;
        line-height: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-field {
        width: 100%;
    }

    /* ── Homepage button ── */
    .homepage-button {
        margin-top: 20px;
        margin-left: 10px;
    }

    /* ── Footer ── */
    .footer {
        height: auto;           /* Override desktop height: 309px */
        margin-top: 0;
        background: #F8F9F8;
        padding: 0 0 0 0;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "about help"
            "social legal"
            "newsletter newsletter";
        padding: 32px 22px 0;
        gap: 0;
        flex-wrap: unset;
        margin-bottom: 0;
    }

    .footer-column:nth-child(1) { grid-area: about; }
    .footer-column:nth-child(2) { grid-area: help; }
    .footer-column:nth-child(3) { grid-area: social; padding-top: 40px; }
    .footer-column:nth-child(4) { grid-area: legal;  padding-top: 40px; }
    .footer-column.newsletter   { grid-area: newsletter; margin-left: 0; width: 100%; padding-top: 50px; }

    .footer-heading {
        font-size: 13px;
        margin-bottom: 19px;
    }

    .footer-menu {
        gap: 19px;
    }

    .footer-menu li a {
        font-size: 12px;
        line-height: 14px;
    }

    .newsletter-input {
        width: 100%;
        max-width: 100%;
        border-bottom: 0.5px solid #000000;
        padding: 10px 0;
        height: auto;
    }

    .newsletter-input input {
        font-size: 12px;
        width: 100%;
        border: none;
        background: none;
        outline: none;
        color: rgba(0, 0, 0, 0.5);
    }

    .newsletter-button {
        width: 100%;
        max-width: 100%;
        height: 34px;
        font-size: 12px;
        margin-top: 19px;
        background: #E0E0E0;
        color: #000000;
        border: none;
    }

    .footer-bottom {
        padding: 20px 22px;
        border-top: none;
    }

    .copyright,
    .credit {
        font-size: 12px;
        line-height: 14px;
    }

    /* ── Editorial overlay ── */
    .editorial-dropdown-overlay {
        width: 100%;
    }
}
