/* =====================================
   HOMEPAGE SHARED
===================================== */

.mbs-home-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.mbs-home-container {
    width: min(calc(100% - 52px), var(--mbs-container));
    margin: 0 auto;
}

.mbs-home-page img {
    display: block;
    max-width: 100%;
}

.mbs-home-page a {
    text-decoration: none;
}

/* =====================================
   HERO SLIDER
===================================== */

.mbs-home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    background: var(--mbs-navy);
}

.mbs-home-hero-slides {
    position: absolute;
    inset: 0;
}

.mbs-home-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.07);
    will-change: opacity, transform;
    transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 6.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mbs-home-hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mbs-home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(6, 12, 22, 0.88) 0%,
            rgba(6, 12, 22, 0.62) 38%,
            rgba(6, 12, 22, 0.18) 72%,
            rgba(6, 12, 22, 0.04) 100%
        );
}

.mbs-home-hero-content-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.mbs-home-hero-content {
    width: min(100%, 650px);
    padding-top: calc(
        var(--mbs-announcement-height) +
        var(--mbs-header-height) +
        40px
    );
    color: #ffffff;
    pointer-events: auto;
}

.mbs-home-hero-kicker {
    margin: 0 0 18px;
    color: var(--mbs-primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mbs-home-hero-title {
    max-width: 680px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(50px, 5.6vw, 86px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.mbs-home-hero-description {
    max-width: 550px;
    margin: 0 0 35px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
}

.mbs-home-hero-button {
    min-height: 52px;
    padding: 0 34px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: #ffffff;
    color: var(--mbs-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.mbs-home-hero-button:hover {
    border-color: var(--mbs-primary);
    background: var(--mbs-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.mbs-home-hero-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.mbs-home-hero-button:hover svg {
    transform: translateX(4px);
}

.mbs-home-hero-text,
.mbs-home-hero-kicker {
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.mbs-home-hero-content.is-changing .mbs-home-hero-text,
.mbs-home-hero-content.is-changing .mbs-home-hero-kicker {
    opacity: 0;
    transform: translateY(10px);
}

/* =====================================
   HERO CONTROLS
===================================== */

.mbs-home-hero-navigation {
    position: absolute;
    bottom: 34px;
    left: 50%;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.mbs-home-hero-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mbs-home-hero-dot {
    width: 32px;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}

.mbs-home-hero-dot.is-active {
    width: 52px;
    background: var(--mbs-primary);
}

.mbs-home-hero-arrow {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.mbs-home-hero-arrow:hover {
    border-color: var(--mbs-primary);
    background: var(--mbs-primary);
}

.mbs-home-hero-arrow svg {
    width: 18px;
    height: 18px;
}

.mbs-home-hero-scroll {
    position: absolute;
    right: 28px;
    bottom: 34px;
    z-index: 8;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mbs-home-hero-scroll:hover {
    color: #ffffff;
}

.mbs-home-hero-scroll svg {
    width: 18px;
    height: 18px;
    animation: mbsHomeScroll 1.8s ease-in-out infinite;
}

@keyframes mbsHomeScroll {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* =====================================
   EMPTY HERO
===================================== */

.mbs-home-hero-empty {
    min-height: 720px;
    padding-top: calc(
        var(--mbs-announcement-height) +
        var(--mbs-header-height) +
        80px
    );
    background:
        linear-gradient(
            120deg,
            rgba(8, 20, 35, 1),
            rgba(8, 20, 35, 0.86)
        );
    color: #ffffff;
    display: flex;
    align-items: center;
}

.mbs-home-hero-empty-content {
    max-width: 650px;
}

.mbs-home-hero-empty h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(48px, 5vw, 78px);
    line-height: 1;
}

.mbs-home-hero-empty p:not(.mbs-home-hero-kicker) {
    max-width: 580px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
}

/* =====================================
   SECTION HEADERS
===================================== */

.mbs-home-section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.mbs-home-section-kicker {
    margin: 0 0 12px;
    color: var(--mbs-primary);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mbs-home-section-header h2,
.mbs-home-products-header h2,
.mbs-home-editorial-content h2 {
    margin: 0;
    color: var(--mbs-navy);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.mbs-home-section-header h2 {
    margin-bottom: 15px;
}

.mbs-home-section-header > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--mbs-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* =====================================
   SHOP BY CATEGORY
===================================== */

.mbs-home-categories {
    padding: clamp(70px, 7vw, 105px) 0;
    background: #ffffff;
}

.mbs-home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.mbs-home-category-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--mbs-border);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.mbs-home-category-card:hover {
    border-color: rgba(0, 185, 142, 0.3);
    box-shadow: 0 24px 65px rgba(8, 20, 35, 0.09);
    transform: translateY(-7px);
}

.mbs-home-category-card > a {
    display: block;
    color: inherit;
}

.mbs-home-category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f3f3;
}

.mbs-home-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.75s ease;
}

.mbs-home-category-card:hover .mbs-home-category-image img {
    transform: scale(1.06);
}

.mbs-home-category-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(8, 20, 35, 0) 55%,
            rgba(8, 20, 35, 0.42) 100%
        );
}

.mbs-home-category-count {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--mbs-navy);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.mbs-home-category-content {
    padding: 23px 18px 25px;
    text-align: center;
}

.mbs-home-category-content h3 {
    margin: 0 0 12px;
    color: var(--mbs-navy);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}

.mbs-home-category-link {
    color: var(--mbs-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mbs-home-category-link svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.mbs-home-category-card:hover .mbs-home-category-link svg {
    transform: translateX(4px);
}

/* =====================================
   PRODUCT SECTIONS
===================================== */

.mbs-home-products-section {
    padding: clamp(72px, 7vw, 110px) 0;
    background: #ffffff;
}

.mbs-home-featured-products {
    background: #f8f8f6;
}

.mbs-home-new-products {
    background: #ffffff;
}

.mbs-home-best-sellers {
    background: #f8f8f6;
}

.mbs-home-products-header {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.mbs-home-products-header > div {
    min-width: 0;
}

.mbs-home-view-all {
    min-height: 42px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--mbs-navy);
    color: var(--mbs-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex: 0 0 auto;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.mbs-home-view-all:hover {
    color: var(--mbs-primary);
    border-color: var(--mbs-primary);
}

.mbs-home-view-all svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
}

.mbs-home-view-all:hover svg {
    transform: translateX(4px);
}

/* =====================================
   PRODUCT GRID
===================================== */

.mbs-home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 22px;
}

.mbs-home-product-card {
    min-width: 0;
}

.mbs-home-product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #efefed;
}

.mbs-home-product-image-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.mbs-home-product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        opacity 0.55s ease,
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mbs-home-product-primary-image {
    z-index: 1;
    opacity: 1;
}

.mbs-home-product-secondary-image {
    z-index: 2;
    opacity: 0;
    transform: scale(1.04);
}

.mbs-home-product-card:hover .mbs-home-product-primary-image {
    transform: scale(1.05);
}

.mbs-home-product-card:hover .mbs-home-product-secondary-image {
    opacity: 1;
    transform: scale(1);
}

.mbs-home-product-badges {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    pointer-events: none;
}

.mbs-home-product-badge {
    min-height: 25px;
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mbs-home-product-badge.is-sale {
    background: var(--mbs-primary);
    color: #ffffff;
}

.mbs-home-product-badge.is-featured {
    background: var(--mbs-navy);
    color: #ffffff;
}

.mbs-home-product-badge.is-out-of-stock {
    background: #ffffff;
    color: #8b3030;
}

.mbs-home-product-actions {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mbs-home-product-quick-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(8, 20, 35, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--mbs-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(12px);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(8, 20, 35, 0.08);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease;
}

.mbs-home-product-quick-link:hover {
    background: var(--mbs-primary);
    color: #ffffff;
}

.mbs-home-product-quick-link svg {
    width: 18px;
    height: 18px;
}

.mbs-home-product-card:hover .mbs-home-product-quick-link {
    opacity: 1;
    transform: translateX(0);
}

.mbs-home-product-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 7;
    min-height: 47px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.96);
    color: var(--mbs-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    opacity: 0;
    transform: translateY(18px);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.mbs-home-product-button:hover {
    border-color: var(--mbs-primary);
    background: var(--mbs-primary);
    color: #ffffff;
}

.mbs-home-product-button svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.mbs-home-product-card:hover .mbs-home-product-button {
    opacity: 1;
    transform: translateY(0);
}

.mbs-home-product-button.loading {
    opacity: 0.7;
    pointer-events: none;
}

.mbs-home-product-button.added {
    border-color: var(--mbs-primary);
    background: var(--mbs-primary);
    color: #ffffff;
}

.mbs-home-product-image-wrap .added_to_cart {
    position: absolute;
    right: 12px;
    bottom: 67px;
    left: 12px;
    z-index: 8;
    min-height: 40px;
    padding: 0 15px;
    background: var(--mbs-navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =====================================
   PRODUCT CONTENT
===================================== */

.mbs-home-product-content {
    padding: 17px 2px 0;
}

.mbs-home-product-category {
    min-height: 16px;
    margin-bottom: 7px;
    color: var(--mbs-muted);
    font-size: 9px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mbs-home-product-category a {
    color: inherit;
    transition: color 0.25s ease;
}

.mbs-home-product-category a:hover {
    color: var(--mbs-primary);
}

.mbs-home-product-title {
    margin: 0 0 9px;
    color: var(--mbs-navy);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.mbs-home-product-title a {
    color: inherit;
    transition: color 0.25s ease;
}

.mbs-home-product-title a:hover {
    color: var(--mbs-primary);
}

.mbs-home-product-price {
    color: var(--mbs-navy);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.mbs-home-product-price .woocommerce-Price-amount {
    color: inherit;
}

.mbs-home-product-price del {
    color: #999999;
    font-size: 12px;
    font-weight: 400;
    opacity: 1;
}

.mbs-home-product-price del .woocommerce-Price-amount {
    color: inherit;
}

.mbs-home-product-price ins {
    color: var(--mbs-primary);
    font-weight: 700;
    text-decoration: none;
}

/* =====================================
   EDITORIAL BANNER
===================================== */

.mbs-home-editorial {
    padding: clamp(75px, 8vw, 125px) 0;
    background: var(--mbs-navy);
    overflow: hidden;
}

.mbs-home-editorial-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
}

.mbs-home-editorial-content {
    padding: clamp(55px, 7vw, 105px);
    background: #f3f0eb;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.mbs-home-editorial-content h2 {
    margin-bottom: 25px;
    max-width: 520px;
}

.mbs-home-editorial-content > p:not(.mbs-home-section-kicker) {
    max-width: 530px;
    margin: 0 0 34px;
    color: var(--mbs-muted);
    font-size: 16px;
    line-height: 1.9;
}

.mbs-home-editorial-button {
    min-height: 49px;
    padding: 0 28px;
    border: 1px solid var(--mbs-navy);
    background: var(--mbs-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.mbs-home-editorial-button:hover {
    border-color: var(--mbs-primary);
    background: var(--mbs-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.mbs-home-editorial-button svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
}

.mbs-home-editorial-button:hover svg {
    transform: translateX(4px);
}

.mbs-home-editorial-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #e8e8e8;
}

.mbs-home-editorial-image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 35, 0.12),
            rgba(8, 20, 35, 0)
        );
}

.mbs-home-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.mbs-home-editorial-image:hover img {
    transform: scale(1.04);
}

/* =====================================
   EMPTY SECTIONS
===================================== */

.mbs-home-empty-section,
.mbs-home-categories-empty {
    padding: 45px 25px;
    border: 1px solid var(--mbs-border);
    background: #ffffff;
    text-align: center;
}

.mbs-home-featured-products .mbs-home-empty-section,
.mbs-home-best-sellers .mbs-home-empty-section {
    background: #ffffff;
}

.mbs-home-empty-section p,
.mbs-home-categories-empty p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--mbs-muted);
    font-size: 15px;
    line-height: 1.8;
}

.mbs-home-categories-empty a {
    margin-top: 18px;
    color: var(--mbs-primary);
    display: inline-block;
    font-weight: 600;
}

/* =====================================
   LARGE DESKTOP
===================================== */

@media (min-width: 1440px) {
    .mbs-home-product-grid {
        gap: 38px 26px;
    }

    .mbs-home-product-title {
        font-size: 19px;
    }
}

/* =====================================
   LARGE TABLET
===================================== */

@media (max-width: 1200px) {
    .mbs-home-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mbs-home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mbs-home-editorial-grid {
        min-height: 560px;
    }

    .mbs-home-editorial-image {
        min-height: 560px;
    }

    .mbs-home-editorial-content {
        padding: 60px;
    }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {
    .mbs-home-container {
        width: calc(100% - 36px);
    }

    .mbs-home-hero {
        min-height: 650px;
    }

    .mbs-home-hero-content {
        width: min(100%, 590px);
    }

    .mbs-home-hero-title {
        font-size: clamp(46px, 7vw, 72px);
    }

    .mbs-home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .mbs-home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 18px;
    }

    .mbs-home-hero-scroll {
        display: none;
    }

    .mbs-home-editorial-grid {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .mbs-home-editorial-content {
        min-height: 480px;
        padding: 65px 55px;
        order: 2;
    }

    .mbs-home-editorial-image {
        min-height: 550px;
        order: 1;
    }

    .mbs-home-product-button,
    .mbs-home-product-quick-link {
        opacity: 1;
        transform: none;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 640px) {
    .mbs-home-container {
        width: calc(100% - 32px);
    }

    .mbs-home-hero {
        height: 100svh;
        min-height: 620px;
    }

    .mbs-home-hero-slide {
        background-position: center top;
    }

    .mbs-home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 12, 22, 0.05) 0%,
                rgba(6, 12, 22, 0.12) 34%,
                rgba(6, 12, 22, 0.58) 69%,
                rgba(6, 12, 22, 0.94) 100%
            );
    }

    .mbs-home-hero-content-layer {
        align-items: flex-end;
    }

    .mbs-home-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 0 105px;
    }

    .mbs-home-hero-kicker {
        margin-bottom: 11px;
        font-size: 9px;
        letter-spacing: 0.15em;
    }

    .mbs-home-hero-title {
        margin-bottom: 19px;
        font-size: clamp(35px, 10vw, 50px);
        line-height: 0.98;
    }

    .mbs-home-hero-description {
        display: none;
    }

    .mbs-home-hero-button {
        min-height: 45px;
        padding: 0 24px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .mbs-home-hero-navigation {
        bottom: 30px;
        gap: 10px;
    }

    .mbs-home-hero-arrow {
        width: 34px;
        height: 34px;
    }

    .mbs-home-hero-dot {
        width: 20px;
    }

    .mbs-home-hero-dot.is-active {
        width: 34px;
    }

    .mbs-home-categories,
    .mbs-home-products-section {
        padding: 65px 0;
    }

    .mbs-home-section-header {
        margin-bottom: 34px;
    }

    .mbs-home-section-header h2,
    .mbs-home-products-header h2,
    .mbs-home-editorial-content h2 {
        font-size: 38px;
    }

    .mbs-home-section-header > p:last-child {
        font-size: 14px;
    }

    .mbs-home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mbs-home-category-content {
        padding: 17px 10px 19px;
    }

    .mbs-home-category-content h3 {
        margin-bottom: 9px;
        font-size: 18px;
    }

    .mbs-home-category-link {
        font-size: 8px;
    }

    .mbs-home-category-count {
        right: 8px;
        bottom: 8px;
        padding: 5px 7px;
        font-size: 7px;
    }

    .mbs-home-products-header {
        margin-bottom: 32px;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .mbs-home-view-all {
        min-height: 34px;
        padding-bottom: 6px;
        font-size: 9px;
    }

    .mbs-home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 12px;
    }

    .mbs-home-product-image-wrap {
        aspect-ratio: 3 / 4;
    }

    .mbs-home-product-badges {
        top: 8px;
        left: 8px;
        gap: 5px;
    }

    .mbs-home-product-badge {
        min-height: 21px;
        padding: 5px 7px;
        font-size: 6px;
    }

    .mbs-home-product-actions {
        top: 8px;
        right: 8px;
    }

    .mbs-home-product-quick-link {
        width: 34px;
        height: 34px;
    }

    .mbs-home-product-quick-link svg {
        width: 16px;
        height: 16px;
    }

    .mbs-home-product-button {
        right: 7px;
        bottom: 7px;
        left: 7px;
        min-height: 39px;
        padding: 0 8px;
        gap: 6px;
        font-size: 7px;
        letter-spacing: 0.08em;
    }

    .mbs-home-product-button svg {
        width: 14px;
        height: 14px;
    }

    .mbs-home-product-content {
        padding-top: 12px;
    }

    .mbs-home-product-category {
        margin-bottom: 5px;
        font-size: 7px;
        letter-spacing: 0.08em;
    }

    .mbs-home-product-title {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.35;
    }

    .mbs-home-product-price {
        gap: 5px;
        font-size: 12px;
    }

    .mbs-home-product-price del {
        font-size: 10px;
    }

    .mbs-home-editorial {
        padding: 0;
    }

    .mbs-home-editorial .mbs-home-container {
        width: 100%;
    }

    .mbs-home-editorial-image {
        min-height: 470px;
    }

    .mbs-home-editorial-content {
        min-height: 430px;
        padding: 55px 28px;
    }

    .mbs-home-editorial-content h2 {
        margin-bottom: 20px;
    }

    .mbs-home-editorial-content > p:not(.mbs-home-section-kicker) {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.8;
    }

    .mbs-home-editorial-button {
        min-height: 45px;
        padding: 0 22px;
        font-size: 9px;
    }

    .mbs-home-empty-section {
        padding: 35px 20px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 390px) {
    .mbs-home-category-grid {
        grid-template-columns: 1fr;
    }

    .mbs-home-category-content h3 {
        font-size: 22px;
    }

    .mbs-home-product-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mbs-home-product-image-wrap {
        aspect-ratio: 4 / 5;
    }

    .mbs-home-product-title {
        font-size: 17px;
    }

    .mbs-home-product-price {
        font-size: 14px;
    }

    .mbs-home-product-button {
        min-height: 44px;
        font-size: 8px;
    }
}

/* =====================================
   HOVER CAPABILITY
===================================== */

@media (hover: none) {
    .mbs-home-product-secondary-image {
        display: none;
    }

    .mbs-home-product-quick-link,
    .mbs-home-product-button {
        opacity: 1;
        transform: none;
    }
}

/* =====================================
   REDUCED MOTION
===================================== */

@media (prefers-reduced-motion: reduce) {
    .mbs-home-hero-slide,
    .mbs-home-hero-text,
    .mbs-home-hero-kicker,
    .mbs-home-hero-button,
    .mbs-home-category-card,
    .mbs-home-category-image img,
    .mbs-home-product-image,
    .mbs-home-product-button,
    .mbs-home-product-quick-link,
    .mbs-home-editorial-image img {
        transition: none;
    }

    .mbs-home-hero-scroll svg {
        animation: none;
    }
}