/* Public MOD Detail Page */
.mod-page {
    position: relative;
    min-height: calc(100vh - 84px);
    overflow: clip;
    color: var(--site-text);
    background:
        radial-gradient(circle at 82% -8%, rgba(244, 185, 0, .075), transparent 32rem),
        radial-gradient(circle at -8% 38%, rgba(255, 255, 255, .025), transparent 30rem),
        #070708;
}

.mod-page::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .011) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .011) 1px, transparent 1px);
    background-size: 64px 64px;
    content: '';
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .38) 34%, transparent 68%);
}

.mod-page__container {
    position: relative;
    z-index: 1;
    padding-block: clamp(1.45rem, 3vw, 2.5rem) clamp(4.5rem, 8vw, 7rem);
}

/* Top line + Back */
.mod-topline {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.mod-breadcrumb {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    color: var(--site-dim);
    font-size: .72rem;
}

.mod-breadcrumb a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    color: var(--site-muted);
    text-decoration: none;
    transition: color .18s ease;
}

.mod-breadcrumb a:hover {
    color: var(--site-text);
}

.mod-breadcrumb a i {
    font-size: .92rem;
}

.mod-breadcrumb>i {
    flex: 0 0 auto;
    font-size: 1rem;
}

.mod-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-back-button {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    place-items: center;
    color: #c8c9cd;
    background: rgba(17, 17, 19, .9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.mod-back-button:hover {
    transform: translateX(-2px);
    border-color: rgba(244, 185, 0, .32);
    color: var(--site-gold);
    background: #151515;
}

.mod-back-button__arrow {
    display: block;
    font: 700 1.35rem/1 Arial, sans-serif;
    transform: translateY(-1px);
}

/* Hero */
.mod-hero {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) minmax(210px, 250px);
    gap: clamp(1.4rem, 3vw, 2.7rem);
    align-items: center;
    padding: clamp(1.15rem, 2.2vw, 1.65rem);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    background: linear-gradient(118deg, rgba(255, 255, 255, .025), transparent 34%), linear-gradient(145deg, rgba(19, 19, 21, .98), rgba(10, 10, 11, .98));
    box-shadow: 0 26px 80px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .025);
}

.mod-hero__cover-wrap {
    min-width: 0;
}

.mod-hero__cover {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 20px;
    background: #111113;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .38);
}

.mod-hero__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mod-hero__fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: radial-gradient(circle at 50% 35%, rgba(244, 185, 0, .17), transparent 42%), #111113;
}

.mod-hero__fallback span {
    color: #f2cb43;
    font: 900 clamp(3.5rem, 8vw, 6.4rem)/1 Arial, sans-serif;
    letter-spacing: -.09em;
}

.mod-hero__content {
    min-width: 0;
}

.mod-hero__eyebrow {
    margin: 0 0 8px;
    color: var(--site-gold);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .17em;
}

.mod-hero h1 {
    margin: 0;
    font-size: clamp(2.45rem, 4.8vw, 4.5rem);
    font-weight: 850;
    letter-spacing: -.065em;
    line-height: .98;
}

.mod-hero__summary {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--site-muted);
    font-size: clamp(.86rem, 1.1vw, .98rem);
    line-height: 1.75;
}

.mod-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 23px;
}

.mod-chip {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 999px;
    color: #aeb0b6;
    background: rgba(255, 255, 255, .025);
    font-size: .66rem;
    font-weight: 700;
}

.mod-chip i {
    color: #777a80;
    font-size: .92rem;
}

.mod-chip i.bxs-circle {
    font-size: .43rem;
}

.mod-chip--ready {
    color: #7fe2a8;
    border-color: rgba(65, 207, 127, .21);
    background: rgba(65, 207, 127, .055);
}

.mod-chip--ready i {
    color: #57d890;
}

.mod-chip--maintenance {
    color: #f0cb67;
    border-color: rgba(244, 185, 0, .22);
    background: rgba(244, 185, 0, .055);
}

