.mfp-prototype-label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 18px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(255,255,255,0.72);
    color: var(--mfp-accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.mfp-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.mfp-product-badges .mfp-prototype-label {
    margin: 0;
    text-decoration: none;
}

.mfp-product-badges .mfp-prototype-label--line {
    background: var(--mfp-accent-strong);
    border-color: var(--mfp-accent-strong);
    color: var(--mfp-bg);
}

.mfp-prototype-label-text-mobile {
    display: none;
}

html[data-theme="dark"] .mfp-prototype-label {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

html[data-theme="dark"] .mfp-product-badges .mfp-prototype-label--line {
    background: var(--mfp-accent-strong);
    border-color: var(--mfp-accent-strong);
    color: var(--mfp-bg);
}

@media (max-width: 720px) {
    .mfp-prototype-label--line .mfp-prototype-label-text {
        display: none;
    }

    .mfp-prototype-label--line .mfp-prototype-label-text-mobile {
        display: inline;
    }
}

.mfp-split-page {
    overflow: visible;
}

.mfp-fullbleed-page {
    overflow: visible;
}

.mfp-split-page .mfp-container,
.mfp-fullbleed-page .mfp-container {
    width: min(1680px, calc(100% - 72px));
}

.mfp-split-hero {
    padding: 96px 0 42px;
    overflow: visible;
}

.mfp-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
    gap: 38px;
    align-items: start;
    overflow: visible;
}

.mfp-split-layout > .mfp-summary {
    position: sticky;
    top: 96px;
    align-self: start;
    height: max-content;
}

body.admin-bar .mfp-split-layout > .mfp-summary {
    top: 128px;
}

.mfp-split-gallery {
    display: grid;
    gap: 22px;
    transition: opacity 180ms ease, transform 180ms ease;
    will-change: opacity, transform;
}

.mfp-split-gallery.is-gallery-updating {
    opacity: 0.18;
    transform: translateY(6px);
    pointer-events: none;
}

.mfp-split-gallery.is-gallery-ready {
    opacity: 1;
    transform: translateY(0);
}

.mfp-split-gallery.is-gallery-ready .mfp-split-media {
    animation: mfp-gallery-media-in 260ms ease both;
}

@keyframes mfp-gallery-media-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mfp-split-media {
    position: relative;
    min-height: 760px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--mfp-radius-lg);
    background: #e9e2d9;
    box-shadow: var(--mfp-shadow);
}

.mfp-split-media > a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}

.mfp-split-media img,
.mfp-split-media video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
    object-position: center top;
}

.mfp-mixed-mobile-hero {
    display: none;
}

.mfp-mixed-info-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 34px;
    align-items: start;
}

.mfp-mixed-info-left,
.mfp-mixed-info-right {
    min-width: 0;
}

.mfp-mixed-info-layout .mfp-story {
    display: block;
}

.mfp-mixed-info-layout .mfp-story-card h2 {
    font-size: clamp(36px, 3vw, 48px);
}

.mfp-mixed-info-right {
    display: grid;
    gap: 24px;
}

.mfp-mixed-info-right .mfp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mfp-mixed-info-right .mfp-detail-card {
    position: static;
}

.mfp-product-tabs-panel {
    border: 1px solid var(--mfp-border);
    border-radius: var(--mfp-radius);
    background: var(--mfp-card);
    box-shadow: var(--mfp-shadow-soft);
    padding-right: 24px;
    padding-left: 24px;
}

.mfp-product-tabs-panel .woocommerce-tabs {
    display: grid;
    gap: 22px;
}

.mfp-product-tabs-panel .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mfp-product-tabs-panel .tabs li {
    margin: 0;
}

.mfp-product-tabs-panel .tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    background: color-mix(in srgb, var(--mfp-card-strong) 72%, transparent);
    color: var(--mfp-text-soft);
    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.mfp-product-tabs-panel .tabs li.active a,
.mfp-product-tabs-panel .tabs a:hover {
    border-color: color-mix(in srgb, var(--mfp-accent-strong) 34%, transparent);
    background: var(--mfp-accent-soft);
    color: var(--mfp-accent-strong);
}

.mfp-product-tabs-panel .woocommerce-Tabs-panel {
    display: none;
    color: var(--mfp-text-soft);
    font-size: 15px;
    line-height: 1.72;
}

.mfp-product-tabs-panel .woocommerce-Tabs-panel.is-active {
    display: block;
}

