@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Hide page scrollbar — scrolling still works */
html {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.landing-nav-stack {
    position: sticky;
    top: 0;
    z-index: 50;
}

.landing-nav-stack > header {
    margin: 0;
}

/* Marketing header — logo left | links centered | icons right */
.marketing-nav-header-inner,
.landing-nav-stack > header > .marketing-nav-header-inner {
    position: relative;
    display: flex !important;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    box-sizing: border-box;
    gap: 1rem;
}

.marketing-nav-logo .site-brand-logo__frame {
    height: 2.5rem;
    width: calc(2.5rem * 1012.59 / 331.96 * 1.22);
    max-width: none;
}

.marketing-nav-header-inner > .marketing-nav-logo,
.landing-nav-stack > header .marketing-nav-header-inner > .marketing-nav-logo {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.marketing-nav-header-inner > nav,
.landing-nav-stack > header .marketing-nav-header-inner > nav {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    align-items: center;
    gap: 2rem;
}

.marketing-nav-header-inner > .marketing-nav-actions,
.marketing-nav-header-inner > nav + div,
.landing-nav-stack > header .marketing-nav-header-inner > .marketing-nav-actions,
.landing-nav-stack > header .marketing-nav-header-inner > nav + div {
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.marketing-nav-header-inner > nav > :not([hidden]) ~ :not([hidden]),
.landing-nav-stack > header .marketing-nav-header-inner > nav > :not([hidden]) ~ :not([hidden]),
.marketing-nav-header-inner > .marketing-nav-actions > :not([hidden]) ~ :not([hidden]),
.marketing-nav-header-inner > nav + div > :not([hidden]) ~ :not([hidden]),
.landing-nav-stack > header .marketing-nav-header-inner > .marketing-nav-actions > :not([hidden]) ~ :not([hidden]),
.landing-nav-stack > header .marketing-nav-header-inner > nav + div > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0 !important;
}

@media (max-width: 640px) {
    .marketing-nav-logo .site-brand-logo__frame {
        height: 2rem;
        width: calc(2rem * 1012.59 / 331.96 * 1.22);
    }
}

@media (min-width: 1024px) {
    .marketing-nav-header-inner > nav,
    .landing-nav-stack > header .marketing-nav-header-inner > nav {
        display: flex !important;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
        gap: 2rem;
        align-items: center;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .marketing-nav-header-inner > nav,
    .landing-nav-stack > header .marketing-nav-header-inner > nav {
        gap: 1.25rem;
    }

    .marketing-nav-header-inner > .marketing-nav-actions,
    .marketing-nav-header-inner > nav + div,
    .landing-nav-stack > header .marketing-nav-header-inner > .marketing-nav-actions,
    .landing-nav-stack > header .marketing-nav-header-inner > nav + div {
        gap: 1.15rem;
    }
}

/* Main nav links — aligned baseline + animated underline */
.marketing-nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #5c6262;
    transition: color 0.2s ease;
}

.marketing-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #83060e;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketing-nav-link:hover {
    color: #83060e;
}

.marketing-nav-link:hover::after,
.marketing-nav-link.is-active::after {
    transform: scaleX(1);
}

.marketing-nav-link.is-active {
    color: #83060e;
    font-weight: 700;
}

.landing-category-strip {
    margin: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.fill-1 {
    font-variation-settings: 'FILL' 1;
}

.reveal {
    opacity: 0;
}

.reveal.active,
.reveal-fade-stagger.active,
.reveal-slide-up.active,
.reveal-zoom.active,
.reveal-slide-right.active,
.reveal-wipe.active {
    opacity: 1;
}

.reveal-fade-stagger {
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-fade-stagger.active {
    transform: translateY(0);
}

.reveal-slide-up {
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-up.active {
    transform: translateY(0);
}

.reveal-zoom {
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-zoom.active {
    transform: scale(1);
}

.reveal-slide-right {
    transform: translateX(-30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-slide-right.active {
    transform: translateX(0);
}

.reveal-wipe {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-wipe.active {
    clip-path: inset(0 0 0 0);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.animate-floating {
    animation: float 6s ease-in-out infinite;
}

.blueprint-bg {
    background-image:
        linear-gradient(rgba(165, 36, 34, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(165, 36, 34, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-card:hover .cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.magnetic-card {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.magnetic-card:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Global Collections — product card content spacing */
.landing-collections-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 3rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.landing-collection-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: min(100%, 320px);
    min-height: 100%;
    scroll-snap-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.25rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.landing-collection-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.landing-collection-card__media {
    margin: 0 0 1.25rem;
    border-radius: 0.125rem;
    overflow: hidden;
    flex-shrink: 0;
}

.landing-collection-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background-color: #eceeee;
}

.landing-collection-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.landing-collection-card__category {
    margin: 0 0 0.5rem;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #83060e;
    line-height: 1.5;
}

.landing-collection-card__title {
    margin: 0 0 0.75rem;
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #191c1c;
}

.landing-collection-card__desc {
    margin: 0 0 1.5rem;
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #5c6262;
}

.landing-collection-card__cta,
a.landing-collection-card__cta {
    margin-top: auto;
    width: 100%;
    padding: 0.8125rem 1rem;
    border: 1px solid #83060e;
    background: transparent;
    color: #83060e;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.landing-collection-card__cta:hover {
    background: #83060e;
    color: #fff;
}

/* Product & section images — always fill frame, never show empty gaps */
.product-card .aspect-square,
.product-card .aspect-\[3\/4\] {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.product-card .aspect-square > img,
.product-card .aspect-\[3\/4\] > img,
.product-card .relative.aspect-square img,
img.landing-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #eceeee;
}

.product-card .aspect-square > img,
.product-card .relative.aspect-square > img {
    position: absolute;
    inset: 0;
}

main section img:not(.material-symbols-outlined) {
    background-color: #eceeee;
}

/* Account dropdown (matches apparels storefront) */
.account-dropdown [hidden] {
    display: none !important;
}

.account-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
    z-index: 60;
}

.account-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.account-dropdown.open .account-dropdown-panel,
.account-dropdown:hover .account-dropdown-panel,
.account-dropdown:focus-within .account-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.account-dropdown-trigger {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    line-height: 1;
}

.account-dropdown-signup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
}

.account-dropdown-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 0.25rem 0;
}

.account-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1.25rem;
    font-size: 14px;
    font-weight: 500;
    color: #191c1c;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.account-dropdown-item:hover {
    background: #fdf3f3;
    color: #83060e;
}

.account-dropdown-icon {
    font-size: 20px;
    color: #5e5e5e;
    flex-shrink: 0;
}

.account-dropdown-item:hover .account-dropdown-icon {
    color: #a52422;
}

@media (hover: none) {
    .account-dropdown:hover .account-dropdown-panel {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        pointer-events: none;
    }

    .account-dropdown.open .account-dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Top Deals Section headings — Inter (matches marketplace hero typography) */
.landing-deals-title {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.5rem, 4.2vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #83060e;
}

.landing-deals-badge {
    display: inline-flex;
    align-items: center;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #a52422 0%, #83060e 100%);
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 0.125rem;
    box-shadow: 0 2px 8px rgba(165, 36, 34, 0.28);
}

.landing-deals-subtitle {
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.015em;
    color: #5e5e5e;
    margin-top: 0.625rem;
    max-width: 36rem;
}

/* Section headings — Inter (matches marketplace hero typography) */
.landing-heading-trending {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.875rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #191c1c;
    margin: 0;
    position: relative;
    padding-bottom: 0.875rem;
}

.landing-heading-trending::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.75rem;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #a52422 0%, #83060e 100%);
}

.landing-heading-collections {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem 1.25rem;
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #191c1c;
}

.landing-heading-collections-title {
    color: #191c1c;
}

.landing-heading-collections-badge {
    display: inline-flex;
    align-items: center;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #a52422;
    background: linear-gradient(135deg, rgba(165, 36, 34, 0.08) 0%, rgba(131, 6, 14, 0.04) 100%);
    border: 1px solid rgba(165, 36, 34, 0.28);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
}

.landing-heading-lab {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(2rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #83060e;
    margin: 0;
}

.landing-heading-lab-sub {
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #59413e;
    margin: 0.625rem 0 0;
    max-width: 38rem;
}

/* Playlist auto-rotation — subtle fade when products refresh */
[data-landing-products].playlist-fade,
[data-apparels-products].playlist-fade {
    opacity: 0.55;
    transition: opacity 0.35s ease;
}

[data-landing-products]:not(.playlist-fade),
[data-apparels-products]:not(.playlist-fade) {
    transition: opacity 0.35s ease;
}

/* =============================================================================
   ImpromptuIndian landing — mobile-first viewport system
   QA widths: 360 · 390 · 768 · 1024 · 1280 · 1366 · 1440 · 1920 · 2560
   Breakpoints: 360 / 390 / 480 / 640 / 768 / 1024 / 1280 / 1366 / 1440 / 1920 / 2560
   ============================================================================= */

:root {
    --ii-page-pad: 1rem;          /* ≤359 — small mobile */
    --ii-section-y: 2.5rem;
    --ii-content-max: 100%;
    --ii-gutter: 0.75rem;
    --ii-hero-min: 22rem;
    --ii-banner-min: 18rem;
}

/* --- Base (320px+) --- */
body.bg-surface {
    overflow-x: hidden;
}

.landing-nav-stack > header {
    height: 4rem;
}

.landing-nav-stack .marketing-nav-header-inner,
.landing-nav-stack .landing-category-strip > div,
main .px-margin-x,
footer .px-margin-x,
.landing-shell {
    width: 100%;
    max-width: var(--ii-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ii-page-pad) !important;
    padding-right: var(--ii-page-pad) !important;
    box-sizing: border-box;
}

main > section.py-section-gap,
main > section.py-24 {
    padding-top: var(--ii-section-y) !important;
    padding-bottom: var(--ii-section-y) !important;
}

.landing-category-strip > div {
    gap: 1.25rem !important;
}

.landing-category-strip a .w-12 {
    width: 2.5rem;
    height: 2.5rem;
}

.landing-hero {
    min-height: var(--ii-hero-min);
    height: auto;
    padding: 3rem 0 3.25rem;
}

.landing-hero__title {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.landing-hero__lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.75rem !important;
}

.landing-hero__actions > a {
    width: 100%;
    text-align: center;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
    font-size: 0.6875rem;
}

.landing-banner {
    min-height: var(--ii-banner-min);
    height: auto;
    padding: 2.75rem 0;
}

.landing-banner__title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.15;
}

.landing-banner__lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem !important;
}

/* Product grids — mobile default */
main [data-landing-products],
main #landing-artist-works {
    gap: var(--ii-gutter) !important;
}

main [data-landing-products][data-landing-layout="deals"],
main [data-landing-block="newArrivals"] [data-landing-products] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

main [data-landing-products][data-landing-layout="trending"],
main #landing-artist-works {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

main [data-landing-block="corporateGifts"] [data-landing-products] {
    grid-template-columns: 1fr !important;
}

.landing-collections-track {
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.landing-collection-card {
    width: min(100%, 260px);
    padding: 1rem;
}

/* Touch: cart affordance always visible */
@media (hover: none) {
    .product-card .cart-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-fade-stagger,
    .reveal-slide-up,
    .reveal-zoom,
    .reveal-slide-right,
    .reveal-wipe,
    .animate-floating {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        clip-path: none !important;
    }
}

/* --- 360px — Small Android --- */
@media (min-width: 360px) {
    :root {
        --ii-page-pad: 1.125rem;
        --ii-gutter: 0.875rem;
        --ii-hero-min: 24rem;
    }
}

/* --- 390px — Modern iPhone --- */
@media (min-width: 390px) {
    :root {
        --ii-page-pad: 1.25rem;
        --ii-section-y: 2.75rem;
        --ii-gutter: 1rem;
        --ii-hero-min: 26rem;
    }

    .landing-hero__title {
        font-size: clamp(2.1rem, 7.5vw, 2.75rem);
    }

    .landing-hero__actions > a {
        width: auto;
    }

    .landing-nav-stack > header {
        height: 4.5rem;
    }
}

/* --- 480px — Large mobile --- */
@media (min-width: 480px) {
    :root {
        --ii-page-pad: 1.5rem;
        --ii-gutter: 1.125rem;
        --ii-banner-min: 20rem;
    }

    .landing-collection-card {
        width: min(100%, 280px);
    }

    main [data-landing-block="corporateGifts"] [data-landing-products] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* --- 640px — Large mobile / small tablet --- */
@media (min-width: 640px) {
    :root {
        --ii-page-pad: 1.75rem;
        --ii-section-y: 3rem;
        --ii-hero-min: 28rem;
    }

    .landing-hero {
        padding: 4rem 0;
    }

    .landing-hero__title {
        font-size: clamp(2.5rem, 6vw, 3.25rem);
    }

    .landing-banner__title {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }

    .landing-category-strip > div {
        gap: 2rem !important;
    }
}

/* --- 768px — Tablet --- */
@media (min-width: 768px) {
    :root {
        --ii-page-pad: 2rem;
        --ii-section-y: 3.5rem;
        --ii-gutter: 1.25rem;
        --ii-hero-min: 30rem;
        --ii-banner-min: 22rem;
        --ii-content-max: 100%;
    }

    .landing-nav-stack > header {
        height: 5rem;
    }

    main [data-landing-products][data-landing-layout="deals"],
    main [data-landing-block="newArrivals"] [data-landing-products] {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    main [data-landing-products][data-landing-layout="trending"],
    main #landing-artist-works {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    main [data-landing-block="corporateGifts"] [data-landing-products] {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .landing-collection-card {
        width: min(100%, 300px);
        padding: 1.25rem;
    }

    .landing-deals-subtitle,
    .landing-heading-lab-sub {
        font-size: 1.0625rem;
    }
}

/* --- 1024px — Small laptop / iPad Pro --- */
@media (min-width: 1024px) {
    :root {
        --ii-page-pad: 2.5rem;
        --ii-section-y: 4rem;
        --ii-gutter: 1.5rem;
        --ii-hero-min: 32rem;
        --ii-banner-min: 24rem;
        --ii-content-max: 1280px;
    }

    .landing-hero {
        min-height: 550px;
        padding: 0;
    }

    .landing-hero__title {
        font-size: clamp(3rem, 4.2vw, 3.75rem);
    }

    .landing-banner {
        min-height: 450px;
        padding: 0;
    }

    .landing-banner__title {
        font-size: clamp(2.5rem, 3.5vw, 3.25rem);
    }

    main [data-landing-products][data-landing-layout="deals"],
    main [data-landing-block="newArrivals"] [data-landing-products] {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    main [data-landing-products][data-landing-layout="trending"],
    main #landing-artist-works {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .landing-collections-track {
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .landing-collection-card {
        width: min(100%, 320px);
        padding: 1.5rem;
    }
}

/* --- 1280px — Standard laptop --- */
@media (min-width: 1280px) {
    :root {
        --ii-page-pad: 3rem;
        --ii-content-max: 1280px;
        --ii-gutter: 1.5rem;
    }

    main [data-landing-products][data-landing-layout="deals"],
    main [data-landing-block="newArrivals"] [data-landing-products] {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    main [data-landing-products][data-landing-layout="trending"],
    main #landing-artist-works {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }
}

/* --- 1366px — Common Windows laptop --- */
@media (min-width: 1366px) {
    :root {
        --ii-page-pad: 3.5rem;
        --ii-content-max: 1320px;
    }

    main [data-landing-products][data-landing-layout="deals"],
    main [data-landing-block="newArrivals"] [data-landing-products] {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

/* --- 1440px — Large laptop --- */
@media (min-width: 1440px) {
    :root {
        --ii-page-pad: 4rem;
        --ii-content-max: 1400px;
        --ii-section-y: 4.5rem;
        --ii-hero-min: 36rem;
    }

    .marketing-nav-header-inner,
    .landing-nav-stack > header > .marketing-nav-header-inner {
        max-width: var(--ii-content-max);
    }

    .landing-hero__title {
        font-size: 3.75rem;
    }
}

/* --- 1920px — Full HD --- */
@media (min-width: 1920px) {
    :root {
        --ii-page-pad: 4.5rem;
        --ii-content-max: 1600px;
        --ii-section-y: 5rem;
        --ii-gutter: 1.75rem;
        --ii-hero-min: 40rem;
        --ii-banner-min: 28rem;
    }

    .landing-hero {
        min-height: 620px;
    }

    .landing-hero__title {
        font-size: 4.25rem;
    }

    .landing-banner {
        min-height: 520px;
    }

    main [data-landing-products][data-landing-layout="deals"],
    main [data-landing-block="newArrivals"] [data-landing-products] {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }

    main [data-landing-products][data-landing-layout="trending"],
    main #landing-artist-works {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

/* --- 2560px — QHD / ultra-wide --- */
@media (min-width: 2560px) {
    :root {
        --ii-page-pad: 5rem;
        --ii-content-max: 1800px;
        --ii-section-y: 5.5rem;
        --ii-gutter: 2rem;
        --ii-hero-min: 44rem;
    }

    .landing-hero {
        min-height: 720px;
    }

    .landing-hero__title {
        font-size: 4.75rem;
    }

    .landing-banner {
        min-height: 560px;
    }

    /* Prevent ultra-wide stretch — keep product cards readable */
    main [data-landing-products][data-landing-layout="deals"],
    main [data-landing-block="newArrivals"] [data-landing-products],
    main [data-landing-products][data-landing-layout="trending"],
    main #landing-artist-works {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

/* Section headers: stack on small screens */
@media (max-width: 639px) {
    main section .flex.justify-between.items-end {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    main #corporate-gifting .mb-12.flex.justify-between.items-end {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .landing-heading-collections {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
    }
}

/* Curated lifestyle grid spacing on small screens */
@media (max-width: 767px) {
    main section .grid.gap-12 {
        gap: 2rem !important;
    }

    main section .h-\[400px\] {
        height: 280px !important;
    }

    main footer .grid.gap-12,
    body > footer .grid {
        gap: 2rem !important;
    }
}
