/* Discover curated landing pages — Nykaa Hidden Gems style */

body.is-discover-lp-page {
    background: #fff;
}

.dlp-page {
    padding-bottom: calc(var(--shop-bottom-nav-bar, 64px) + 24px);
}

.dlp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dlp-topbar__back {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand, #901e50);
    text-decoration: none;
    font-size: 18px;
}

.dlp-topbar__title {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dlp-topbar__spacer {
    width: 44px;
    flex-shrink: 0;
}

.dlp-hero {
    padding: 0 0 8px;
}

.dlp-hero__visual {
    position: relative;
    margin: 0 12px;
    border-radius: 4px;
    overflow: hidden;
    min-height: min(72vw, 420px);
    aspect-ratio: 3 / 4;
    max-height: 520px;
}

.dlp-hero__img {
    position: absolute;
    inset: 0;
    background-color: inherit;
    background-image: var(--dlp-hero-portrait, none);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .dlp-hero__visual {
        aspect-ratio: 16 / 7;
        max-height: 380px;
        min-height: 280px;
    }
    .dlp-hero__img {
        background-image: var(--dlp-hero-wide, var(--dlp-hero-portrait, none));
        background-position: center center;
    }
}

.dlp-hero__ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(144, 30, 80, 0.25);
}

.dlp-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.dlp-hero__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 20px 16px 18px;
    text-align: center;
    color: #fff;
}

.dlp-hero__title {
    margin: 0 0 6px;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.dlp-page--serif .dlp-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dlp-page--sans .dlp-hero__title,
.dlp-page--heavy .dlp-hero__title {
    font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
}

.dlp-page--heavy .dlp-hero__title {
    font-weight: 900;
    letter-spacing: 0.08em;
}

.dlp-hero__sub {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.95;
}

.dlp-hero__editorial {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.9;
    max-width: 28em;
    margin-left: auto;
    margin-right: auto;
}

.dlp-hero__count {
    margin: 10px 16px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    text-align: center;
}

.dlp-sticky-subnav__sentinel {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

.dlp-sticky-subnav {
    position: sticky;
    top: var(--dlp-sticky-top, 56px);
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.dlp-page--subnav-stuck .dlp-sticky-subnav {
    box-shadow: 0 4px 14px rgba(15, 15, 20, 0.08);
}

.dlp-sticky-subnav .dlp-chips {
    padding: 8px 0 0;
}

.dlp-sticky-subnav .dlp-chips__track {
    padding-bottom: 6px;
}

.dlp-sticky-subnav .dlp-products-toolbar {
    margin: 0;
    padding: 8px 12px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dlp-sticky-subnav .dlp-section-title {
    font-size: 16px;
    margin-bottom: 2px;
}

.dlp-sticky-subnav .dlp-section-sub {
    font-size: 12px;
}

.dlp-chips {
    padding: 8px 0 2px;
    overflow: hidden;
}

.dlp-chips__track {
    display: flex;
    gap: 8px;
    padding: 0 12px 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.dlp-chips__track::-webkit-scrollbar {
    display: none;
}

.dlp-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 16px;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dlp-chip.is-active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.dlp-products {
    padding: 8px 0 0;
}

.dlp-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
}

.dlp-offers__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-tint, rgba(144, 30, 80, 0.1));
    color: var(--brand, #901e50);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.dlp-products-layout {
    display: block;
}

.dlp-filter-sidebar {
    display: none;
}

.dlp-products-main {
    padding: 0 12px;
}

.dlp-products-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.dlp-section-title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.dlp-section-sub {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.dlp-filter-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 14px;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
}

.dlp-filter-open-btn__badge {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--brand, #901e50);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.dlp-filter-open-btn__badge.is-hidden {
    display: none;
}

.dlp-active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.dlp-active-tags.is-hidden {
    display: none;
}

.dlp-products__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
}

@media (min-width: 640px) {
    .dlp-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px 10px;
    }
}

@media (min-width: 1024px) {
    .dlp-products-layout {
        display: grid;
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 24px;
        padding: 0 20px;
        align-items: start;
    }
    .dlp-filter-sidebar {
        display: block;
        position: sticky;
        top: calc(var(--dlp-sticky-top, 56px) + 8px);
    }
    .dlp-sticky-subnav .dlp-products-toolbar {
        display: none;
    }
    .dlp-filter-sidebar .sf-panel {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #e8eaed;
        border-radius: 8px;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }
    .dlp-filter-open-btn {
        display: none;
    }
    .dlp-products-main {
        padding: 0;
    }
    .dlp-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .dlp-products__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.dlp-products__empty {
    text-align: center;
    padding: 32px 16px;
    color: #6b7280;
    font-size: 15px;
}

.dlp-products__empty.is-hidden {
    display: none;
}

.dlp-empty {
    text-align: center;
    padding: 48px 24px;
    color: #4b5563;
}

.dlp-empty i {
    font-size: 40px;
    color: #d1d5db;
    margin-bottom: 12px;
}

.dlp-empty h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #1a1a1a;
}

body.dlp-filters-open {
    overflow: hidden;
}

@media (max-width: 1023px) {
    .dlp-filter-sidebar.is-open .sf-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2200;
        max-height: 85vh;
        border-radius: 16px 16px 0 0;
    }
}