.mfp-product-tabs-panel .woocommerce-Tabs-panel.is-entering {
    animation: mfp-product-tab-enter 0.22s ease both;
}

@keyframes mfp-product-tab-enter {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mfp-product-tabs-panel .woocommerce-Tabs-panel > h2:first-child {
    margin: 0 0 14px;
    color: var(--mfp-text);
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.mfp-product-tabs-panel .woocommerce-Tabs-panel p {
    margin: 0 0 16px;
}

.mfp-product-tabs-panel .shop_attributes {
    width: 100%;
    border-collapse: collapse;
    color: var(--mfp-text-soft);
    font-size: 14px;
}

.mfp-product-tabs-panel .shop_attributes th,
.mfp-product-tabs-panel .shop_attributes td {
    padding: 12px 0;
    border-bottom: 1px solid var(--mfp-border);
    vertical-align: top;
    text-align: left;
}

.mfp-product-tabs-panel .shop_attributes th {
    width: 42%;
    padding-right: 16px;
    color: var(--mfp-text);
    font-weight: 750;
}

.mfp-product-tabs-panel .shop_attributes p {
    margin: 0;
}

.mfp-mini-cart-modal {
    width: min(560px, calc(100% - 32px));
}

.mfp-mini-cart-added {
    padding: 34px;
}

.mfp-mini-cart-added h2 {
    margin: 0;
    color: var(--mfp-text);
    font-family: var(--mfp-font-display);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 0.92;
}

.mfp-mini-cart-product {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    margin: 24px 0;
    align-items: center;
}

.mfp-mini-cart-product img {
    width: 104px;
    aspect-ratio: 4 / 5.6;
    object-fit: cover;
    border-radius: 18px;
}

.mfp-mini-cart-product strong,
.mfp-mini-cart-product span {
    display: block;
}

.mfp-mini-cart-product strong {
    margin-bottom: 8px;
    color: var(--mfp-text);
    font-size: 22px;
}

.mfp-mini-cart-price {
    display: flex !important;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    line-height: 1.2;
}

.mfp-mini-cart-price del,
.mfp-mini-cart-price ins {
    display: inline;
    text-decoration-thickness: 1px;
}

.mfp-mini-cart-price ins {
    color: var(--mfp-accent-strong);
    text-decoration: none;
}

.mfp-mini-cart-price .amount {
    display: inline-flex;
    align-items: baseline;
    width: auto !important;
    min-width: max-content;
    color: var(--mfp-text);
    font-size: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.mfp-mini-cart-price .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.mfp-mini-cart-product span {
    color: var(--mfp-text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.mfp-mini-cart-product .mfp-mini-cart-meta {
    margin-top: 4px;
}

.mfp-mini-cart-actions {
    display: grid;
    gap: 10px;
}

.mfp-split-media figcaption,
.mfp-fullbleed-panel span {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(255,255,255,0.62);
    color: #2f2b28;
    font-size: 13px;
    font-weight: 750;
    backdrop-filter: blur(12px);
}

.mfp-split-summary {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 20px;
}

.mfp-split-summary .mfp-breadcrumbs {
    display: none;
}

.mfp-split-summary .mfp-brand {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
}

.mfp-split-summary h1 {
    margin-top: 14px;
    font-size: clamp(34px, 3.3vw, 46px);
    line-height: 0.92;
}

.mfp-split-summary .mfp-price {
    margin-top: 14px;
    font-size: 22px;
}

.mfp-split-summary .mfp-short {
    display: none;
}

.mfp-split-summary .mfp-stock-row {
    gap: 8px;
    margin-top: 14px;
}

.mfp-split-summary .mfp-stock-row .mfp-pill:nth-child(3) {
    display: none;
}

.mfp-split-summary .mfp-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
}

.mfp-split-summary .mfp-choice-block {
    margin-top: 18px;
}

.mfp-split-summary .mfp-choice-head {
    margin-bottom: 9px;
}

.mfp-split-summary .mfp-swatches {
    gap: 8px;
}

.mfp-split-summary .mfp-swatch {
    min-height: 38px;
    min-width: 42px;
    padding: 0 12px;
}

.mfp-split-summary .mfp-cup {
    min-width: 142px;
    min-height: 56px;
    padding: 9px 12px;
    border-radius: 16px;
}

.mfp-split-summary .mfp-buy-row {
    grid-template-columns: 106px 1fr;
    margin-top: 20px;
}

.mfp-split-summary .mfp-qty {
    min-height: 50px;
}

.mfp-split-summary .mfp-qty button {
    height: 50px;
}

.mfp-split-summary .mfp-button {
    min-height: 50px;
}

.mfp-split-summary .mfp-secondary-actions {
    display: none;
}

.mfp-fullbleed-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
    background-color: #20232b;
    background-image: var(--mfp-fullbleed-hero-bg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    isolation: isolate;
}

.mfp-fullbleed-hero-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    will-change: auto;
    opacity: 0;
}

.mfp-fullbleed-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), transparent 22%, rgba(0,0,0,0.18)),
        radial-gradient(ellipse at 50% 18%, transparent 0, transparent 42%, rgba(0,0,0,0.24) 100%);
    mix-blend-mode: soft-light;
    opacity: 0.72;
}

