/* ═══════════════════════════════════════════════════════════════════════════
   Mini-Zshop NextGen Banner — Frontend Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Banner Container ───────────────────────────────────────────────────── */

/*
 * Elessi theme applies `margin: 10px` on .site-main.
 * We break out of that with negative margins and use calc(100% + 20px)
 * so the banner sits edge-to-edge without any horizontal scrollbar.
 */
.mnb-banner {
    position: relative;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -10px;
    margin-bottom: 24px;
    overflow: hidden;
    background: #0a0a0a;
    z-index: 1;
    contain: layout style;
}

.mnb-banner__track {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}

/* ── Slides ─────────────────────────────────────────────────────────────── */

.mnb-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.8s;
    z-index: 0;
    will-change: transform, opacity;
    contain: layout style paint;
}

.mnb-slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: visibility 0s;
    z-index: 1;
}

.mnb-slide__link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mnb-slide__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Skeleton shimmer while lazy images load */
.mnb-slide__img--skeleton {
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: mnb-shimmer 1.5s ease-in-out infinite;
}

@keyframes mnb-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Product Chips ──────────────────────────────────────────────────────── */

.mnb-slide__products {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
    max-width: 210px;
}

.mnb-product-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px 5px 5px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(20px);
    opacity: 0;
    animation: mnb-chip-in 0.5s ease forwards;
}

.mnb-product-chip:nth-child(2) { animation-delay: 0.1s; }
.mnb-product-chip:nth-child(3) { animation-delay: 0.2s; }
.mnb-product-chip:nth-child(4) { animation-delay: 0.3s; }

@keyframes mnb-chip-in {
    to { transform: translateX(0); opacity: 1; }
}

.mnb-product-chip:hover {
    background: rgba(99, 102, 241, 0.7);
    transform: translateX(-4px) !important;
    border-color: rgba(129, 140, 248, 0.3);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.25);
    text-decoration: none;
    color: #fff;
}

.mnb-product-chip__img {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    /* Prevent layout shift for lazy-loaded chip thumbnails */
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
}

.mnb-product-chip__info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mnb-product-chip__name {
    font-size: 10.5px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-width: 140px;
}

.mnb-product-chip__price {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Navigation (hidden — only progress bar visible) ───────────────────── */

.mnb-banner__nav {
    display: none;
}

.mnb-banner__btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    border-radius: 50%;
}

.mnb-banner__btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.mnb-banner__dots {
    display: flex;
    gap: 6px;
}

.mnb-banner__dots .mnb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.mnb-banner__dots .mnb-dot--active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.mnb-banner__dots .mnb-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ── Progress Bar ───────────────────────────────────────────────────────── */

.mnb-banner__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.mnb-banner__progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    transition: width 0.1s linear;
    border-radius: 0 3px 3px 0;
}

/* ── Product Choice Modal ────────────────────────────────────────────── */

.mnb-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    align-items: center;
    justify-content: center;
}

.mnb-modal--open {
    display: flex;
}

.mnb-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: mnb-modal-fade 0.25s ease;
    z-index: 0;
}

