/* Edge-to-edge hero with a compact responsive height. */
body.home-page .home-hero {
    width: calc(100% + var(--home-page-gutter) * 2);
    max-width: none;
    margin: 0 calc(-1 * var(--home-page-gutter));
    padding: 0;
}
.home-hero-slider {
    --hero-controls-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
    width: 100%;
    height: 90vh;
    height: 90dvh;
    min-height: 500px;
    border-radius: 0;
    background: #211914;
}
.home-hero-slide { position: relative; height: 100%; overflow: hidden; }
@media (min-width: 992px) {
    body.home-page .home-hero-slider {
        height: 100vh;
        height: 100dvh;
    }
}
.home-hero-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #15100dcc, #15100d40 60%, transparent), linear-gradient(0deg, #15100d80, transparent 35%);
    pointer-events: none;
}
.home-hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px clamp(24px, 7vw, 120px) calc(var(--hero-controls-bottom) + 90px);
    color: #fff;
}
.home-hero-eyebrow { margin-bottom: 22px; font-size: 12px; letter-spacing: 3px; }
.home-hero-title { max-width: 850px; margin: 0 0 32px; font-size: clamp(34px, 5.5vw, 84px); font-weight: 400; line-height: 1.12; }
.home-hero-cta { display: inline-flex; align-items: center; gap: 30px; padding: 16px 28px; border-radius: 50px; background: #e75d39; color: #fff; text-decoration: none; }
.home-hero-cta:hover { background: #b94022; color: #fff; }
.home-hero-arrow { position: absolute; top: 50%; z-index: 2; transform: translateY(-50%); display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid #ffffff70; border-radius: 50%; background: #21191499; color: #fff; font-size: 20px; }
.home-hero-prev { left: clamp(8px, 1.5vw, 24px); }
.home-hero-next { right: clamp(8px, 1.5vw, 24px); }
.home-hero-arrow:hover { background: #e75d39; }
.home-hero-arrow:disabled { opacity: .4; cursor: default; }
.home-hero-controls { position: absolute; z-index: 2; bottom: var(--hero-controls-bottom); left: 50%; transform: translateX(-50%); width: max-content; max-width: calc(100% - 40px); display: flex; align-items: center; gap: 12px; padding: 8px 12px; border: 1px solid #ffffff50; border-radius: 50px; background: #21191499; }
.home-hero-controls button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #fff; font-size: 20px; }
.home-hero-controls button:hover { background: #ffffff25; }
.home-hero-controls button { flex-shrink: 0; }
.home-hero-controls .home-hero-pagination { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 0; width: auto; min-width: 0; max-width: 120px; }
.home-hero-pagination .swiper-pagination-bullet { background: #fff; opacity: .45; }
.home-hero-pagination .swiper-pagination-bullet-active { opacity: 1; }
.home-hero a:focus-visible, .home-hero button:focus-visible, .home-hero-pagination .swiper-pagination-bullet:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
@media (max-width: 991.98px) {
    .home-hero-title { max-width: 100%; font-size: clamp(30px, 6vw, 58px); }
    .home-hero-content { padding-inline: clamp(20px, 5vw, 48px); }
}
@media (max-height: 500px) and (orientation: landscape) {
    .home-hero-slider { --hero-controls-bottom: calc(38px + env(safe-area-inset-bottom, 0px)); min-height: 440px; }
    .home-hero-content { padding-top: 20px; }
    .home-hero-title { font-size: 32px; margin-bottom: 16px; }
    .home-hero-eyebrow { margin-bottom: 10px; }
}
@media (max-width: 767.98px), (max-width: 991.98px) and (max-height: 500px) and (orientation: landscape) {
    .home-hero-slider {
        --hero-controls-bottom: 38px;
        height: clamp(360px, 55svh, 420px);
        min-height: 360px;
    }
    .home-hero-content { justify-content: center; padding: 24px 60px 96px; }
    .home-hero-title { font-size: clamp(26px, 6.5vw, 36px); line-height: 1.16; margin-bottom: 18px; overflow-wrap: break-word; }
    .home-hero-cta { min-height: 44px; padding: 10px 20px; font-size: 13px; gap: 22px; }
    .home-hero-eyebrow { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 12px; }
    .home-hero-slide::after { background: linear-gradient(0deg, #15100de6, #15100d40); }
    .home-hero-controls {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: max-content;
        gap: 6px;
        padding: 6px 8px;
    }
}

/* Subtle glass surfaces over a warm, coral-tinted canvas. */
body.home-page .home-scroll-top {
    position: fixed;
    right: 20px;
    bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    z-index: 1020;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: #e75d39;
    color: #fff;
    box-shadow: 0 6px 20px rgba(127, 64, 41, 0.25);
    cursor: pointer;
}

body.home-page .home-scroll-top[hidden] {
    display: none;
}

body.home-page .home-scroll-top:hover {
    background: #b94022;
}

body.home-page .home-scroll-top:focus-visible {
    outline: 2px solid #b94022;
    outline-offset: 3px;
}

body.home-page main > section.get-to-know-section:not(.top-image) {
    background: #e75d39;
    padding: clamp(18px, 3vw, 36px);
    border-radius: 28px;
    margin-block: 20px;
}

body.home-page .get-to-know .heading,
body.home-page .get-to-know .text {
    color: #fff;
}

body.home-page main > section.limited-stock-section.limited-stock-highlight {
    background: #e75d39;
    padding: clamp(18px, 3vw, 36px);
    border-radius: 28px;
    margin-block: 20px;
}

body.home-page .limited-stock-highlight .heading .title,
body.home-page .limited-stock-highlight .heading .text {
    color: #fff;
}

body.home-page .limited-stock-highlight .heading .icon {
    background-color: var(--home-accent-dark);
}

body.home-page .category-section .category {
    padding: clamp(18px, 3vw, 36px);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.home-page .category-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

body.home-page .category-section .heading .title,
body.home-page .category-section .heading .text {
    color: #fff;
}

body.home-page .category-section .heading .icon {
    background-color: var(--home-accent-dark);
}

body.home-page .category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

body.home-page .category-section .category-item.category-card {
    position: relative;
    justify-content: flex-start;
    padding: 24px 12px 46px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border: 1px solid rgba(231, 93, 57, 0.1);
    box-shadow: 0 4px 16px rgba(97, 48, 32, 0.03);
}

body.home-page .category-card .category-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    max-width: 100%;
    border-radius: 0;
    background: linear-gradient(145deg, #fff6f0, #ffe0d3);
    border: 1px solid #fff;
}

body.home-page .category-section .category-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

body.home-page .category-section .category-card .text {
    color: #302724;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

body.home-page .category-card-arrow {
    position: absolute;
    bottom: 14px;
    color: var(--home-accent-dark);
    font-size: 13px;
}

body.home-page .category-section .category-item.category-card:hover,
body.home-page .category-section .category-item.category-card:focus-visible {
    background: #fff4ee;
    border-color: var(--home-accent);
    box-shadow: 0 10px 24px rgba(231, 93, 57, 0.12);
}

@media (max-width: 991px) {
    body.home-page .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    body.home-page .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.home-page .category-section .container-fluid {
        padding: 0;
    }

    body.home-page .category-section .heading {
        align-items: flex-end !important;
        gap: 8px;
    }

    body.home-page .category-section .heading .title {
        font-size: 20px;
        text-align: left;
    }

    body.home-page .category-section .category-item.category-card {
        padding: 18px 8px 40px;
    }

    body.home-page .category-card .category-image {
        width: 78px;
        height: 78px;
    }
}

body.home-page {
    background: #fff9f6;
    color: #302724;
    --home-glass: rgba(255, 255, 255, 0.82);
    --home-border: rgba(231, 93, 57, 0.12);
    --home-shadow: 0 8px 28px rgba(97, 48, 32, 0.06);
}

body.home-page main {
    --home-page-gutter: clamp(12px, 2.5vw, 40px);
    background:
        radial-gradient(ellipse at 0% 10%, rgba(231, 93, 57, 0.12), transparent 42%),
        radial-gradient(ellipse at 100% 55%, rgba(255, 191, 155, 0.18), transparent 40%);
    padding: 0 var(--home-page-gutter) 40px;
}

body.home-page .top-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    margin-bottom: 16px;
}

body.home-page main > section:not(.top-image):not(.home-hero) {
    background: transparent;
    padding: 28px 0;
}

body.home-page main > section.category-section:not(.top-image):not(.home-hero) {
    border-radius: 0;
    background: #e65b37;
    width: calc(100% + var(--home-page-gutter) * 2);
    margin-inline: calc(-1 * var(--home-page-gutter));
    padding-inline: var(--home-page-gutter);
}

body.home-page .heading {
    gap: 16px;
}

body.home-page .heading .title {
    color: #302724;
    font-size: clamp(21px, 2.2vw, 30px);
    letter-spacing: -0.7px;
    margin-bottom: 0;
}

body.home-page .heading > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

body.home-page .heading .text {
    font-size: 14px;
    font-weight: 600;
}

body.home-page .heading .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 0;
}

body.home-page .heading .icon i {
    font-size: 11px;
}

body.home-page .category-section .category-item,
body.home-page .product-item {
    background: var(--home-glass);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: var(--home-shadow), inset 0 0 0 1px var(--home-border);
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

body.home-page .category-section .category-item {
    padding: 24px 12px;
    height: 100%;
}

body.home-page .category-section .category-item .text {
    font-weight: 600;
    margin-top: 12px;
}

body.home-page .product-item {
    padding: 18px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

body.home-page .product-item .name-type .product-name {
    color: #302724;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.home-page .product-item .product-info,
body.home-page .product-item .name-type {
    display: block;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

body.home-page .product-item .product-name,
body.home-page .product-item .product-card-details {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.home-page .product-item .product-card-details {
    margin-top: 6px;
    color: #87818a;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.home-page .product-item .product-details-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    padding: 8px 12px;
    border: 1px solid var(--home-accent-dark);
    border-radius: 8px;
    color: var(--home-accent-dark);
    background: #fff4ee;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

body.home-page .product-item .product-details-button:hover,
body.home-page .product-item .product-details-button:focus-visible {
    background: var(--home-accent-dark);
    color: #fff;
}

body.home-page .product-item .product-img img {
    object-fit: contain;
}

body.home-page .product-item .bg-svg {
    opacity: 0.35;
}

body.home-page .product-item .add-to-cart {
    border: 1px solid var(--home-border);
    border-radius: 15px;
}

body.home-page .custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 16px rgba(231, 93, 57, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

body.home-page .custom-box-design {
    background: rgba(255, 249, 246, 0.94);
}

body.home-page .banner-section .banner-image img,
body.home-page .flash-sale-banner img,
body.home-page .second-banner-box,
body.home-page .campaign-item .card {
    border-radius: 24px;
    box-shadow: var(--home-shadow);
}

body.home-page .campaign-item .card {
    overflow: hidden;
}

body.home-page .campaign-item .campaign-item-box {
    background: rgba(39, 30, 26, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
}

@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
    body.home-page header.sticky-top,
    body.home-page .campaign-item .campaign-item-box {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    body.home-page .category-section .category-item:hover,
    body.home-page .product-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(97, 48, 32, 0.11);
    }
}

@media (max-width: 575px) {
    body.home-page main {
        --home-page-gutter: 10px;
        padding: 0 var(--home-page-gutter) 24px;
    }

    body.home-page main > section:not(.top-image):not(.home-hero) {
        padding: 20px 0;
    }

    body.home-page .top-image,
    body.home-page .category-section .category-item,
    body.home-page .product-item {
        border-radius: 18px;
    }

    body.home-page .product-item {
        padding: 10px;
    }

    body.home-page .category-section .category-item {
        padding: 18px 10px;
    }

    body.home-page .heading .text {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-page .product-item,
    body.home-page .category-section .category-item,
    body.home-page .category-section .category-item img {
        transition: none;
        transform: none;
    }
}

body.home-page .homepage-products-section .product-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}
body.home-page .homepage-products-section .product-name {
    font-size: clamp(13px, 1.4vw, 17px);
    overflow-wrap: anywhere;
}
body.home-page .homepage-products-section .price { font-size: clamp(14px, 1.5vw, 20px); }
body.home-page .homepage-products-section .add-to-cart {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    cursor: pointer;
}
body.home-page .homepage-products-section .top-tag { align-self: flex-start; }

/* Flash Sale editorial panel and product carousel. */
.flash-sale-shell { display: grid; grid-template-columns: minmax(0, 2fr) minmax(240px, .85fr); grid-template-areas: "products intro"; border: 1px solid #efddd5; background: #fff4ee; overflow: hidden; }
.flash-sale-intro { grid-area: intro; padding: clamp(24px, 3vw, 44px); background: #e65b37; color: #fff; position: relative; }
.flash-sale-kicker { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; margin-bottom: 24px; }
.flash-sale-intro h2 { font-size: clamp(34px, 3.5vw, 52px); line-height: 1.1; margin-bottom: 18px; }
.flash-sale-intro h2 span { display: block; margin-top: 16px; font-size: 22px; line-height: 1.3; font-weight: 400; }
.flash-sale-intro p { font-size: 13px; line-height: 1.8; max-width: 310px; color: #fff2ec; }
.flash-sale-explore { display: inline-flex; align-items: center; gap: 18px; padding: 12px 0; border-bottom: 1px solid #ffffff80; color: #fff; text-decoration: none; }
.flash-sale-explore:hover { color: #fff; border-color: #fff; }
.flash-sale-art { display: block; width: 100%; max-height: 150px; object-fit: contain; margin-top: 24px; }
.home-collection-banner { grid-area: products; min-width: 0; display: flex; flex-direction: column; background: #15241e; color: #fff; }
.home-collection-shell { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: start; gap: clamp(12px, 1.6vw, 24px); }
.home-collection-banner-image { display: block; width: 100%; height: auto; }
.home-collection-shell > .home-collection-banner-image { grid-column: span 3; height: 280px; object-fit: cover; object-position: center; background: #f5f5f3; border-radius: 12px; box-shadow: 0 6px 20px #0000000d; }
.home-collection-shell > .home-collection-banner-image:nth-child(5n + 3),
.home-collection-shell > .home-collection-banner-image:nth-child(5n + 4),
.home-collection-shell > .home-collection-banner-image:nth-child(5n + 5) { grid-column: span 2; }
.home-collection-shell > .home-collection-banner-image:last-child:nth-child(5n + 1),
.home-collection-shell > .home-collection-banner-image:last-child:nth-child(5n + 3) { grid-column: span 6; }
.home-collection-shell > .home-collection-banner-image:nth-last-child(2):nth-child(5n + 3),
.home-collection-shell > .home-collection-banner-image:last-child:nth-child(5n + 4) { grid-column: span 3; }
@media (max-width: 991.98px) {
    .home-collection-shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-collection-shell > .home-collection-banner-image:nth-child(n) { grid-column: span 1; }
    .home-collection-shell > .home-collection-banner-image:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
    .home-collection-shell { grid-template-columns: minmax(0, 1fr); }
    .home-collection-shell > .home-collection-banner-image:nth-child(n) { grid-column: 1 / -1; border-radius: 8px; }
}
.home-collection-banner-content { display: flex; align-items: center; justify-content: center; padding: 16px; }
.home-collection-banner-kicker { display: block; margin-bottom: 14px; color: #e8bc7e; font-size: 11px; font-weight: 600; letter-spacing: 2px; }
.home-collection-banner-content h3 { margin: 0 0 12px; color: #fff; font-size: clamp(26px, 3vw, 42px); line-height: 1.15; letter-spacing: -1px; }
.home-collection-banner-content p { max-width: 390px; margin: 0; color: #d2ddd7; font-size: 14px; line-height: 1.7; }
.home-collection-banner-link { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 48px; padding: 12px 22px; background: #fff; color: #15241e; font-size: 13px; font-weight: 600; text-decoration: none; }
.home-collection-banner-link:hover { background: #e8bc7e; color: #15241e; }
.home-collection-banner-link:focus-visible { outline: 3px solid #e8bc7e; outline-offset: 4px; }
.flash-sale-products { grid-area: products; min-width: 0; padding: clamp(20px, 2.5vw, 36px); }
.flash-sale-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.flash-sale-label { font-size: 10px; letter-spacing: 1.6px; color: #a44c33; }
.flash-sale-toolbar h3 { font-size: clamp(20px, 2vw, 28px); margin: 6px 0 0; color: #302724; }
.flash-sale-navigation { display: flex; gap: 8px; }
.flash-sale-navigation button { width: 44px; height: 44px; border: 1px solid #e9c9bb; border-radius: 50%; background: #fff; color: #b94022; }
.flash-sale-navigation button:hover { background: #ffe3d8; }
.flash-sale-navigation button:disabled { opacity: .35; cursor: default; }
#flash-sale-slider .swiper-slide { height: auto; }
body.storefront-page main .flash-sale-card { height: 100%; display: flex; flex-direction: column; border-radius: 8px; }
.flash-sale-card-label { align-self: center; color: #b94022; background: #fff0e9; padding: 5px 10px; font-size: 10px; margin-bottom: 16px; border-radius: 30px; }
body.storefront-page main .flash-sale-card .product-img { margin-bottom: 16px; }
body.storefront-page main .flash-sale-card .product-img img { width: 100%; height: 160px; object-fit: contain; }
.flash-sale-card .product-info { display: flex; flex-direction: column; flex: 1; }
.flash-sale-card .name-type { flex: 1; }
body.storefront-page main .flash-sale-card .add-to-cart { width: 100%; gap: 8px; border-radius: 6px; font-size: 12px; padding: 10px; }
.flash-sale-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; margin-top: 24px; }
.flash-sale-pagination .swiper-pagination-bullet-active { background: #e65b37; }
.flash-sale-empty { padding: 40px 0; color: #81736d; }
.flash-sale-redesign button:focus-visible, .flash-sale-redesign a:focus-visible { outline: 2px solid #753523; outline-offset: 4px; }
@media (max-width: 767.98px) {
    .flash-sale-shell { grid-template-columns: 1fr; grid-template-areas: "intro" "products"; }
    .flash-sale-intro { padding: 24px; }
    .flash-sale-kicker { margin-bottom: 14px; }
    .flash-sale-intro h2 span { font-size: 18px; }
    .flash-sale-art { max-height: 110px; margin-top: 16px; }
    .flash-sale-products { padding: 20px 16px; }
}

/* Keep the final homepage section flush with the footer. */
body.home-page main { padding-bottom: 0; overflow-x: clip; }
body.home-page main > section.get-to-know-section:not(.top-image) { margin-bottom: 0; }

/* Remove stacked spacing below the campaign cards. */
body.home-page main > section.campaign-section:not(.top-image):not(.home-hero) {
    padding-bottom: 0;
    margin-bottom: 0;
}
body.home-page .campaign-section .campaign-item { padding-bottom: 0; }
body.home-page .campaign-section .campaign > .row > :last-child { margin-bottom: 0 !important; }
body.home-page main > .campaign-section + section.get-to-know-section:not(.top-image) { margin-top: 0; }

body.home-page main > section.brand-video-gallery:not(.top-image):not(.home-hero) {
    position: relative;
    overflow: hidden;
    width: calc(100% + var(--home-page-gutter) * 2);
    margin: 24px calc(-1 * var(--home-page-gutter)) 0;
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
    padding: 32px 0;
    background: #fff;
    color: #111;
}
.brand-video-inner { width: 100%; margin: 0 auto; }
.brand-video-heading { text-align: center; margin-bottom: 28px; }
.brand-video-heading h2 { margin: 0; color: #080808; font-size: clamp(26px, 3vw, 34px); font-weight: 600; letter-spacing: -1px; }
.brand-video-slider { overflow: visible; padding: 0 0 36px; perspective: 1200px; isolation: isolate; }
.brand-video-slider .swiper-slide { width: 88%; }
.brand-video-frame { position: relative; height: calc(100vh - 240px); height: calc(100svh - 240px); min-height: 280px; overflow: hidden; border-radius: 12px; background: #151515; box-shadow: 0 16px 40px #0002; }
.brand-video-slider.swiper-initialized .brand-video-frame { filter: blur(3px); transition: filter .65s, opacity .65s; opacity: .8; }
.brand-video-slider.swiper-initialized .swiper-slide-active .brand-video-frame { filter: none; opacity: 1; }
.brand-video-slider.swiper-initialized .swiper-slide-active { position: relative; }
.brand-video-slider.swiper-initialized .swiper-slide:not(.swiper-slide-active) .brand-video-play { background: #24242480; }
.brand-video-poster { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-video-play { position: absolute; inset: 0; margin: auto; width: 68px; height: 48px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 14px; background: #ff0033; color: #fff; cursor: pointer; z-index: 2; transition: background .2s; }
.brand-video-play span { display: grid; place-items: center; }
.brand-video-play i { font-size: 34px; margin-left: 3px; }
.brand-video-play:hover { background: #d9002b; }
.brand-video-frame iframe { position: absolute; inset: 0; z-index: 3; display: block; width: 100%; height: 100%; border: 0; background: #000; }
.brand-video-controls[hidden], .brand-video-play[hidden] { display: none; }
.brand-video-pagination { position: absolute; bottom: 0 !important; display: flex; justify-content: center; gap: 6px; }
.brand-video-pagination .swiper-pagination-bullet { background: #111; }
.brand-video-controls { position: absolute; inset: 0; z-index: 100; pointer-events: none; }
.brand-video-controls button, .brand-video-controls .swiper-pagination-bullet { pointer-events: auto; }
.brand-video-arrows button { position: absolute; top: calc(50% - 42px); z-index: 5; display: grid; place-items: center; width: 48px; height: 48px; border: 0; border-radius: 50%; background: #0006; color: #fff; font-size: 23px; cursor: pointer; }
.brand-video-prev { left: 3%; }
.brand-video-next { right: 3%; }
.brand-video-arrows button:hover { background: #000a; }
.brand-video-gallery button:focus-visible, .brand-video-gallery .swiper-pagination-bullet:focus-visible { outline: 2px solid #16854b; outline-offset: 4px; }
.brand-video-empty { height: 100%; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 20px; text-align: center; color: #fff; }
.brand-video-empty i { font-size: 48px; }
.brand-video-empty p { margin: 0; }
.brand-video-slider:not(.swiper-initialized) > .swiper-wrapper { display: grid; justify-items: center; gap: 24px; }
@media (max-width: 767.98px) {
    .brand-video-heading { margin-bottom: 28px; }
    .brand-video-slider .swiper-slide { width: 90%; }
    .brand-video-frame { border-radius: 8px; }
    .brand-video-prev { left: 2%; }
    .brand-video-next { right: 2%; }
    .brand-video-arrows button { width: 36px; height: 36px; top: calc(50% - 36px); font-size: 18px; }
    .brand-video-play { width: 56px; height: 40px; border-radius: 10px; }
}
@media (prefers-reduced-motion: reduce) {
    .brand-video-slider.swiper-initialized .brand-video-frame, .brand-video-play { transition: none; }
}