/* Hub layout — curated edits grid (Nykaa Luxe style) */
.dlp-hub-edits {
    padding: 16px 8px 8px;
    background: #fff;
}

.dlp-hub-edits__heading {
    margin: 0 0 12px;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.dlp-hub-edits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
}

.dlp-hub-edits__card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.15;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    border-radius: 2px;
}

.dlp-hub-edits__card-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dlp-hub-edits__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.dlp-hub-edits__card-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 28px;
    color: rgba(144, 30, 80, 0.35);
    background: rgba(255, 255, 255, 0.45);
}

.dlp-hub-edits__card-copy {
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    width: calc(100% - 12px);
    text-align: center;
    pointer-events: none;
}

.dlp-hub-edits__card-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.9);
}

.dlp-hub-edits__card-sub {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #374151;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.85);
}

.dlp-hub-edits__card--serif .dlp-hub-edits__card-title,
.dlp-hub-edits__card--serif .dlp-hub-edits__card-sub {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    text-transform: none;
}

.dlp-hub-edits__card--serif .dlp-hub-edits__card-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.dlp-hub-edits__card--sans .dlp-hub-edits__card-title {
    font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
}

.dlp-hub-edits__card--heavy .dlp-hub-edits__card-title {
    font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 900;
}

@media (min-width: 768px) {
    .dlp-hub-edits {
        padding: 24px 16px 16px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .dlp-hub-edits__grid {
        gap: 8px;
    }
}

/* —— Nykaa-style section blocks —— */
.dlp-page--sections .dlp-hero {
    display: none;
}

/* Viewport entrance animations: sections stay visible; only cards animate when observed. */
.dlp-sec.dlp-animate,
.dlp-js .dlp-sec.dlp-animate,
.dlp-js .dlp-sec.dlp-animate.is-inview {
    opacity: 1;
    transform: none;
}

.dlp-js .dlp-sec.dlp-animate.is-inview .dlp-portrait-card,
.dlp-js .dlp-sec.dlp-animate.is-inview .dlp-h-card,
.dlp-js .dlp-sec.dlp-animate.is-inview .dlp-carousel-card,
.dlp-js .dlp-sec.dlp-animate.is-inview .dlp-chip-card,
.dlp-js .dlp-sec.dlp-animate.is-inview .dlp-banner-pair__card,
.dlp-js .dlp-sec.dlp-animate.is-inview .dlp-banner-stack__card {
    animation: dlpFadeUp 0.5s ease both;
    animation-delay: calc(var(--dlp-i, 0) * 60ms);
}

@keyframes dlpFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dlp-sec.dlp-animate,
    .dlp-sec.dlp-animate.is-inview .dlp-portrait-card,
    .dlp-sec.dlp-animate.is-inview .dlp-h-card,
    .dlp-sec.dlp-animate.is-inview .dlp-carousel-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Auto-scroll horizontal rails (CSS marquee — reliable on mobile) */
.dlp-scroll--auto {
    position: relative;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.dlp-scroll--auto.is-auto-scrolling {
    scroll-snap-type: none;
}

.dlp-scroll--auto.is-auto-scrolling .dlp-scroll__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    animation: dlpMarqueeScroll var(--dlp-scroll-duration, 32s) linear infinite;
    will-change: transform;
}

.dlp-scroll--auto.is-auto-scrolling .dlp-scroll__inner.is-paused {
    animation-play-state: paused;
}

.dlp-scroll--auto.is-auto-scrolling .dlp-scroll__track,
.dlp-scroll--auto.is-auto-scrolling .dlp-scroll__track--clone {
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    max-width: none;
    width: max-content;
}

.dlp-scroll--auto.is-auto-scrolling .dlp-scroll__track {
    padding: 0 12px 12px;
}

.dlp-scroll--auto.is-auto-scrolling .dlp-scroll__track--clone {
    padding: 0 12px 12px;
}

@keyframes dlpMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dlp-scroll--auto.is-auto-scrolling .dlp-scroll__inner {
        animation: none;
        transform: none;
    }
}