.mfp-fullbleed-shade {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(17,18,22,0.58), rgba(17,18,22,0.16) 45%, rgba(17,18,22,0.72)),
        linear-gradient(0deg, rgba(17,18,22,0.48), rgba(17,18,22,0.10) 45%, rgba(17,18,22,0.32));
}

.mfp-fullbleed-content {
    position: relative;
    z-index: 2;
    width: min(1680px, calc(100% - 72px));
    min-height: 100svh;
    margin: 0 auto;
    padding: 112px 0 42px;
    display: flex;
    align-items: flex-end;
}

.mfp-fullbleed-copy {
    max-width: 760px;
    padding-bottom: 18px;
}

.mfp-fullbleed-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.mfp-fullbleed-hero-pills .mfp-brand,
.mfp-fullbleed-hero-pills a,
.mfp-fullbleed-hero-pills span:not(.mfp-brand) {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    backdrop-filter: blur(12px);
}

.mfp-fullbleed-copy h1 {
    margin: 18px 0 0;
    font-family: var(--mfp-font-display);
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.86;
    letter-spacing: 0;
    font-weight: 700;
    text-wrap: balance;
}

.mfp-fullbleed-copy > p {
    width: 75%;
    max-width: none;
    margin: 20px 0 0;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.62;
}

.mfp-fullbleed-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.mfp-round-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.18);
    color: #fff;
    box-shadow:
        0 14px 34px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.22);
    backdrop-filter: blur(16px);
    cursor: pointer;
    transition:
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.mfp-round-action:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.48);
    background: rgba(255,255,255,0.26);
    box-shadow:
        0 18px 42px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.28);
}

.mfp-round-action .mfp-icon {
    width: 20px;
    height: 20px;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: currentColor;
}

.mfp-fullbleed-hero-cta {
    min-width: 176px;
}

.mfp-fullbleed-summary {
    position: relative;
    top: auto;
    background: rgba(255,255,255,0.84);
    border-color: rgba(255,255,255,0.66);
    backdrop-filter: blur(22px);
}

html[data-theme="dark"] .mfp-fullbleed-summary {
    background: rgba(31,32,39,0.84);
    border-color: rgba(255,255,255,0.12);
}

.mfp-fullbleed-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.mfp-fullbleed-summary-head strong {
    display: block;
    color: var(--mfp-text-muted);
    font-size: 13px;
}

.mfp-fullbleed-summary .mfp-price {
    margin-top: 8px;
}

.mfp-fullbleed-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #15171d;
}

.mfp-fullbleed-panel {
    position: relative;
    min-height: 68svh;
    overflow: hidden;
    margin: 0;
}

.mfp-fullbleed-panel img,
.mfp-fullbleed-panel video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 68svh;
    object-fit: cover;
    object-position: center top;
}

.mfp-fullbleed-repeat-section {
    padding: 28px 0 18px;
    overflow: visible;
}

.mfp-fullbleed-repeat-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    overflow: visible;
}

.mfp-fullbleed-repeat-left,
.mfp-fullbleed-repeat-right {
    display: grid;
    gap: 22px;
    align-items: start;
}

.mfp-fullbleed-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.mfp-fullbleed-info-grid .mfp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    height: 100%;
}

.mfp-fullbleed-repeat-layout .mfp-feature-card {
    padding: 20px;
}

.mfp-fullbleed-repeat-layout .mfp-feature-card h3 {
    font-size: 18px;
}

.mfp-fullbleed-repeat-layout .mfp-feature-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.mfp-fullbleed-repeat-summary {
    position: relative;
    top: auto;
    width: 100%;
    padding: 20px;
    margin: 0;
}

