/* CSS Design System matching exact Figma Node Tree Specs */

:root {
    --color-bg-primary: #ffffff;
    --color-bg-surface: #f4f4f5;
    --color-bg-card: #ffffff;
    --color-text-primary: #000000;
    --color-text-secondary: #52525b;
    --color-accent: #000000;
    --color-border-grid: #a5a5a5;
    --color-sale: #ef4444;
    
    --font-heading: 'Akt', 'Space Grotesk', -apple-system, sans-serif;
    --font-mono: 'Chivo Mono', monospace;
    --font-body: 'Open Sans', -apple-system, sans-serif;

    --transition-fast: 0.15s ease-in-out;
}

/* Reset & Core */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

/* Custom Sleek Thin Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1aa;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Announcement Marquee (Exact Figma Spec: Black bg, 32px height, 14px uppercase Chivo Mono) */
.announcement-bar {
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: marquee 25s linear infinite;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header & Nav (Exact Figma Spec: Grid of 60px tabs with 0.5px #a5a5a5 border) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    border-bottom: 0.5px solid var(--color-border-grid);
}

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.brand-logo-container {
    background-color: #ffffff;
    border-right: 0.5px solid var(--color-border-grid);
    padding: 10px 48px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.header-logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    flex: 1;
}

.nav-item-tab {
    flex: 1;
    height: 60px;
    background-color: #ffffff;
    border-right: 0.5px solid var(--color-border-grid);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.nav-item-tab:hover {
    background-color: #f4f4f5;
}

.header-actions {
    display: flex;
}

.header-action-tab {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-right: 0.5px solid var(--color-border-grid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-action-tab:hover {
    background-color: #f4f4f5;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    padding: 0 1rem;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 0.5px solid var(--color-text-primary);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    background-color: var(--color-text-primary);
    color: #000;
}

.btn-light {
    background-color: #fff;
    color: #000;
}

.btn-light:hover {
    background-color: var(--color-accent);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

/* Hero Carousel Section (Exact Figma Spec: Full Screen Height Cover Slider) */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 750px;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
}

.hero-slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-pagination {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.hero-dot.active {
    background-color: #ffffff;
}


/* Full Width Section Containers matching Figma Node Specs */
.section-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.section-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 72px;
    border-bottom: 0.5px solid var(--color-border-grid);
    background-color: #ffffff;
    box-sizing: border-box;
}

.section-title-cell {
    grid-column: span 3;
    display: flex;
    align-items: center;
    padding: 0 32px;
    height: 100%;
    box-sizing: border-box;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.view-all-cell {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 32px;
    height: 100%;
    border-left: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.view-all-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    transition: color var(--transition-fast);
}

.view-all-link:hover {
    color: #52525b;
}

/* Product Grid & Oval/Pill Stadium Cards (Exact Figma Spec: rounded-[180px], 0.5px #a5a5a5 border) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background-color: #ffffff;
    border-top: none;
    border-bottom: none;
    box-sizing: border-box;
}

.product-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 580px;
    position: relative;
    border-right: 0.5px solid var(--color-border-grid);
    border-bottom: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.product-grid .product-card:nth-child(4n) {
    border-right: none;
}

.card-media {
    position: relative;
    height: 500px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    overflow: hidden;
}

.card-media-pill {
    width: 270px;
    height: 460px;
    border-radius: 135px;
    overflow: hidden;
    position: relative;
    background-color: #f4f4f5;
    margin: 0 auto;
}

.card-media-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.tag-sale {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #000000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    letter-spacing: 0.5px;
    z-index: 10;
}

.quick-add-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 15;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.25s ease;
}

.product-card:hover .quick-add-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Flat Rectangular Product Cards for Best Sellers (Exact Figma Node 424:4615 Spec) */
.flat-media {
    background-color: #ececeb;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flat-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    cursor: pointer;
    padding: 8px 12px;
    z-index: 5;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.arrow-btn:hover {
    opacity: 1;
}

.arrow-prev {
    left: 8px;
}

.arrow-next {
    right: 8px;
}



/* Discover New Drop Banner (Exact Figma Node 566:4668 Spec) */
.discover-new-drop-banner {
    position: relative;
    width: 100%;
    height: 556px;
    overflow: hidden;
}

.discover-new-drop-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background-color: #ffffff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.discover-badge span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    color: #000000;
    letter-spacing: 0.05em;
}

.discover-badge svg {
    color: #000000;
}

/* 2-Column Category Grid: T-SHIRTS & LOWERS (Exact Figma Node 566:4439 Spec) */
.category-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 720px;
    background-color: #ffffff;
    border-bottom: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.category-col-card {
    position: relative;
    height: 720px;
    background-color: #000000;
    overflow: hidden;
    border-right: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.category-col-card:last-child {
    border-right: none;
}

.category-col-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.category-col-card:hover img {
    transform: scale(1.04);
}

.category-card-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 0.05em;
}


/* Collections Grid (Exact Figma Node 546:8805 Spec) */
.collections-grid-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 720px;
    background-color: #ffffff;
    border-bottom: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.collection-col-card {
    position: relative;
    height: 720px;
    background-color: #000000;
    overflow: hidden;
    border-right: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.collection-col-card:last-child {
    border-right: none;
}

.collection-col-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.collection-col-card:hover img {
    transform: scale(1.04);
}

.collection-top-label {
    position: absolute;
    top: 32px;
    left: 32px;
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    letter-spacing: 0.05em;
}


/* Complete The Fit Section (Exact Figma Node 573:4948 Spec) */
.fit-hero-container {
    position: relative;
    width: 100%;
    height: 873px;
    background-color: #000000;
    overflow: hidden;
}

.fit-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fit-floating-cards {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    display: flex;
    gap: 32px;
    z-index: 10;
}

.fit-mini-card {
    width: 330px !important;
    height: auto !important;
    background-color: #ffffff;
    border: 0.5px solid var(--color-border-grid);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}

.fit-mini-card .flat-media {
    background-color: #ffffff !important;
    height: 380px !important;
    padding: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.fit-mini-card .flat-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.fit-mini-card .card-details {
    height: auto !important;
    padding: 14px 18px 16px 18px !important;
    border-top: 0.5px solid var(--color-border-grid) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.fit-mini-card .product-name {
    width: 190px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

.fit-mini-card .sale-price {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.fit-mini-card .original-price {
    font-size: 13px !important;
}


/* Brand Features Bar (Exact Figma Node 554:4300 Spec - 7-Column Grid Layout) */
.brand-features-figma {
    display: grid;
    grid-template-columns: 48px 1fr 1fr 1fr 1fr 1fr 48px;
    width: 100%;
    height: 93px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.feature-spacer-cell {
    background-color: #ffffff;
    height: 100%;
    border-bottom: 0.5px solid var(--color-border-grid);
    border-right: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.brand-features-figma .feature-spacer-cell:last-child {
    border-right: none;
}

.feature-box-figma {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 16px;
    background-color: #ffffff;
    border-bottom: 0.5px solid var(--color-border-grid);
    border-right: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.feature-icon-square {
    width: 48px;
    height: 48px;
    background-color: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-square img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.feature-sub {
    font-size: 12px;
    font-weight: 600;
    color: #71717a;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.04em;
}

/* Story & Promise Banner Section (Figma Exact Match) */
.story-promise-section {
    position: relative;
    width: 100%;
    height: 873px;
    background-color: #000000;
    overflow: hidden;
}

.story-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.story-floating-cards {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 28px;
    z-index: 10;
}

.story-card {
    width: 400px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.story-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

.story-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #27272a;
    margin: 0;
    font-weight: 400;
}


/* Community Section */
.community-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 0;
    overflow: hidden;
}

.community-card {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0 !important;
    border-right: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
    overflow: hidden;
}

.community-card:last-child {
    border-right: none;
}

.community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.community-card:hover img {
    transform: scale(1.05);
}

/* Newsletter Section (Exact Figma Spec - 48px 1fr 48px Grid Layout) */
.newsletter-section {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-grid .side-spacer-cell {
    background-color: #ffffff;
}

.newsletter-grid .side-spacer-cell:first-child {
    border-right: 0.5px solid var(--color-border-grid);
}

.newsletter-grid .side-spacer-cell:last-child {
    border-left: 0.5px solid var(--color-border-grid);
}

.newsletter-content {
    width: 100%;
    box-sizing: border-box;
    padding: 80px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.newsletter-text p {
    font-family: var(--font-body);
    font-size: 18px;
    color: #52525b;
    margin: 0;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    align-items: center;
}

.newsletter-form input {
    width: 440px;
    background-color: #ffffff;
    border: 0.5px solid #d4d4d8;
    border-radius: 0;
    padding: 18px 24px;
    color: #000000;
    font-family: var(--font-body);
    font-size: 15px;
    box-sizing: border-box;
}

.newsletter-form input::placeholder {
    color: #a1a1aa;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #000000;
}

.newsletter-submit-btn {
    padding: 18px 48px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-submit-btn:hover {
    background-color: #27272a;
}

/* Footer (Exact Figma Node 554:4302 Spec - Full Width Grid) */
.site-footer {
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.footer-inner-container {
    width: 100%;
    border-top: none;
    border-bottom: 0.5px solid var(--color-border-grid);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-sizing: border-box;
}

.footer-top-grid {
    display: flex;
    width: 100%;
}

.footer-brand-cell {
    flex: 1;
    border-right: 0.5px solid var(--color-border-grid);
    border-bottom: 0.5px solid var(--color-border-grid);
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand-cell .brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.brand-bio {
    font-size: 15px;
    color: #27272a;
    line-height: 1.6;
    max-width: 580px;
}

.footer-nav-group {
    display: flex;
    flex-direction: row;
    border-bottom: 0.5px solid var(--color-border-grid);
}

.footer-category-column {
    width: 175px;
    display: flex;
    flex-direction: column;
    border-right: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
}

.footer-category-title-cell {
    height: 52px;
    border-bottom: 0.5px solid var(--color-border-grid);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #71717a;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    background-color: #ffffff;
}

.footer-category-empty-cell {
    flex: 1;
    background-color: #ffffff;
}

.footer-nav-list {
    width: 201px;
    border-right: 0.5px solid var(--color-border-grid);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.footer-tab {
    height: 52px;
    border-bottom: 0.5px solid var(--color-border-grid);
    padding: 14px 20px;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color var(--transition-fast);
    box-sizing: border-box;
}

.footer-tab:last-child {
    border-bottom: none;
}

.footer-tab:hover {
    background-color: #f4f4f5;
}

/* Address & Contact Info Bar */
.footer-address-bar {
    display: flex;
    width: 100%;
    height: 68px;
    border-bottom: 0.5px solid var(--color-border-grid);
}

.address-cell {
    flex: 1;
    border-right: 0.5px solid var(--color-border-grid);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.contact-cells {
    display: flex;
}

.card-details {
    padding: 24px;
    border-top: 0.5px solid var(--color-border-grid);
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    background-color: #ffffff;
    height: 88.94px;
    width: 100%;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    width: 195.8px;
    line-height: 1.3;
    margin: 0;
}

.price-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    font-size: 14px;
    white-space: nowrap;
}

.sale-price {
    font-weight: 700;
    color: #000000;
}

.original-price {
    color: #a1a1aa;
    text-decoration: line-through;
    font-size: 12px;
}

.email-cell {
    width: 220px;
    border-right: 0.5px solid var(--color-border-grid);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    box-sizing: border-box;
}

.domain-cell {
    width: 220px;
    border-right: 0.5px solid var(--color-border-grid);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    box-sizing: border-box;
}

/* Giant Watermark Section (Exact Figma Spec - Gradient Fade Blend Match) */
.footer-watermark-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-bottom: 0.5px solid var(--color-border-grid);
    box-sizing: border-box;
    padding: 20px 0 0 0;
}

.giant-watermark-svg {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    opacity: 0.04;
    filter: grayscale(100%) brightness(0);
    user-select: none;
    pointer-events: none;
    display: block;
}

.watermark-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 65%, #ffffff 100%);
    pointer-events: none;
}

/* Bottom Copyright & Social Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    border-top: 0.5px solid var(--color-border-grid);
}

.copyright-cell {
    padding: 0 24px;
    font-size: 14px;
    color: #000000;
}

.social-tabs {
    display: flex;
}

.social-tab {
    width: 60px;
    height: 60px;
    border-left: 0.5px solid var(--color-border-grid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: background-color var(--transition-fast);
}

.social-tab:hover {
    background-color: #f4f4f5;
}


/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    background-color: var(--color-bg-card);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    overflow: hidden;
    border: 0.5px solid var(--color-border);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-form-container {
    padding: 3rem 2.5rem;
}

.modal-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.modal-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    color: var(--color-text-secondary);
}

.input-group input {
    width: 100%;
    background-color: var(--color-bg-primary);
    border: 0.5px solid var(--color-border);
    padding: 0.75rem 1rem;
    color: white;
    border-radius: 4px;
}

.form-links {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-link {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.signup-prompt {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-align: center;
}

.signup-prompt a {
    color: var(--color-accent);
}



/* ============================================================
   OFF-CANVAS NAVIGATION MENU
   ============================================================ */

/* Backdrop */
.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
.offcanvas-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* Drawer panel */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(340px, 88vw);
    height: 100%;
    height: 100dvh;
    background-color: #ffffff;
    border-right: 0.5px solid var(--color-border-grid);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.offcanvas-menu.open {
    transform: translateX(0);
}

/* Off-canvas header */
.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 16px 0 24px;
    border-bottom: 0.5px solid var(--color-border-grid);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}
.offcanvas-logo-img {
    height: 20px;
    width: auto;
}
.offcanvas-close-btn {
    width: 38px;
    height: 38px;
    background: none;
    border: 0.5px solid var(--color-border-grid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}
.offcanvas-close-btn:hover { background-color: #f4f4f5; }

/* Nav links */
.offcanvas-nav {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.offcanvas-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    padding: 0 20px 0 24px;
    border-bottom: 0.5px solid var(--color-border-grid);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.15s ease, padding-left 0.15s ease;
    text-decoration: none;
    user-select: none;
}
.offcanvas-nav-item:hover {
    background-color: #f4f4f5;
    padding-left: 28px;
}
.offcanvas-arrow {
    color: #a1a1aa;
    flex-shrink: 0;
    transition: transform 0.15s ease, color 0.15s ease;
}
.offcanvas-nav-item:hover .offcanvas-arrow {
    transform: translateX(3px);
    color: #000;
}

/* Login row */
.offcanvas-login-row {
    gap: 10px;
    color: #52525b;
    font-size: 12px;
    letter-spacing: 0.05em;
}
.offcanvas-login-row:hover { color: #000000; }

/* Info blocks (contact / address) */
.offcanvas-info-block {
    padding: 18px 24px;
    border-bottom: 0.5px solid var(--color-border-grid);
    flex-shrink: 0;
}
.offcanvas-info-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a1a1aa;
    margin: 0 0 12px;
}
.offcanvas-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #18181b;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.15s ease;
    line-height: 1.4;
}
.offcanvas-info-row:last-child { margin-bottom: 0; }
.offcanvas-info-row:hover { color: #71717a; }
.offcanvas-address-row {
    align-items: flex-start;
    font-size: 12px;
    font-weight: 400;
    color: #3f3f46;
    line-height: 1.6;
}

/* Brand feature badges (2x2 grid) */
.offcanvas-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-shrink: 0;
    border-bottom: 0.5px solid var(--color-border-grid);
}
.offcanvas-badge {
    padding: 14px 16px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;
    border-right: 0.5px solid var(--color-border-grid);
    border-bottom: 0.5px solid var(--color-border-grid);
    display: flex;
    align-items: center;
    line-height: 1.3;
}
.offcanvas-badge:nth-child(even) { border-right: none; }
.offcanvas-badge:nth-last-child(-n+2) { border-bottom: none; }

/* Off-canvas footer */
.offcanvas-footer {
    margin-top: auto;
    padding: 14px 20px 14px 24px;
    border-top: 0.5px solid var(--color-border-grid);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: #ffffff;
    position: sticky;
    bottom: 0;
    z-index: 10;
}
.offcanvas-socials { display: flex; }
.offcanvas-social-btn {
    width: 40px;
    height: 40px;
    border: 0.5px solid var(--color-border-grid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.15s ease;
}
.offcanvas-social-btn + .offcanvas-social-btn { border-left: none; }
.offcanvas-social-btn:hover { background-color: #f4f4f5; }
.offcanvas-copyright {
    font-size: 9px;
    color: #a1a1aa;
    letter-spacing: 0.02em;
    line-height: 1.4;
    max-width: 160px;
    text-align: right;
}

/* Hide off-canvas on desktop */
@media (min-width: 769px) {
    .offcanvas-backdrop,
    .offcanvas-menu { display: none !important; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS — ALL SECTIONS
   ============================================================ */

/* ── 1200px: Tighten desktop layout ─────────────────────── */
@media (max-width: 1200px) {
    /* Newsletter */
    .newsletter-content { padding: 60px 48px; }
    .newsletter-form input { width: 320px; }

    /* Footer */
    .footer-category-column { width: 140px; }
    .footer-nav-list { width: 160px; }
    .address-cell { padding: 24px 24px; font-size: 13px; }
    .email-cell, .domain-cell { width: 180px; font-size: 13px; }

    /* Complete the Fit */
    .fit-floating-cards { right: 40px; gap: 20px; }
    .fit-mini-card { width: 280px !important; }

    /* Story Cards */
    .story-card { width: 340px; padding: 26px 28px; }

    /* Brand features */
    .feature-spacer-cell { display: none; }
    .brand-features-figma { grid-template-columns: repeat(5, 1fr); }
}

/* ── 1024px: Tablet landscape ───────────────────────────── */
@media (max-width: 1024px) {

    /* Header */
    .brand-logo-container { padding: 10px 24px; }
    .nav-item-tab { font-size: 12px; }

    /* Hero */
    .hero-section { height: 70vh; min-height: 500px; }

    /* Product Grids — 4→2 columns */
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card { height: auto; min-height: 460px; }
    .card-media { height: 380px; }
    .card-media-pill { width: 210px; height: 360px; border-radius: 105px; }
    .product-grid .product-card:nth-child(4n) { border-right: 0.5px solid var(--color-border-grid); }
    .product-grid .product-card:nth-child(2n) { border-right: none; }

    /* Flat card grid — always 2 columns */
    .flat-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .flat-card { min-height: 420px; }

    /* Discover Banner */
    .discover-new-drop-banner { height: 400px; }

    /* Category grid */
    .category-two-col-grid { height: 480px; }
    .category-col-card { height: 480px; }
    .category-card-label { font-size: 24px; bottom: 28px; left: 28px; }

    /* Collections grid — 3→2 columns */
    .collections-grid-figma { grid-template-columns: repeat(2, 1fr); height: auto; }
    .collection-col-card { height: 400px; }
    .collections-grid-figma .collection-col-card:last-child { grid-column: span 2; border-right: none; }

    /* Complete the Fit */
    .fit-hero-container { height: 700px; }
    .fit-floating-cards { right: 24px; gap: 16px; }
    .fit-mini-card { width: 240px !important; }
    .fit-mini-card .flat-media { height: 300px !important; }

    /* Brand Features — 5 equal cols, hide spacers */
    .brand-features-figma { grid-template-columns: repeat(5, 1fr); height: auto; }
    .feature-spacer-cell { display: none; }
    .feature-box-figma { padding: 20px 12px; gap: 12px; }
    .feature-title { font-size: 13px; }
    .feature-sub { font-size: 11px; }

    /* Story section */
    .story-promise-section { height: 700px; }
    .story-floating-cards { gap: 20px; bottom: 40px; right: 40px; }
    .story-card { width: 300px; padding: 24px; }
    .story-card-title { font-size: 16px; }
    .story-card-desc { font-size: 14px; }

    /* Community */
    .community-carousel { grid-template-columns: repeat(3, 1fr); }
    .community-card:nth-child(n+4) { display: none; }

    /* Newsletter */
    .newsletter-content { flex-direction: column; padding: 60px 48px; gap: 32px; align-items: flex-start; }
    .newsletter-form input { width: 280px; }

    /* ── FOOTER: 2-col nav grid ── */
    .footer-top-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .footer-brand-cell { grid-column: span 2; border-right: none; flex: none; padding: 36px 40px; }
    .footer-nav-group {
        flex-direction: column;
        border-bottom: 0.5px solid var(--color-border-grid);
        border-right: 0.5px solid var(--color-border-grid);
    }
    .footer-nav-group:last-child { border-right: none; }
    .footer-category-column { width: 100%; border-right: none; }
    .footer-category-title-cell { height: 48px; padding: 0 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #71717a; }
    .footer-category-empty-cell { display: none; }
    .footer-nav-list { width: 100%; border-right: none; }
    .footer-tab { height: 48px; font-size: 14px; padding: 0 20px; }
    .footer-address-bar { height: auto; flex-wrap: wrap; }
    .address-cell { flex: 0 0 100%; border-right: none; border-bottom: 0.5px solid var(--color-border-grid); }
    .contact-cells { width: 100%; }
    .email-cell, .domain-cell { width: 50%; }
}

/* ── 768px: Tablet portrait / large mobile ──────────────── */
@media (max-width: 768px) {

    /* Announcement */
    .announcement-bar { font-size: 12px; height: 28px; }

    /* ── HEADER: off-canvas trigger ── */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        width: 60px;
        border-right: 0.5px solid var(--color-border-grid);
        flex-shrink: 0;
        cursor: pointer;
        background: none;
        border-top: none;
        border-bottom: none;
        border-left: none;
        color: #000000;
        transition: background-color 0.15s ease;
    }
    .menu-toggle:hover { background-color: #f4f4f5; }
    .brand-logo-container {
        flex: 1;
        border-right: none;
        justify-content: center;
        padding: 10px 16px;
    }
    /* Nav links: always hidden on mobile — off-canvas used instead */
    .nav-links { display: none !important; }
    .header-container { position: relative; }

    /* ── HERO ── */
    .hero-section { height: 55vh; min-height: 340px; }

    /* ── SECTION HEADERS ── */
    .section-header { height: 52px; }
    .section-title { font-size: 16px; }
    .section-title-cell { padding: 0 16px; }
    .view-all-cell { padding: 0 16px; }
    .view-all-link { font-size: 12px; }

    /* ── PRODUCT GRID (New Drop): 2 cols, pill cards ── */
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card {
        height: auto;
        min-height: 0;
    }
    .product-grid .product-card:nth-child(4n) { border-right: 0.5px solid var(--color-border-grid); }
    .product-grid .product-card:nth-child(2n) { border-right: none; }
    .card-media {
        height: 240px;
        padding: 10px;
    }
    .card-media-pill {
        width: 155px;
        height: 222px;
        border-radius: 78px;
    }
    .card-details {
        padding: 10px 10px;
        height: auto;
        min-height: 64px;
    }
    .product-name {
        font-size: 11px;
        width: auto;
        max-width: 56%;
        line-height: 1.3;
    }
    .price-box { font-size: 11px; }
    .sale-price { font-size: 12px; }
    .original-price { font-size: 10px; }
    .quick-add-btn { font-size: 10px; padding: 10px 0; }

    /* ── BEST SELLERS: always 2 cols, compact flat cards ── */
    .flat-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .flat-cards-grid .product-card { height: auto; min-height: 0; }
    .flat-media {
        height: 200px !important;
        padding: 16px !important;
        background-color: #ececeb;
    }
    .flat-media img { width: 100%; height: 100%; object-fit: contain; }

    /* ── DISCOVER BANNER ── */
    .discover-new-drop-banner { height: 260px; }
    .discover-badge { bottom: 16px; right: 16px; padding: 10px 14px; gap: 10px; }
    .discover-badge span { font-size: 12px; }

    /* ── CATEGORY GRID: keep 2 cols, shorter ── */
    .category-two-col-grid { grid-template-columns: 1fr 1fr; height: 260px; }
    .category-col-card { height: 260px; }
    .category-card-label { font-size: 16px; bottom: 14px; left: 14px; }

    /* ── COLLECTIONS GRID: 1 col stack ── */
    .collections-grid-figma { grid-template-columns: 1fr; height: auto; }
    .collection-col-card {
        height: 200px;
        border-right: none;
        border-bottom: 0.5px solid var(--color-border-grid);
    }
    .collections-grid-figma .collection-col-card:last-child { grid-column: span 1; border-bottom: none; }
    .collection-top-label { font-size: 17px; top: 16px; left: 16px; }

    /* ── COMPLETE THE FIT: image above, 2-col cards below ── */
    .fit-hero-container { height: auto; }
    .fit-hero-bg { width: 100%; height: 300px; object-fit: cover; display: block; }
    .fit-floating-cards {
        position: static;
        transform: none;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background-color: #ffffff;
        border-top: 0.5px solid var(--color-border-grid);
    }
    .fit-mini-card {
        width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-right: 0.5px solid var(--color-border-grid) !important;
    }
    .fit-mini-card:last-child { border-right: none !important; }
    .fit-mini-card .flat-media {
        height: 180px !important;
        padding: 10px !important;
        background-color: #f4f4f5 !important;
    }
    .fit-mini-card .card-details {
        padding: 10px 10px !important;
        height: auto !important;
        border-top: 0.5px solid var(--color-border-grid) !important;
    }
    .fit-mini-card .product-name { font-size: 10px !important; width: auto !important; max-width: 54% !important; }
    .fit-mini-card .sale-price { font-size: 11px !important; }
    .fit-mini-card .original-price { font-size: 9px !important; }

    /* ── BRAND FEATURES: horizontal scrollable strip ── */
    .brand-features-figma {
        display: flex !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        height: auto;
        border-top: 0.5px solid var(--color-border-grid);
        border-bottom: 0.5px solid var(--color-border-grid);
    }
    .brand-features-figma::-webkit-scrollbar { display: none; }
    .feature-spacer-cell { display: none !important; }
    .feature-box-figma {
        flex: 0 0 150px !important;
        min-width: 150px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 10px;
        gap: 8px;
        border-right: 0.5px solid var(--color-border-grid);
        border-bottom: none;
    }
    .feature-box-figma:last-child { border-right: none; }
    .feature-text { align-items: center; }
    .feature-icon-square { width: 38px; height: 38px; }
    .feature-icon-square img { width: 22px; height: 22px; }
    .feature-title { font-size: 11px; text-align: center; }
    .feature-sub { font-size: 9px; text-align: center; }

    /* ── STORY & PROMISE: image above, 2-col cards below ── */
    .story-promise-section { height: auto; }
    .story-hero-bg { width: 100%; height: 280px; object-fit: cover; object-position: center top; display: block; }
    .story-floating-cards {
        position: static;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-top: 0.5px solid var(--color-border-grid);
    }
    .story-card {
        width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-right: 0.5px solid var(--color-border-grid);
        padding: 20px 16px;
        background-color: #ffffff;
    }
    .story-card:last-child { border-right: none; }
    .story-card-title { font-size: 12px !important; letter-spacing: 0.03em; color: #000000 !important; margin-bottom: 10px; }
    .story-card-desc { font-size: 11px !important; line-height: 1.55; color: #27272a !important; }

    /* ── COMMUNITY FITS ── */
    .community-section .section-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        height: 52px;
        padding: 0 16px;
    }
    .community-carousel { grid-template-columns: repeat(3, 1fr); }
    .community-card { display: block !important; }

    /* ── NEWSLETTER ── */
    .newsletter-grid { grid-template-columns: 1fr; }
    .newsletter-grid .side-spacer-cell { display: none; }
    .newsletter-content {
        padding: 40px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .newsletter-text h2 { font-size: 22px; }
    .newsletter-text p { font-size: 14px; }
    .newsletter-form { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .newsletter-form input { width: 100%; border-bottom: none; }
    .newsletter-submit-btn { width: 100%; padding: 17px; }

    /* ── FOOTER ── */
    /* ── FOOTER: 2-col nav grid ── */
    .footer-top-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .footer-brand-cell { grid-column: span 2; border-right: none; flex: none; border-bottom: 0.5px solid var(--color-border-grid); padding: 24px 20px; }
    .brand-bio { font-size: 14px; max-width: 100%; }
    .footer-nav-group {
        flex-direction: column;
        border-bottom: 0.5px solid var(--color-border-grid);
        border-right: 0.5px solid var(--color-border-grid);
    }
    .footer-nav-group:last-child { border-right: none; }
    .footer-category-column { width: 100%; border-right: none; }
    .footer-category-title-cell {
        height: 44px;
        padding: 0 16px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: #71717a;
        border-bottom: 0.5px solid var(--color-border-grid);
        display: flex;
        align-items: center;
    }
    .footer-category-empty-cell { display: none; }
    .footer-nav-list { width: 100%; border-right: none; }
    .footer-tab { height: 44px; font-size: 13px; padding: 0 16px; }
    .footer-address-bar { height: auto; flex-direction: column; }
    .address-cell { width: 100%; border-right: none; border-bottom: 0.5px solid var(--color-border-grid); padding: 14px 20px; font-size: 12px; }
    .contact-cells { flex-direction: row; width: 100%; }
    .email-cell { flex: 1; border-right: 0.5px solid var(--color-border-grid); width: auto; font-size: 12px; padding: 13px 14px; }
    .domain-cell { flex: 1; border-right: none; width: auto; font-size: 12px; padding: 13px 14px; }
    .footer-bottom-bar { flex-direction: row; justify-content: space-between; align-items: center; height: 52px; padding: 0 20px; }
    .copyright-cell { font-size: 11px; padding: 0; }
    .social-tab { width: 52px; height: 52px; }
    .footer-watermark-container { padding: 10px 0 0; }

    /* ── MODAL ── */
    .modal-grid { grid-template-columns: 1fr; }
    .modal-image { display: none; }
    .modal-card { width: 95%; border-radius: 8px; }
    .modal-form-container { padding: 2rem 1.5rem; }
}

/* ── 480px: Small mobile ────────────────────────────────── */
@media (max-width: 480px) {

    .announcement-bar { font-size: 11px; height: 26px; }
    .header-logo-img { height: 20px; }
    .header-action-tab { width: 48px; }

    .hero-section { height: 48vh; min-height: 260px; }

    .section-header { height: 46px; }
    .section-title { font-size: 13px; }
    .view-all-link { font-size: 11px; }

    /* Product grid — 2 cols */
    .card-media { height: 210px; padding: 8px; }
    .card-media-pill { width: 134px; height: 194px; border-radius: 67px; }
    .card-details { padding: 8px 8px; min-height: 58px; }
    .product-name { font-size: 10px; max-width: 54%; }
    .price-box { font-size: 10px; }
    .sale-price { font-size: 11px; }
    .original-price { font-size: 9px; }
    .quick-add-btn { font-size: 9px; padding: 8px 0; }

    /* Best Sellers — 2 cols always */
    .flat-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .flat-media { height: 170px !important; padding: 10px !important; }

    /* Discover banner */
    .discover-new-drop-banner { height: 200px; }
    .discover-badge { bottom: 10px; right: 10px; padding: 8px 10px; gap: 6px; }
    .discover-badge span { font-size: 11px; }
    .discover-badge svg { width: 14px; height: 14px; }

    /* Category — 2 cols shorter */
    .category-two-col-grid { height: 200px; }
    .category-col-card { height: 200px; }
    .category-card-label { font-size: 13px; bottom: 10px; left: 10px; }

    /* Collections */
    .collection-col-card { height: 170px; }
    .collection-top-label { font-size: 13px; top: 10px; left: 10px; }

    /* Complete the Fit */
    .fit-hero-bg { height: 240px; }
    .fit-mini-card .flat-media { height: 145px !important; }
    .fit-mini-card .product-name { font-size: 9px !important; }
    .fit-mini-card .sale-price { font-size: 10px !important; }

    /* Brand features — scrollable */
    .feature-box-figma { flex: 0 0 120px !important; min-width: 120px; padding: 14px 6px; }
    .feature-icon-square { width: 30px; height: 30px; }
    .feature-icon-square img { width: 18px; height: 18px; }
    .feature-title { font-size: 9px; }
    .feature-sub { font-size: 8px; }

    /* Story — 2-col side by side */
    .story-hero-bg { height: 220px; }
    .story-card { padding: 14px 12px; }
    .story-card-title { font-size: 10px !important; margin-bottom: 6px; }
    .story-card-desc { font-size: 10px !important; line-height: 1.45; }

    /* Community — 3 cols */
    .community-carousel { grid-template-columns: repeat(3, 1fr); }
    .community-section .section-header { height: 46px; }

    /* Newsletter */
    .newsletter-content { padding: 32px 16px; gap: 20px; }
    .newsletter-text h2 { font-size: 18px; }
    .newsletter-text p { font-size: 13px; }
    .newsletter-form input { padding: 13px 14px; font-size: 13px; }
    .newsletter-submit-btn { padding: 13px; font-size: 12px; }

    /* Footer */
    .footer-brand-cell { padding: 18px 16px; }
    .footer-logo-img { height: 20px; }
    .footer-tab { height: 42px; font-size: 13px; }
    .footer-bottom-bar { padding: 0 14px; }
    .copyright-cell { font-size: 10px; }
    .email-cell, .domain-cell { font-size: 11px; padding: 11px 12px; }
}

/* ── 375px: iPhone SE & tiny phones ────────────────────── */
@media (max-width: 375px) {

    .hero-section { height: 45vh; min-height: 230px; }

    /* Product grid — 2 cols ultra compact */
    .card-media { height: 180px; }
    .card-media-pill { width: 114px; height: 164px; border-radius: 57px; }
    .product-name { font-size: 9px; max-width: 52%; }

    /* Best Sellers */
    .flat-media { height: 145px !important; }

    /* Category */
    .category-two-col-grid { height: 170px; }
    .category-col-card { height: 170px; }
    .category-card-label { font-size: 12px; }

    /* Collections */
    .collection-col-card { height: 155px; }

    /* Brand features */
    .feature-box-figma { flex: 0 0 105px !important; min-width: 105px; padding: 12px 5px; }
    .feature-title { font-size: 8px; }
    .feature-sub { font-size: 7px; }

    /* Story */
    .story-hero-bg { height: 190px; }
    .story-card-title { font-size: 9px !important; }
    .story-card-desc { font-size: 9px !important; }

    /* Newsletter */
    .newsletter-text h2 { font-size: 16px; }

    /* Footer */
    .footer-bottom-bar { height: auto; padding: 12px 16px; flex-direction: column; gap: 10px; }
    .copyright-cell { text-align: center; font-size: 10px; }
    .social-tabs { width: 100%; justify-content: center; border-top: 0.5px solid var(--color-border-grid); padding-top: 8px; }
    .social-tab { border-left: none; }
}