.mod-chip--maintenance i {
    color: #e9ba30;
}

.mod-chip--closed,
.mod-chip--soon {
    color: #a9abb0;
}

.mod-hero__availability {
    position: relative;
    min-width: 0;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 17px;
    background: rgba(255, 255, 255, .022);
}

.mod-hero__availability::after {
    position: absolute;
    right: -32px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(244, 185, 0, .045);
    content: '';
    filter: blur(2px);
}

.mod-hero__availability-label {
    display: block;
    color: var(--site-dim);
    font-size: .61rem;
    font-weight: 750;
    letter-spacing: .06em;
}

.mod-hero__availability strong {
    display: block;
    max-width: calc(100% - 28px);
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.35;
}

.mod-hero__availability-dot {
    position: absolute;
    top: 20px;
    right: 18px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #81848a;
    box-shadow: 0 0 0 5px rgba(129, 132, 138, .08);
}

.mod-hero__availability-dot--ready {
    background: #55d68d;
    box-shadow: 0 0 0 5px rgba(85, 214, 141, .09);
}

.mod-hero__availability-dot--maintenance {
    background: #e7b72b;
    box-shadow: 0 0 0 5px rgba(231, 183, 43, .09);
}

.mod-hero__availability p {
    position: relative;
    z-index: 1;
    margin: 15px 0 0;
    color: var(--site-dim);
    font-size: .68rem;
    line-height: 1.6;
}

/* Notice */
.mod-notice {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 14px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 12px;
    color: #b9bbc0;
    background: rgba(16, 16, 18, .92);
    font-size: .76rem;
    line-height: 1.55;
}

.mod-notice i {
    flex: 0 0 auto;
    font-size: 1.05rem;
    color: var(--site-gold);
}

.mod-notice--closed i {
    color: #aeb0b5;
}

/* Sections */
.mod-overview,
.mod-plans {
    padding-top: clamp(3.2rem, 5.5vw, 4.8rem);
}

.mod-section-heading {
    margin-bottom: 18px;
}

.mod-section-heading>div>p {
    margin: 0 0 6px;
    color: var(--site-gold);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.mod-section-heading h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    letter-spacing: -.045em;
}

.mod-section-heading__description {
    display: block;
    margin-top: 7px;
    color: var(--site-dim);
    font-size: .74rem;
    line-height: 1.5;
}

.mod-section-heading--plans {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.mod-section-heading__count {
    flex: 0 0 auto;
    padding-bottom: 3px;
    color: var(--site-dim);
    font-size: .69rem;
}

/* Description */
.mod-overview__card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
    max-width: 1120px;
    padding: clamp(1.15rem, 2.2vw, 1.6rem);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(244, 185, 0, .035), rgba(255, 255, 255, .014) 32%, rgba(255, 255, 255, .009));
}

.mod-overview__icon {
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(244, 185, 0, .17);
    border-radius: 13px;
    place-items: center;
    color: #e6bf45;
    background: rgba(244, 185, 0, .045);
}

.mod-overview__icon i {
    font-size: 1.3rem;
}

.mod-overview__copy {
    min-width: 0;
}

.mod-description {
    position: relative;
    overflow: hidden;
    transition: max-height .24s ease;
}

.mod-description p {
    margin: 0;
    color: #b2b4ba;
    font-size: .86rem;
    line-height: 1.9;
}

.mod-description.is-collapsed {
    max-height: 10.2rem;
}

.mod-description.is-collapsed::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4.3rem;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 11, .98));
    content: '';
}

.mod-description__toggle {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 0 2px;
    border: 0;
    color: #e4bd3e;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: .7rem;
    font-weight: 750;
}

.mod-description__toggle:hover {
    color: #ffd557;
}

.mod-description__toggle i {
    font-size: 1rem;
}