.mfp-fullbleed-repeat-summary h2 {
    margin: 12px 0 0;
    font-family: var(--mfp-font-display);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 0.94;
    letter-spacing: 0;
    font-weight: 700;
    color: var(--mfp-text);
}

.mfp-fullbleed-repeat-summary .mfp-short {
    display: none;
}

.mfp-fullbleed-repeat-summary .mfp-stock-row .mfp-pill:nth-child(3) {
    display: none;
}

.mfp-fullbleed-repeat-summary .mfp-choice-block {
    margin-top: 16px;
}

.mfp-fullbleed-repeat-summary .mfp-buy-row {
    margin-top: 18px;
}

.mfp-summary-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.mfp-summary-actions .mfp-round-action {
    width: 48px;
    height: 48px;
    border-color: var(--mfp-border);
    background: var(--mfp-card);
    color: var(--mfp-accent-strong);
    box-shadow: var(--mfp-shadow-soft);
    backdrop-filter: none;
}

.mfp-summary-actions .mfp-round-action:hover {
    border-color: color-mix(in srgb, var(--mfp-accent-strong) 26%, transparent);
    background: var(--mfp-card-strong);
    box-shadow: var(--mfp-shadow);
}

.mfp-fullbleed-repeat-summary .mfp-price {
    margin-top: 12px;
    font-size: 21px;
}

.mfp-fullbleed-repeat-summary .mfp-stock-row {
    margin-top: 14px;
}

.mfp-fullbleed-repeat-summary .mfp-choice-head {
    margin-bottom: 8px;
}

.mfp-fullbleed-repeat-summary .mfp-swatches {
    gap: 8px;
}

.mfp-fullbleed-repeat-summary .mfp-swatch {
    min-height: 38px;
    min-width: 42px;
    padding: 0 12px;
}

.mfp-fullbleed-repeat-summary .mfp-cup {
    min-width: 142px;
    min-height: 54px;
    padding: 8px 12px;
    border-radius: 16px;
}

.mfp-fullbleed-repeat-summary .mfp-buy-row {
    grid-template-columns: 106px 1fr;
}

.mfp-fullbleed-repeat-summary .mfp-qty {
    min-height: 50px;
}

.mfp-fullbleed-repeat-summary .mfp-qty button {
    height: 50px;
}

.mfp-fullbleed-repeat-summary .mfp-button {
    min-height: 50px;
}

.mfp-fullbleed-repeat-left .mfp-story-card {
    padding: clamp(30px, 3.2vw, 44px);
}

.mfp-fullbleed-repeat-left .mfp-story-card h2 {
    font-size: clamp(38px, 4vw, 64px);
}

.mfp-fullbleed-repeat-left .mfp-story-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.mfp-fullbleed-info-grid .mfp-detail-card {
    position: static;
    height: 100%;
}

@media (min-width: 1101px) {
    .mfp-fullbleed-repeat-layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.48fr);
    }

    .mfp-fullbleed-info-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mfp-fullbleed-repeat-right {
        position: sticky;
        top: 96px;
        align-self: start;
        height: max-content;
    }
}

@media (min-width: 1440px) {
    .mfp-split-layout {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 440px);
        gap: 42px;
    }

    .mfp-split-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .mfp-split-media {
        min-height: auto;
        aspect-ratio: 4 / 6;
        border-radius: 30px;
    }

    .mfp-split-media img,
    .mfp-split-media video {
        min-height: auto;
        height: 100%;
    }

    .mfp-fullbleed-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mfp-fullbleed-repeat-layout {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 0.48fr);
        gap: 26px;
    }

    .mfp-fullbleed-info-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
    }

    .mfp-fullbleed-repeat-right {
        position: sticky;
        top: 96px;
        align-self: start;
        height: max-content;
    }
}

@media (min-width: 1920px) {
    .mfp-split-page .mfp-container,
    .mfp-fullbleed-page .mfp-container,
    .mfp-fullbleed-content {
        width: min(1780px, calc(100% - 96px));
    }

    .mfp-split-layout {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 460px);
    }

    .mfp-fullbleed-repeat-layout {
        grid-template-columns: minmax(0, 1fr) minmax(460px, 0.42fr);
        gap: 32px;
    }

    .mfp-fullbleed-info-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.36fr);
    }
}