@keyframes mnb-modal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.mnb-modal__content {
    position: relative;
    background: #1e293b;
    border-radius: 16px;
    padding: 28px;
    max-width: 520px;
    width: 90vw;
    max-height: 80vh;
    max-height: 80dvh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: mnb-modal-slide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

@keyframes mnb-modal-slide {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mnb-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.mnb-modal__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.mnb-modal__title {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
}

.mnb-modal__products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mnb-modal__product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #f8fafc;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mnb-modal__product:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(4px);
    text-decoration: none;
    color: #f8fafc;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.mnb-modal__product-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mnb-modal__product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.mnb-modal__product-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mnb-modal__product-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.mnb-modal__product-price del {
    opacity: 0.5;
}

.mnb-modal__product-price ins {
    text-decoration: none;
    color: #22c55e;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM TRANSITIONS — Intro
   12 cinematic, professional-grade slide transitions
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Cross Fade In — smooth dissolve with subtle zoom ──────────────────── */
.mnb-anim-crossfadeIn {
    animation: mnb-crossfadeIn 1s cubic-bezier(0.33, 0, 0.2, 1) both;
}
@keyframes mnb-crossfadeIn {
    0%   { opacity: 0; transform: scale(1.04); }
    100% { opacity: 1; transform: scale(1); }
}

/* ── Push In — new slide pushes from right ──────────────────────────────── */
.mnb-anim-pushIn {
    animation: mnb-pushIn 0.75s cubic-bezier(0.4, 0, 0.15, 1) both;
}
@keyframes mnb-pushIn {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

/* ── Cinematic In — film brightness flash + blur resolve ────────────────── */
.mnb-anim-cinematicIn {
    animation: mnb-cinematicIn 1.3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes mnb-cinematicIn {
    0%   { opacity: 0; transform: scale(1.12); filter: brightness(3) blur(12px) saturate(0); }
    25%  { opacity: 1; filter: brightness(1.8) blur(6px) saturate(0.5); }
    60%  { filter: brightness(1.1) blur(1px) saturate(1); }
    100% { opacity: 1; transform: scale(1); filter: brightness(1) blur(0) saturate(1); }
}

/* ── Iris Reveal In — expanding circle from center ──────────────────────── */
.mnb-anim-revealIn {
    animation: mnb-revealIn 1s cubic-bezier(0.4, 0, 0.15, 1) both;
}
@keyframes mnb-revealIn {
    0%   { clip-path: circle(0% at 50% 50%); }
    100% { clip-path: circle(150% at 50% 50%); }
}

/* ── Diagonal Wipe In — sweep from corner ──────────────────────────────── */
.mnb-anim-wipeIn {
    animation: mnb-wipeIn 0.85s cubic-bezier(0.4, 0, 0.15, 1) both;
}
@keyframes mnb-wipeIn {
    0%   { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
    100% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
}

/* ── 3D Cube In — rotateY from right face ──────────────────────────────── */
.mnb-anim-cubeIn {
    animation: mnb-cubeIn 0.8s cubic-bezier(0.4, 0, 0.15, 1) both;
    transform-origin: left center;
}
@keyframes mnb-cubeIn {
    0%   { transform: perspective(1400px) rotateY(90deg); filter: brightness(0.4); }
    40%  { filter: brightness(0.7); }
    100% { transform: perspective(1400px) rotateY(0deg); filter: brightness(1); }
}

/* ── 3D Flip In — card flip around X axis ──────────────────────────────── */
.mnb-anim-flipIn {
    animation: mnb-flipIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    backface-visibility: hidden;
}
@keyframes mnb-flipIn {
    0%   { transform: perspective(1400px) rotateX(-90deg); opacity: 0; }
    40%  { opacity: 0.8; }
    100% { transform: perspective(1400px) rotateX(0deg); opacity: 1; }
}

/* ── Zoom Drive In — dramatic zoom from tiny with blur ──────────────────── */
.mnb-anim-zoomDriveIn {
    animation: mnb-zoomDriveIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes mnb-zoomDriveIn {
    0%   { transform: scale(0.2); opacity: 0; filter: blur(16px) brightness(1.5); }
    50%  { filter: blur(4px) brightness(1.1); }
    100% { transform: scale(1); opacity: 1; filter: blur(0) brightness(1); }
}

/* ── Parallax In — layered depth slide ──────────────────────────────────── */
.mnb-anim-parallaxIn {
    animation: mnb-parallaxIn 0.9s cubic-bezier(0.4, 0, 0.15, 1) both;
}
@keyframes mnb-parallaxIn {
    0%   { transform: translateX(70%) scale(0.82); opacity: 0; filter: brightness(0.6); }
    60%  { opacity: 1; filter: brightness(0.9); }
    100% { transform: translateX(0) scale(1); opacity: 1; filter: brightness(1); }
}

/* ── Glitch In — digital artifacts + hue shift + flash ──────────────────── */
.mnb-anim-glitchIn {
    animation: mnb-glitchIn 0.65s steps(1) both;
}
@keyframes mnb-glitchIn {
    0%   { opacity: 0; clip-path: inset(0 0 100% 0); }
    8%   { opacity: 1; clip-path: inset(80% 0 0 0); filter: hue-rotate(90deg) saturate(3); transform: translate(-5px, 3px) scaleX(1.02); }
    16%  { clip-path: inset(0 0 55% 0); filter: hue-rotate(200deg) saturate(2); transform: translate(5px, -2px) scaleX(0.98); }
    24%  { clip-path: inset(35% 0 25% 0); filter: hue-rotate(320deg) saturate(4); transform: translate(-3px, 4px); }
    32%  { clip-path: inset(15% 0 45% 0); filter: hue-rotate(90deg) saturate(2); transform: translate(3px, -4px); }
    40%  { clip-path: inset(0); filter: hue-rotate(0deg) saturate(1); transform: translate(0); }
    44%  { filter: brightness(4) contrast(2); }
    52%  { filter: brightness(1) contrast(1); }
    100% { opacity: 1; clip-path: inset(0); filter: none; transform: none; }
}

/* ── Ken Burns In — slow cinematic dolly pan & zoom ─────────────────────── */
.mnb-anim-kenBurnsIn {
    animation: mnb-kenBurnsIn 16s ease-in-out both;
}
@keyframes mnb-kenBurnsIn {
    0%   { transform: scale(1) translate(0, 0); opacity: 1; }
    100% { transform: scale(1.14) translate(-2%, -1.2%); opacity: 1; }
}

/* ── Swoosh In — ultra-fast skewed swipe with motion blur ──────────────── */
.mnb-anim-swooshIn {
    animation: mnb-swooshIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes mnb-swooshIn {
    0%   { transform: translateX(110%) skewX(-12deg) scaleY(0.96); opacity: 0; filter: blur(6px); }
    55%  { transform: translateX(-3%) skewX(2deg) scaleY(1.01); filter: blur(0); }
    75%  { transform: translateX(1%) skewX(-0.5deg); }
    100% { transform: translateX(0) skewX(0) scaleY(1); opacity: 1; filter: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM TRANSITIONS — Outro
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Cross Fade Out ────────────────────────────────────────────────────── */
.mnb-anim-crossfadeOut {
    animation: mnb-crossfadeOut 1s cubic-bezier(0.33, 0, 0.2, 1) both;
}
@keyframes mnb-crossfadeOut {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.96); filter: brightness(0.7); }
}

/* ── Push Out — old slide exits to left ────────────────────────────────── */
.mnb-anim-pushOut {
    animation: mnb-pushOut 0.75s cubic-bezier(0.4, 0, 0.15, 1) both;
}
@keyframes mnb-pushOut {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ── Cinematic Out — darken + scale down ───────────────────────────────── */
.mnb-anim-cinematicOut {
    animation: mnb-cinematicOut 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes mnb-cinematicOut {
    0%   { opacity: 1; transform: scale(1); filter: brightness(1) saturate(1); }
    40%  { filter: brightness(0.4) saturate(0.3); }
    100% { opacity: 0; transform: scale(0.93); filter: brightness(0) saturate(0); }
}

/* ── Reveal Out — stays visible as backdrop, subtle dim ────────────────── */
.mnb-anim-revealOut {
    animation: mnb-revealOut 1s ease both;
}
@keyframes mnb-revealOut {
    0%   { opacity: 1; transform: scale(1); filter: brightness(1); }
    100% { opacity: 0.3; transform: scale(1.03); filter: brightness(0.5); }
}

/* ── Wipe Out — sweeps away to left ────────────────────────────────────── */
.mnb-anim-wipeOut {
    animation: mnb-wipeOut 0.85s cubic-bezier(0.4, 0, 0.15, 1) both;
}
@keyframes mnb-wipeOut {
    0%   { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
    100% { clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); }
}

/* ── 3D Cube Out — rotateY to left face ────────────────────────────────── */
.mnb-anim-cubeOut {
    animation: mnb-cubeOut 0.8s cubic-bezier(0.4, 0, 0.15, 1) both;
    transform-origin: right center;
}
@keyframes mnb-cubeOut {
    0%   { transform: perspective(1400px) rotateY(0deg); filter: brightness(1); }
    60%  { filter: brightness(0.5); }
    100% { transform: perspective(1400px) rotateY(-90deg); filter: brightness(0.3); }
}

/* ── 3D Flip Out — card flip away ──────────────────────────────────────── */
.mnb-anim-flipOut {
    animation: mnb-flipOut 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
    backface-visibility: hidden;
}
@keyframes mnb-flipOut {
    0%   { transform: perspective(1400px) rotateX(0deg); opacity: 1; }
    100% { transform: perspective(1400px) rotateX(90deg); opacity: 0; }
}

/* ── Zoom Drive Out — zoom into oblivion ───────────────────────────────── */
.mnb-anim-zoomDriveOut {
    animation: mnb-zoomDriveOut 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes mnb-zoomDriveOut {
    0%   { transform: scale(1); opacity: 1; filter: blur(0) brightness(1); }
    100% { transform: scale(3); opacity: 0; filter: blur(8px) brightness(2); }
}

/* ── Parallax Out — exits with depth ───────────────────────────────────── */
.mnb-anim-parallaxOut {
    animation: mnb-parallaxOut 0.9s cubic-bezier(0.4, 0, 0.15, 1) both;
}
@keyframes mnb-parallaxOut {
    0%   { transform: translateX(0) scale(1); opacity: 1; filter: brightness(1); }
    100% { transform: translateX(-50%) scale(0.85); opacity: 0; filter: brightness(0.4); }
}

/* ── Glitch Out — digital disintegration ───────────────────────────────── */
.mnb-anim-glitchOut {
    animation: mnb-glitchOut 0.55s steps(1) both;
}
@keyframes mnb-glitchOut {
    0%   { opacity: 1; clip-path: inset(0); }
    15%  { transform: translate(4px, -3px) scaleX(1.03); filter: hue-rotate(120deg) saturate(3); clip-path: inset(0 0 50% 0); }
    30%  { transform: translate(-5px, 4px) scaleX(0.97); filter: hue-rotate(240deg) saturate(2); clip-path: inset(30% 0 20% 0); }
    45%  { transform: translate(0); filter: brightness(5) contrast(3); clip-path: inset(0); }
    55%  { filter: brightness(0.5) contrast(1); opacity: 0.5; }
    70%  { opacity: 0; }
    100% { opacity: 0; clip-path: inset(0); filter: none; transform: none; }
}

/* ── Ken Burns Out — gentle cross-fade ─────────────────────────────────── */
.mnb-anim-kenBurnsOut {
    animation: mnb-kenBurnsOut 1.2s ease both;
}
@keyframes mnb-kenBurnsOut {
    0%   { opacity: 1; }
    100% { opacity: 0; filter: brightness(0.6); }
}

/* ── Swoosh Out — fast exit with skew ──────────────────────────────────── */
.mnb-anim-swooshOut {
    animation: mnb-swooshOut 0.4s cubic-bezier(0.7, 0, 1, 1) both;
}
@keyframes mnb-swooshOut {
    0%   { transform: translateX(0) skewX(0) scaleY(1); opacity: 1; }
    100% { transform: translateX(-110%) skewX(10deg) scaleY(0.96); opacity: 0; filter: blur(4px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .mnb-slide__products {
        bottom: 8px;
        right: 8px;
        max-width: 170px;
        gap: 3px;
    }

    .mnb-product-chip {
        padding: 4px 8px 4px 4px;
        gap: 6px;
        border-radius: 7px;
    }

    .mnb-product-chip__img {
        width: 22px;
        height: 22px;
        border-radius: 5px;
    }

    .mnb-product-chip__name { font-size: 9.5px; }
    .mnb-product-chip__price { font-size: 8.5px; }
}

@media (max-width: 480px) {
    .mnb-slide__products {
        display: none;
    }
}

/* ── Modal mobile — bottom sheet ─────────────────────────────────────────── */

@media (max-width: 768px) {
    .mnb-modal {
        align-items: flex-end;
    }

    .mnb-modal__content {
        width: 100vw;
        max-width: 100vw;
        padding: 20px 16px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        border-radius: 20px 20px 0 0;
        max-height: 85vh;
        max-height: 85dvh;
        animation: mnb-modal-slide-up 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mnb-modal__title {
        font-size: 16px;
        margin: 0 0 14px;
    }

    .mnb-modal__product {
        padding: 10px 12px;
        gap: 10px;
    }

    .mnb-modal__product-img {
        width: 46px;
        height: 46px;
    }

    .mnb-modal__product-name {
        font-size: 13px;
    }

    .mnb-modal__product-price {
        font-size: 12px;
    }
}

@keyframes mnb-modal-slide-up {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Prefers reduced motion ─────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .mnb-slide,
    .mnb-slide--active,
    .mnb-product-chip,
    .mnb-banner__progress-bar {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Professional storefront skin
   Restrains the slideshow to a calm ecommerce presentation.
   ═══════════════════════════════════════════════════════════════════════════ */
.mnb-banner {
    margin-bottom: 14px;
    background: #111316;
    box-shadow: none;
}

.mnb-banner__track {
    aspect-ratio: 21 / 8;
}

.mnb-slide__link {
    position: relative;
}

.mnb-slide__link::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(9, 10, 12, 0.34) 0%, rgba(9, 10, 12, 0.08) 54%, rgba(9, 10, 12, 0.22) 100%),
        linear-gradient(180deg, rgba(9, 10, 12, 0) 58%, rgba(9, 10, 12, 0.34) 100%);
}

.mnb-slide__copy {
    position: absolute;
    left: clamp(16px, 4vw, 52px);
    bottom: clamp(18px, 4vw, 54px);
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: min(420px, 44vw);
    padding: 16px 18px 17px;
    color: #ffffff;
    background: rgba(12, 14, 18, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.mnb-slide:hover .mnb-slide__copy,
.mnb-slide:focus-within .mnb-slide__copy {
    opacity: 1;
    transform: translateY(0);
}

.mnb-slide__copy-kicker {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mnb-slide__copy strong {
    color: #ffffff;
    font-size: clamp(1.05rem, 2vw, 1.62rem);
    font-weight: 820;
    line-height: 1.04;
    letter-spacing: 0;
}

.mnb-slide__copy span:last-child {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.78rem, 1vw, 0.94rem);
    line-height: 1.35;
}

.mnb-slide__img {
    transform-origin: center;
}

.mnb-banner--kenburns .mnb-slide--active .mnb-slide__img {
    animation: mnb-storefront-kenburns 6s ease-out both;
}

@keyframes mnb-storefront-kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.035); }
}

.mnb-slide__products {
    right: clamp(14px, 3vw, 34px);
    bottom: clamp(14px, 2.4vw, 28px);
    gap: 7px;
    max-width: 260px;
}

.mnb-product-chip {
    gap: 9px;
    padding: 7px 11px 7px 7px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 18, 22, 0.72);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.mnb-product-chip:hover {
    transform: translateX(-2px) !important;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(200, 32, 32, 0.88);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.mnb-product-chip__img {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #ffffff;
    object-fit: contain;
}

.mnb-product-chip__name {
    max-width: 178px;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0;
}

.mnb-product-chip__price {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    letter-spacing: 0;
}

.mnb-banner__progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.mnb-banner__progress-bar {
    background: #c82020;
    border-radius: 0;
}

.mnb-modal__content {
    border-radius: 10px;
    background: #ffffff;
    color: #15171a;
    border: 1px solid #e4e8ee;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.mnb-modal__close,
.mnb-modal__title {
    color: #15171a;
}

.mnb-modal__close:hover {
    background: #f3f5f7;
    color: #15171a;
}

.mnb-modal__product {
    border: 1px solid #e4e8ee;
    border-radius: 8px;
    background: #ffffff;
    color: #15171a;
}

.mnb-modal__product:hover {
    transform: translateX(2px);
    border-color: #efb3b3;
    background: #fff7f7;
    color: #15171a;
    box-shadow: 0 8px 24px rgba(21, 23, 26, 0.08);
}

.mnb-modal__product-price {
    color: #68707d;
}

.mnb-modal__product-price ins {
    color: #9f1717;
}

@media (max-width: 900px) {
    .mnb-banner__track {
        aspect-ratio: 16 / 7;
    }

    .mnb-slide__products {
        max-width: 230px;
    }
}

@media (max-width: 640px) {
    .mnb-banner {
        margin-bottom: 10px;
    }

    .mnb-banner__track {
        aspect-ratio: 16 / 10;
    }

    .mnb-slide__products {
        display: none;
    }

    .mnb-slide__copy {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 11px 12px 12px;
        gap: 4px;
        opacity: 1;
        transform: none;
        border-radius: 8px;
        background: linear-gradient(180deg, rgba(12, 14, 18, 0.48), rgba(12, 14, 18, 0.78));
    }

    .mnb-slide__copy-kicker {
        font-size: 0.58rem;
    }

    .mnb-slide__copy strong {
        font-size: clamp(0.92rem, 4vw, 1.12rem);
    }

    .mnb-slide__copy span:last-child {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.72rem;
        line-height: 1.25;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

@media (max-width: 480px) {
    .mnb-slide__products {
        display: none;
    }
}