/* Purchase configurator */
.mod-purchase {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 22px;
    background: linear-gradient(145deg, #121214, #0b0b0c 72%);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .02);
}

.mod-purchase__main {
    min-width: 0;
    padding: clamp(1.15rem, 2vw, 1.6rem);
}

.mod-purchase__summary {
    min-width: 0;
    padding: clamp(1.15rem, 2vw, 1.6rem);
    border-left: 1px solid rgba(255, 255, 255, .075);
    background: rgba(255, 255, 255, .016);
}

.mod-purchase__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 13px;
}

.mod-purchase__label-row>div {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.mod-purchase__label-row h3 {
    margin: 0;
    font-size: .9rem;
    letter-spacing: -.02em;
}

.mod-purchase__label-row>span {
    flex: 0 0 auto;
    color: var(--site-dim);
    font-size: .64rem;
}

.mod-purchase__step {
    display: grid;
    width: 29px;
    height: 29px;
    border: 1px solid rgba(244, 185, 0, .18);
    border-radius: 8px;
    place-items: center;
    color: var(--site-gold);
    background: rgba(244, 185, 0, .045);
    font: 800 .58rem/1 Arial, sans-serif;
}

.mod-package-options {
    display: grid;
    grid-template-columns: repeat(var(--mod-plan-cols, 4), minmax(0, 1fr));
    gap: 10px;
}

.mod-package-option {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 116px;
    flex-direction: column;
    justify-content: center;
    padding: 15px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 14px;
    background: #0e0e10;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.mod-package-option:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .16);
    background: #111113;
}

.mod-package-option:has(input:checked) {
    border-color: rgba(244, 185, 0, .55);
    background: linear-gradient(145deg, rgba(244, 185, 0, .085), rgba(244, 185, 0, .018) 55%, #0e0e10);
    box-shadow: inset 0 0 0 1px rgba(244, 185, 0, .08);
}

.mod-package-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mod-package-option__check {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    place-items: center;
    color: transparent;
    background: #111113;
}

.mod-package-option:has(input:checked) .mod-package-option__check {
    border-color: var(--site-gold);
    color: #171200;
    background: var(--site-gold);
}

.mod-package-option__check i {
    font-size: .85rem;
}

.mod-package-option__badge {
    position: absolute;
    top: 9px;
    left: 10px;
    max-width: calc(100% - 48px);
    overflow: hidden;
    color: #e9c344;
    font-size: .55rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-package-option strong {
    margin-top: 10px;
    overflow: hidden;
    color: #f3f3f4;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    letter-spacing: -.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-package-option.is-featured strong {
    margin-top: 17px;
}

.mod-package-option small {
    margin-top: 2px;
    overflow: hidden;
    color: #7d8086;
    font-size: .58rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-package-option>span:last-child {
    margin-top: 8px;
    color: #d6b23c;
    font-size: .72rem;
    font-weight: 800;
}

.mod-purchase__quantity-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .065);
}

.mod-quantity {
    display: inline-grid;
    grid-template-columns: 42px 70px 42px;
    min-height: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 11px;
    background: #0d0d0f;
}

.mod-quantity button {
    border: 0;
    color: #a8aaaf;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.mod-quantity button:hover {
    color: var(--site-gold);
    background: rgba(255, 255, 255, .025);
}

.mod-quantity input {
    width: 70px;
    border: 0;
    border-inline: 1px solid rgba(255, 255, 255, .075);
    outline: 0;
    color: #f3f3f4;
    background: transparent;
    text-align: center;
    font: 800 .82rem/1 Arial, sans-serif;
    appearance: textfield;
}

.mod-quantity input::-webkit-inner-spin-button,
.mod-quantity input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

/* Order summary */
.mod-purchase__summary-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #d8d9dc;
    font-size: .72rem;
    font-weight: 800;
}

.mod-purchase__summary-heading i {
    color: #8c8e94;
    font-size: 1.15rem;
}

.mod-purchase__game {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mod-purchase__game-cover {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 11px;
    place-items: center;
    color: var(--site-gold);
    background: #111113;
    font-weight: 850;
}

.mod-purchase__game-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mod-purchase__game>div:last-child {
    min-width: 0;
}

.mod-purchase__game strong,
.mod-purchase__game span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-purchase__game strong {
    color: #ededee;
    font-size: .76rem;
}

.mod-purchase__game span {
    margin-top: 3px;
    color: var(--site-dim);
    font-size: .6rem;
}

.mod-purchase__summary-list {
    display: grid;
    gap: 10px;
    margin: 17px 0 0;
}

.mod-purchase__summary-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mod-purchase__summary-list dt,
.mod-purchase__summary-list dd {
    margin: 0;
    font-size: .66rem;
}

.mod-purchase__summary-list dt {
    color: #7f8288;
}

.mod-purchase__summary-list dd {
    max-width: 58%;
    overflow: hidden;
    color: #c9cacf;
    font-weight: 700;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-purchase__total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .075);
}

.mod-purchase__total span {
    color: #92949a;
    font-size: .69rem;
}

.mod-purchase__total strong {
    color: #f0c943;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    letter-spacing: -.04em;
    text-align: right;
}

.mod-purchase__button {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    border: 1px solid rgba(244, 185, 0, .25);
    border-radius: 11px;
    color: #211a00;
    background: var(--site-gold);
    font: inherit;
    font-size: .73rem;
    font-weight: 850;
}

.mod-purchase__button:disabled {
    cursor: not-allowed;
    opacity: .64;
}

.mod-purchase__button i {
    font-size: 1.05rem;
}

.mod-purchase__coming-soon {
    margin: 8px 0 0;
    color: #696c72;
    font-size: .58rem;
    line-height: 1.5;
    text-align: center;
}

/* Empty + Error */
.mod-plans__empty {
    display: grid;
    min-height: 250px;
    padding: 40px 22px;
    border: 1px dashed rgba(255, 255, 255, .11);
    border-radius: 18px;
    place-items: center;
    align-content: center;
    text-align: center;
    background: rgba(255, 255, 255, .008);
}

.mod-plans__empty>span {
    display: grid;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(244, 185, 0, .15);
    border-radius: 15px;
    place-items: center;
    color: var(--site-gold);
    background: rgba(244, 185, 0, .035);
}

.mod-plans__empty i {
    font-size: 1.55rem;
}

.mod-plans__empty h3 {
    margin: 12px 0 0;
}

.mod-plans__empty p {
    max-width: 520px;
    margin: 7px 0 0;
    color: var(--site-muted);
    font-size: .76rem;
    line-height: 1.6;
}

.mod-error {
    display: grid;
    min-height: 520px;
    place-items: center;
    align-content: center;
    padding-block: 4rem;
    text-align: center;
}

.mod-error>span {
    color: var(--site-gold);
    font: 800 .7rem/1 Arial, sans-serif;
    letter-spacing: .15em;
}

.mod-error>i {
    margin-top: 18px;
    color: #b5b7bd;
    font-size: 3.4rem;
}

.mod-error h1 {
    margin: 15px 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.05em;
}

.mod-error p {
    margin: 10px 0 0;
    color: var(--site-muted);
}

.mod-error a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    padding: 0 15px;
    border: 1px solid rgba(244, 185, 0, .25);
    border-radius: 9px;
    color: #f0cb4e;
    text-decoration: none;
}