@media (max-width: 1100px) {
    .mfp-split-layout {
        grid-template-columns: 1fr;
    }

    .mfp-split-layout > .mfp-summary,
    .mfp-split-summary {
        position: static;
        padding: 22px;
    }

    .mfp-fullbleed-content {
        align-items: flex-end;
        padding-top: 104px;
    }

    .mfp-fullbleed-copy {
        padding-bottom: 0;
    }

    .mfp-fullbleed-copy > p {
        width: 100%;
        max-width: 560px;
    }

    .mfp-fullbleed-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mfp-fullbleed-info-grid .mfp-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mfp-split-page .mfp-container,
    .mfp-fullbleed-page .mfp-container {
        width: min(100% - 28px, var(--mfp-container, 1240px));
    }

    .mfp-split-layout,
    .mfp-split-gallery,
    .mfp-split-summary,
    .mfp-fullbleed-content,
    .mfp-fullbleed-copy,
    .mfp-fullbleed-repeat-layout,
    .mfp-fullbleed-repeat-left,
    .mfp-fullbleed-repeat-right,
    .mfp-fullbleed-info-grid,
    .mfp-fullbleed-repeat-summary,
    .mfp-fullbleed-repeat-layout .mfp-feature-grid,
    .mfp-fullbleed-repeat-layout .mfp-feature-card,
    .mfp-fullbleed-info-grid .mfp-detail-card,
    .mfp-fullbleed-repeat-left .mfp-story-card {
        min-width: 0;
        max-width: 100%;
    }

    .mfp-mixed-info-layout,
    .mfp-mixed-info-right {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mfp-mixed-info-right .mfp-feature-grid {
        grid-template-columns: 1fr;
    }

    .mfp-mixed-info-layout .mfp-story-card h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .mfp-split-hero {
        padding: 84px 0 28px;
    }

    .mfp-mixed-mobile-hero {
        display: block;
        min-height: 100svh;
        background-attachment: scroll;
    }

    .mfp-mixed-page .mfp-split-hero {
        padding-top: 28px;
    }

    .mfp-split-layout {
        gap: 20px;
    }

    .mfp-split-gallery {
        display: flex;
        gap: 14px;
        margin: 0 -14px;
        padding: 0 14px 6px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .mfp-split-media {
        flex: 0 0 84%;
        min-height: auto;
        aspect-ratio: 4 / 6;
        border-radius: 28px;
        scroll-snap-align: start;
    }

    .mfp-split-media > a,
    .mfp-split-media img,
    .mfp-split-media video {
        min-height: auto;
        height: 100%;
    }

    .mfp-fullbleed-content {
        width: min(100% - 28px, var(--mfp-container, 1240px));
        padding: 92px 0 24px;
    }

    .mfp-fullbleed-copy h1 {
        font-size: clamp(44px, 15vw, 66px);
        overflow-wrap: anywhere;
    }

    .mfp-fullbleed-copy > p {
        display: none;
    }

    .mfp-fullbleed-hero-actions {
        gap: 10px;
    }

    .mfp-round-action {
        width: 48px;
        height: 48px;
    }

    .mfp-fullbleed-hero-cta {
        flex: 1 1 190px;
        min-width: 0;
    }

    .mfp-fullbleed-summary {
        padding: 20px;
        border-radius: 28px;
    }

    .mfp-fullbleed-strip {
        grid-template-columns: 1fr;
    }

    .mfp-fullbleed-repeat-section {
        padding: 24px 0 18px;
    }

    .mfp-fullbleed-repeat-layout .mfp-feature-grid {
        grid-template-columns: 1fr;
    }

    .mfp-fullbleed-repeat-summary h2 {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1;
        overflow-wrap: anywhere;
    }

    .mfp-fullbleed-repeat-summary .mfp-buy-row,
    .mfp-split-summary .mfp-buy-row {
        grid-template-columns: 1fr;
    }

    .mfp-fullbleed-repeat-left .mfp-story-card {
        padding: 30px;
    }

    .mfp-fullbleed-repeat-left .mfp-story-card h2 {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1;
        overflow-wrap: anywhere;
    }

    .mfp-fullbleed-repeat-left .mfp-story-text {
        font-size: 16px;
        line-height: 1.68;
    }

    .mfp-fullbleed-panel {
        min-height: 78svh;
    }

    .mfp-fullbleed-panel img,
    .mfp-fullbleed-panel video {
        min-height: 78svh;
    }

    .mfp-fullbleed-hero-image {
        inset: 0;
        height: 100%;
        width: 100%;
        opacity: 1;
    }

    .mfp-fullbleed-hero {
        background-image: none;
        background-attachment: scroll;
    }
}