.dlp-scroll--auto::before,
.dlp-scroll--auto::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
    z-index: 2;
}

.dlp-scroll--auto::before {
    left: 0;
    background: linear-gradient(90deg, rgba(245, 240, 232, 0.95), transparent);
}

.dlp-scroll--auto::after {
    right: 0;
    background: linear-gradient(270deg, rgba(245, 240, 232, 0.95), transparent);
}

.dlp-sec--chips .dlp-scroll--auto::before {
    background: linear-gradient(90deg, #5c1a2e, transparent);
}

.dlp-sec--chips .dlp-scroll--auto::after {
    background: linear-gradient(270deg, #5c1a2e, transparent);
}

.dlp-sec {
    margin-bottom: 0;
}

.dlp-sec__title {
    margin: 0;
    padding: 10px 16px 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

.dlp-sec__title--serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
}

.dlp-sec__title--light {
    color: #fff;
    background: var(--dlp-sec-bg, #5c1a2e);
}

.dlp-sec__title--dark {
    color: #1a1a1a;
    background: #fff;
}

.dlp-sec__title--left {
    text-align: left;
}

.dlp-sec--chips {
    background: var(--dlp-sec-bg, #5c1a2e);
    padding-bottom: 12px;
}

.dlp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.dlp-scroll::-webkit-scrollbar {
    display: none;
}

.dlp-scroll__track {
    display: flex;
    gap: 8px;
    padding: 0 12px 8px;
    width: max-content;
    max-width: 100%;
}

.dlp-chip-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 14px;
    border-radius: 20px;
    background: #fff;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.dlp-hero-slider {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.dlp-hero-slider__track {
    position: relative;
    min-height: min(85vw, 480px);
}

.dlp-hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.dlp-hero-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.dlp-hero-slider__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.dlp-hero-slider__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 520px;
    overflow: hidden;
}

.dlp-hero-slider__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dlp-hero-slider__ph {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.dlp-hero-slider__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.dlp-hero-slider__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 16px 28px;
    color: #fff;
}

.dlp-hero-slider__title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
}

.dlp-hero-slider__sub {
    margin: 6px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.dlp-hero-slider__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 14px;
}

.dlp-hero-slider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.dlp-hero-slider__dot.is-active {
    background: var(--brand, #901e50);
    width: 18px;
    border-radius: 3px;
}

.dlp-banner-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0 8px 12px;
}

.dlp-banner-pair__card,
.dlp-banner-stack__card {
    display: block;
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
}

.dlp-banner-pair__card img,
.dlp-banner-stack__card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.dlp-banner-pair__ph,
.dlp-banner-stack__ph {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    padding: 12px;
    aspect-ratio: 3 / 4;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.dlp-banner-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 8px 12px;
}

.dlp-sec--h-cards {
    background: var(--dlp-sec-bg, #5c1a2e);
}

.dlp-h-cards-band {
    background: #f5f0e8;
    padding: 8px 0 10px;
}

.dlp-h-card {
    position: relative;
    flex: 0 0 140px;
    scroll-snap-align: start;
    height: 100px;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.dlp-h-card__label--overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: linear-gradient(transparent, rgba(92, 26, 46, 0.85));
}

.dlp-h-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dlp-h-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5c1a2e;
    padding: 8px;
    text-align: center;
}

.dlp-sec--portrait {
    background: var(--dlp-sec-bg, #5c1a2e);
    padding-bottom: 16px;
}

.dlp-portrait-grid {
    display: grid;
    gap: 6px;
    padding: 0 8px;
}

.dlp-portrait-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.dlp-portrait-grid--2x3 {
    grid-template-columns: repeat(2, 1fr);
}

.dlp-portrait-card {
    position: relative;
    display: block;
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 3 / 4;
}

.dlp-portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dlp-portrait-card__ph {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.dlp-portrait-card__name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

.dlp-carousel-card {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: start;
    display: block;
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
}

.dlp-carousel-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.dlp-carousel-card__cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.dlp-scroll--products .lux-product-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    max-width: 160px;
}

.dlp-scroll__track--products {
    align-items: stretch;
}

.dlp-sec--product-rail {
    padding: 6px 0 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .dlp-banner-pair,
    .dlp-banner-stack,
    .dlp-portrait-grid {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .dlp-hero-slider__track {
        min-height: 420px;
    }
}