.mod-page a:focus-visible,
.mod-page button:focus-visible,
.mod-package-option:focus-within {
    outline: 2px solid var(--site-gold);
    outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1080px) {
    .mod-hero {
        grid-template-columns: 205px minmax(0, 1fr);
    }

    .mod-hero__availability {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 2px 18px;
        padding: 14px 16px;
    }

    .mod-hero__availability strong {
        margin-top: 2px;
    }

    .mod-hero__availability p {
        grid-column: 1;
        margin-top: 4px;
    }

    .mod-hero__availability-dot {
        position: static;
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }

    .mod-purchase {
        grid-template-columns: minmax(0, 1fr) 290px;
    }

    .mod-package-options {
        grid-template-columns: repeat(min(3, var(--mod-plan-cols, 3)), minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .mod-purchase {
        grid-template-columns: 1fr;
    }

    .mod-purchase__summary {
        border-top: 1px solid rgba(255, 255, 255, .075);
        border-left: 0;
    }

    .mod-package-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 680px) {
    .mod-page__container {
        padding-top: 1rem;
    }

    .mod-topline {
        margin-bottom: 10px;
    }

    .mod-breadcrumb {
        font-size: .66rem;
    }

    .mod-back-button {
        width: 38px;
        height: 38px;
    }

    .mod-hero {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 16px;
        padding: 13px;
        border-radius: 18px;
        align-items: start;
    }

    .mod-hero__cover {
        border-radius: 15px;
    }

    .mod-hero__content {
        padding-top: 2px;
    }

    .mod-hero__eyebrow {
        margin-bottom: 5px;
        font-size: .56rem;
    }

    .mod-hero h1 {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
        line-height: 1.04;
    }

    .mod-hero__summary {
        grid-column: 1 / -1;
        margin-top: 10px;
        font-size: .76rem;
        line-height: 1.62;
    }

    .mod-hero__chips {
        gap: 6px;
        margin-top: 13px;
    }

    .mod-chip {
        min-height: 27px;
        padding-inline: 8px;
        font-size: .58rem;
    }

    .mod-hero__availability {
        grid-column: 1 / -1;
        border-radius: 13px;
    }

    .mod-notice {
        align-items: flex-start;
    }

    .mod-overview,
    .mod-plans {
        padding-top: 3rem;
    }

    .mod-overview__card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 13px;
        padding: 14px;
    }

    .mod-overview__icon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .mod-description p {
        font-size: .77rem;
        line-height: 1.75;
    }

    .mod-description.is-collapsed {
        max-height: 8.3rem;
    }

    .mod-section-heading--plans {
        align-items: start;
    }

    .mod-section-heading__count {
        padding-top: 5px;
    }

    .mod-purchase {
        border-radius: 17px;
    }

    .mod-purchase__main,
    .mod-purchase__summary {
        padding: 14px;
    }

    .mod-package-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .mod-package-option {
        min-height: 104px;
        padding: 13px 11px;
        border-radius: 12px;
    }

    .mod-package-option strong {
        font-size: 1rem;
    }

    .mod-package-option>span:last-child {
        font-size: .66rem;
    }

    .mod-purchase__label-row>span {
        display: none;
    }

    .mod-purchase__quantity-block {
        margin-top: 19px;
        padding-top: 16px;
    }

    .mod-quantity {
        display: grid;
        width: 100%;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }

    .mod-quantity input {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .mod-hero {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 12px;
    }

    .mod-hero__chips {
        grid-column: 1 / -1;
    }

    .mod-hero__summary {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .mod-section-heading--plans {
        display: block;
    }

    .mod-section-heading__count {
        display: block;
        margin-top: 7px;
    }

    .mod-package-option {
        min-height: 98px;
    }

    .mod-package-option__badge {
        max-width: calc(100% - 42px);
        font-size: .5rem;
    }
}

/* Commerce V1 purchase states */
.mod-purchase__button:not(:disabled) {
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.mod-purchase__button:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(244, 185, 0, .11);
    filter: brightness(1.03);
}

.mod-purchase__button.is-loading {
    cursor: wait;
    opacity: .72;
}

.mod-package-option:has(input:disabled),
.mod-quantity button:disabled,
.mod-quantity input:disabled {
    cursor: wait;
    opacity: .7;
}