/* Demo stability pass: prevent catalogue clipping, clarify checkout payment state, and simplify mobile rails. */
/* Static-site inspired page loader with translucent navigation overlay. */
.page-loader {
    z-index: 3000 !important;
    background:
        radial-gradient(ellipse at 50% 38%, color-mix(in srgb, var(--color-muted) 22%, transparent), transparent 48%),
        linear-gradient(180deg, color-mix(in srgb, var(--color-paper) 97%, transparent), color-mix(in srgb, var(--color-cream) 96%, transparent)) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: blur(8px) saturate(.86);
    -webkit-backdrop-filter: blur(8px) saturate(.86);
    transition:
        opacity .5s ease,
        visibility .5s ease,
        background .5s ease,
        backdrop-filter .5s ease;
}

.page-loader::before,
.page-loader::after {
    content: none !important;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader.is-navigating,
.page-loader.is-submit-loading {
    background:
        radial-gradient(ellipse at 50% 38%, color-mix(in srgb, var(--color-forest) 10%, transparent), transparent 48%),
        linear-gradient(180deg, color-mix(in srgb, var(--color-paper) 72%, transparent), color-mix(in srgb, var(--color-cream) 66%, transparent)) !important;
    backdrop-filter: blur(2px) saturate(.9);
    -webkit-backdrop-filter: blur(2px) saturate(.9);
}

.page-loader-lockup {
    width: min(520px, calc(100vw - 46px)) !important;
    padding: 32px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center;
    transform: translateY(0);
    transition:
        transform .5s cubic-bezier(.22, .61, .36, 1),
        opacity .5s ease;
}

.page-loader.is-hidden .page-loader-lockup {
    opacity: 0;
    transform: translateY(10px);
}

.page-loader.is-navigating .page-loader-lockup,
.page-loader.is-submit-loading .page-loader-lockup {
    opacity: 1;
    transform: translateY(0);
}

.page-loader .page-loader-logo,
.page-loader .media-slot-logo.page-loader-logo {
    width: clamp(72px, 10vw, 96px) !important;
    height: clamp(72px, 10vw, 96px) !important;
    min-height: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.page-loader .page-loader-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.page-loader-name {
    margin-top: 14px !important;
    color: var(--color-forest) !important;
    font-family: var(--font-display) !important;
    font-size: clamp(24px, 4vw, 40px) !important;
    font-weight: 600 !important;
    letter-spacing: .28em !important;
    line-height: 1 !important;
    text-indent: .28em;
    text-transform: uppercase;
}

.page-loader-topline {
    margin-top: 12px;
    color: color-mix(in srgb, var(--color-gold) 76%, var(--color-forest) 24%) !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(13px, 2.3vw, 17px) !important;
    font-style: italic !important;
    line-height: 1.15;
}

.page-loader .loader-cert-note {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: min(92vw, 460px);
    padding: 1px 14px 1px 2px;
    border: 1px solid color-mix(in srgb, var(--color-forest) 70%, transparent);
    border-radius: 999px;
    background: var(--color-forest);
    color: var(--color-paper) !important;
    font-family: var(--font-body) !important;
    font-size: 9px !important;
    font-style: normal !important;
    font-weight: 600;
    letter-spacing: .03em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 18px 36px -30px color-mix(in srgb, var(--color-depth) 50%, transparent);
    opacity: .9;
}

.page-loader .cert-mini-mark {
    flex: 0 0 auto;
    width: 30px;
    height: 22px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 999px;
    background: color-mix(in srgb, white 98%, var(--color-paper) 2%);
    box-shadow: 0 0 0 2px color-mix(in srgb, white 18%, transparent);
}

.page-loader .cert-mini-mark img {
    width: 25px;
    height: auto;
    max-width: none;
}

.page-loader-divider {
    width: min(230px, 76vw) !important;
    margin: 28px auto 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkout-payment-gate-note {
    width: min(100%, 620px);
    margin: 14px auto 0;
    padding: 12px 15px;
    border: 1px solid color-mix(in srgb, var(--color-gold) 24%, var(--color-border) 76%);
    border-radius: 7px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--color-paper) 92%, transparent), color-mix(in srgb, var(--color-gold-soft) 22%, transparent)),
        color-mix(in srgb, white 78%, transparent);
    color: color-mix(in srgb, var(--color-forest) 82%, var(--color-ink) 18%);
    font-family: var(--font-p, var(--font-body)) !important;
    font-size: clamp(14px, 1.08vw, 16px) !important;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    box-shadow: inset 0 1px 0 color-mix(in srgb, white 64%, transparent);
}

.checkout-payment-gate-note.is-success {
    border-color: color-mix(in srgb, #2f7d55 34%, var(--color-border) 66%);
    color: #1f6b46;
}

.checkout-payment-gate-note.is-warning {
    border-color: color-mix(in srgb, #8b5b18 36%, var(--color-border) 64%);
    color: #7a4f14;
}

.checkout-payment-gate-note.is-error {
    border-color: color-mix(in srgb, #8a2435 36%, var(--color-border) 64%);
    color: #7a1f2f;
}

.payment-completed-notice-form {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 13px 14px;
    border: 1px solid color-mix(in srgb, #7f273b 16%, var(--color-border) 84%);
    border-radius: 7px;
    background:
        linear-gradient(135deg, color-mix(in srgb, white 82%, transparent), color-mix(in srgb, #f3e3dc 30%, transparent)),
        color-mix(in srgb, var(--color-paper) 88%, transparent);
    box-shadow:
        0 16px 42px -34px color-mix(in srgb, var(--color-depth) 34%, transparent),
        inset 0 1px 0 color-mix(in srgb, white 62%, transparent);
}

.payment-completed-notice-form div {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.payment-completed-notice-form strong {
    color: var(--color-ink);
    font-family: var(--font-h5, var(--font-heading)) !important;
    font-size: clamp(17px, 1.18vw, 20px) !important;
    font-style: var(--font-h5-style, normal) !important;
    line-height: 1.12;
}

.payment-completed-notice-form span {
    color: var(--color-muted);
    font-family: var(--font-p, var(--font-body)) !important;
    font-size: clamp(13px, .96vw, 15px) !important;
    line-height: 1.35;
}

.payment-completed-notice-button {
    min-width: 152px;
    min-height: 42px;
    border: 1px solid color-mix(in srgb, #7f273b 24%, var(--color-border) 76%);
    background: color-mix(in srgb, white 84%, #f4e1dc 16%);
    color: #7f273b;
    font-size: 12px !important;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.payment-completed-notice-button:disabled {
    opacity: .72;
    cursor: default;
}

.checkout-razorpay-window-note {
    margin: 8px 0 0;
    padding: 10px 12px;
    border-left: 3px solid color-mix(in srgb, var(--color-gold) 70%, var(--color-forest) 30%);
    border-radius: 5px;
    background: color-mix(in srgb, var(--color-gold-soft) 28%, white 72%);
    color: color-mix(in srgb, var(--color-forest) 82%, var(--color-ink) 18%);
    font-family: var(--font-p, var(--font-body)) !important;
    font-size: clamp(13px, .96vw, 15px) !important;
    font-weight: 700;
    line-height: 1.42;
}

@media (max-width: 1240px) and (min-width: 721px) {
    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .product-title a {
        display: -webkit-box !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        white-space: normal !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-footer {
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: baseline !important;
        justify-items: stretch !important;
        gap: 8px 12px !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .price.product-card-price {
        width: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        display: inline-flex !important;
        flex-wrap: nowrap !important;
        align-items: baseline !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        text-align: right !important;
        white-space: nowrap !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-mrp del {
        font-size: clamp(12px, 1vw, 14px) !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-offer ins,
    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .product-card-price-current {
        font-size: clamp(20px, 1.55vw, 24px) !important;
    }
}

@media (max-width: 1120px) {
    :is(.page-product, .page-product-preview) .product-detail-related-grid .catalogue-product-card.is-catalogue-listing-card .product-title a,
    .page-cart .product-detail-related-grid .catalogue-product-card.is-catalogue-listing-card .product-title a {
        display: -webkit-box !important;
        overflow: hidden !important;
        white-space: normal !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    :is(.page-product, .page-product-preview) .product-detail-related-grid .catalogue-card-footer,
    .page-cart .product-detail-related-grid .catalogue-card-footer {
        flex-wrap: nowrap !important;
        align-items: baseline !important;
        justify-content: space-between !important;
        gap: 7px !important;
    }

    :is(.page-product, .page-product-preview) .product-detail-related-grid .catalogue-card-stock,
    .page-cart .product-detail-related-grid .catalogue-card-stock {
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    :is(.page-product, .page-product-preview) .product-detail-related-grid .catalogue-product-card.is-catalogue-listing-card .price.product-card-price,
    .page-cart .product-detail-related-grid .catalogue-product-card.is-catalogue-listing-card .price.product-card-price {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        justify-content: flex-end !important;
        text-align: right !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 860px) and (min-width: 721px) {
    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-footer {
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .price.product-card-price {
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    :is(.page-product, .page-product-preview) .product-detail-related-grid .catalogue-card-footer,
    .page-cart .product-detail-related-grid .catalogue-card-footer {
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    :is(.page-product, .page-product-preview) .product-detail-related-grid .catalogue-product-card.is-catalogue-listing-card .price.product-card-price,
    .page-cart .product-detail-related-grid .catalogue-product-card.is-catalogue-listing-card .price.product-card-price {
        flex: 1 1 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

@media (max-width: 720px) {
    html body:is(.page-checkout, .page-account) .site-shell .order-flow-grid,
    html body:is(.page-checkout, .page-account) .site-shell .checkout-flow-grid {
        display: none !important;
    }

    .payment-completed-notice-form {
        grid-template-columns: 1fr;
        justify-items: stretch;
        text-align: center;
    }

    .payment-completed-notice-button {
        width: 100%;
    }

    .checkout-payment-gate-note {
        margin-top: 12px;
        font-size: 15px !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .product-title a {
        display: -webkit-box !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        white-space: normal !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-footer {
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: baseline !important;
        gap: 7px 10px !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .price.product-card-price {
        width: auto !important;
        min-width: 0 !important;
        display: inline-flex !important;
        flex-wrap: nowrap !important;
        align-items: baseline !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        text-align: right !important;
        white-space: nowrap !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-brand {
        font-size: 18px !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-category {
        font-size: 16px !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-sku {
        font-size: 15px !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-stock {
        font-size: 14px !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-offer ins,
    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .product-card-price-current {
        font-size: 26px !important;
    }

    html body .site-shell .catalogue-product-actions {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    html body .site-shell .catalogue-product-action {
        width: 48px !important;
        height: 48px !important;
    }

    html body .site-shell .catalogue-product-action .mojuri-product-icon,
    html body .site-shell .mojuri-product-icon {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 390px) {
    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .catalogue-card-footer {
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    html body .site-shell .catalogue-product-card.is-catalogue-listing-card .price.product-card-price {
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

/* Collections story flow. */
.page-collections .collections-story-banner {
    min-height: clamp(430px, 58vw, 680px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #14221e;
}

.page-collections .collections-story-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 19, 16, .78) 0%, rgba(8, 19, 16, .52) 34%, rgba(8, 19, 16, .14) 64%, rgba(8, 19, 16, .48) 100%),
        linear-gradient(180deg, rgba(8, 19, 16, .38), rgba(8, 19, 16, .72));
    pointer-events: none;
}

.page-collections .collections-story-banner .collections-banner-image {
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.02) contrast(1.03);
}

.page-collections .collections-story-banner .collections-banner-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 44px));
    margin: 0 auto;
    color: var(--color-paper);
    text-align: center;
}

.page-collections .collections-story-banner .catalogue-breadcrumb {
    justify-content: center;
    margin-bottom: clamp(18px, 3vw, 28px);
}

.page-collections .collections-story-banner .catalogue-breadcrumb :is(a, span) {
    color: color-mix(in srgb, var(--color-paper) 86%, transparent);
}

.page-collections .collections-story-banner .eyebrow {
    color: color-mix(in srgb, var(--color-gold-soft) 82%, white 18%);
}

.page-collections .collections-story-banner h1 {
    max-width: 860px;
    margin-inline: auto;
    color: var(--color-paper);
    text-shadow: 0 18px 52px rgba(0, 0, 0, .42);
}

.page-collections .collections-story-banner p {
    max-width: 720px;
    margin-inline: auto;
    color: color-mix(in srgb, var(--color-paper) 82%, transparent);
    text-shadow: 0 10px 34px rgba(0, 0, 0, .35);
}

.page-collections .collections-story-section {
    position: relative;
    isolation: isolate;
    padding: clamp(64px, 8vw, 108px) 18px clamp(46px, 6vw, 74px);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--color-gold-soft) 34%, transparent), transparent 30%),
        radial-gradient(circle at 88% 72%, color-mix(in srgb, var(--color-forest) 10%, transparent), transparent 32%),
        linear-gradient(180deg, color-mix(in srgb, var(--color-paper) 96%, transparent), color-mix(in srgb, var(--color-gold-soft) 62%, var(--color-paper) 38%));
}

.page-collections .collections-story-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .42;
    background:
        linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-gold) 10%, transparent), transparent),
        repeating-linear-gradient(90deg, color-mix(in srgb, var(--color-forest) 5%, transparent) 0 1px, transparent 1px 88px);
}

.page-collections .collections-story-shell {
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.page-collections .collections-story-copy h2,
.page-collections .collections-family-promise-panel h2 {
    margin: 8px 0 16px;
    color: var(--color-ink);
    font-family: var(--font-h2, var(--font-heading)) !important;
    font-size: clamp(36px, 4.8vw, 62px) !important;
    font-style: var(--font-h2-style, italic) !important;
    font-weight: 400;
    letter-spacing: 0 !important;
    line-height: 1.06;
}

.page-collections .collections-story-copy p,
.page-collections .collections-family-promise-panel p {
    max-width: 780px;
    margin: 0;
    color: var(--color-muted);
    font-family: var(--font-description, var(--font-p, var(--font-body))) !important;
    font-size: clamp(18px, 1.45vw, 22px) !important;
    font-style: italic;
    line-height: 1.68;
}

.page-collections .collections-story-proof {
    position: relative;
    display: grid;
    gap: 12px;
    padding: clamp(24px, 3vw, 34px);
    border-left: 2px solid color-mix(in srgb, var(--color-gold) 58%, transparent);
    background:
        linear-gradient(135deg, color-mix(in srgb, white 72%, transparent), color-mix(in srgb, var(--color-paper) 68%, transparent)),
        color-mix(in srgb, var(--color-gold-soft) 26%, transparent);
    box-shadow: inset 0 1px 0 color-mix(in srgb, white 70%, transparent);
}

.page-collections .collections-story-proof span {
    color: var(--color-gold);
    font-family: var(--font-eyebrow, var(--font-display)) !important;
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.page-collections .collections-story-proof strong {
    color: var(--color-forest);
    font-family: var(--font-h4, var(--font-heading)) !important;
    font-size: clamp(22px, 2vw, 30px) !important;
    font-style: italic;
    font-weight: 400;
    line-height: 1.32;
}

.page-collections .collections-story-divider,
.page-collections .collections-promise-divider {
    margin: clamp(28px, 4vw, 46px) auto 0 !important;
}

.page-collections .collection-kind-house {
    padding-block: clamp(58px, 7.8vw, 96px);
    border-top-color: color-mix(in srgb, var(--brand-accent) 18%, transparent);
    background:
        radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--brand-accent) 12%, transparent), transparent 30%),
        radial-gradient(circle at 92% 82%, color-mix(in srgb, var(--brand-accent) 10%, transparent), transparent 36%),
        linear-gradient(180deg, color-mix(in srgb, white 62%, var(--brand-soft) 38%), color-mix(in srgb, var(--color-paper) 90%, var(--brand-soft) 10%));
}

.page-collections .collection-kind-house .collection-header {
    width: min(1240px, 100%);
    margin-bottom: clamp(24px, 3vw, 34px);
    grid-template-columns: minmax(0, .88fr) minmax(280px, .72fr);
    align-items: end;
}

.page-collections .collection-kind-house .collection-header .name {
    color: color-mix(in srgb, var(--brand-accent) 82%, var(--color-ink) 18%);
    font-family: var(--font-h2, var(--font-heading)) !important;
    font-size: clamp(38px, 5.2vw, 68px) !important;
    font-style: var(--font-h2-style, italic) !important;
    font-weight: 400;
    letter-spacing: 0 !important;
    line-height: 1.02;
}

.page-collections .collection-kind-house .collection-header .tagline {
    max-width: 620px;
    color: color-mix(in srgb, var(--brand-accent) 74%, var(--color-ink) 26%);
    font-family: var(--font-h4, var(--font-heading)) !important;
    font-size: clamp(20px, 2vw, 28px) !important;
    line-height: 1.25;
}

.page-collections .collection-kind-house .collection-header .blurb {
    justify-self: end;
    max-width: 560px;
    padding: 18px 0 18px 24px;
    border-left: 1px solid color-mix(in srgb, var(--brand-accent) 28%, transparent);
    color: color-mix(in srgb, var(--color-muted) 86%, var(--color-ink) 14%);
    font-size: clamp(16px, 1.15vw, 19px);
}

.page-collections .collection-kind-house .collection-product-block-all {
    width: min(1400px, calc(100% + 12px));
    margin-inline: auto;
    padding: clamp(24px, 3vw, 34px) clamp(12px, 2vw, 22px) clamp(22px, 3vw, 32px);
    border: 1px solid color-mix(in srgb, var(--brand-accent) 16%, transparent);
    border-radius: 8px;
    background:
        linear-gradient(135deg, color-mix(in srgb, white 76%, transparent), color-mix(in srgb, var(--brand-soft) 58%, transparent)),
        color-mix(in srgb, var(--color-paper) 86%, transparent);
    box-shadow:
        0 28px 74px -62px color-mix(in srgb, var(--brand-accent) 42%, transparent),
        inset 0 1px 0 color-mix(in srgb, white 62%, transparent);
}

.page-collections .collection-kind-house .collection-product-carousel {
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.page-collections .collection-kind-house .collection-product-rail {
    padding-bottom: 26px;
    scrollbar-width: none;
}

.page-collections .collection-kind-house .collection-product-rail::-webkit-scrollbar {
    display: none;
}

.page-collections .collection-kind-house .collection-product-rail .collection-product-card {
    flex-basis: clamp(245px, 21vw, 306px);
}

.page-collections .collection-kind-house .collection-section-actions {
    margin-top: clamp(18px, 2.5vw, 28px);
}

.page-collections .collection-kind-house .collection-section-actions .btn {
    min-width: 168px;
}

.page-collections .brand-theme-indiora {
    --brand-accent: #6d5689;
    --brand-soft: color-mix(in srgb, #d8d3de 38%, var(--color-paper) 62%);
}

.page-collections .brand-theme-ishwara,
.page-collections .brand-theme-eshwara {
    --brand-accent: #8f6a22;
    --brand-soft: color-mix(in srgb, #f2d894 26%, var(--color-paper) 74%);
}

.page-collections .brand-theme-silvoraz,
.page-collections .brand-theme-silvorazs,
.page-collections .brand-theme-silvora {
    --brand-accent: #687782;
    --brand-soft: color-mix(in srgb, #d8dee2 38%, var(--color-paper) 62%);
}

.page-collections .brand-theme-puremann,
.page-collections .brand-theme-pureman {
    --brand-accent: #263f55;
    --brand-soft: color-mix(in srgb, #cfdbe2 30%, var(--color-paper) 70%);
}

.page-collections .brand-theme-memoria {
    --brand-accent: #8c5d73;
    --brand-soft: color-mix(in srgb, #ead2dc 32%, var(--color-paper) 68%);
}

.page-collections .brand-theme-meora {
    --brand-accent: #926f2f;
    --brand-soft: color-mix(in srgb, #eee0b8 30%, var(--color-paper) 70%);
}

.page-collections .collections-family-promise-section {
    position: relative;
    isolation: isolate;
    padding: clamp(74px, 8vw, 118px) 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--color-gold-soft) 40%, transparent), transparent 30%),
        radial-gradient(circle at 82% 80%, color-mix(in srgb, var(--color-forest) 16%, transparent), transparent 36%),
        linear-gradient(135deg, color-mix(in srgb, var(--color-paper) 94%, transparent), color-mix(in srgb, var(--color-gold-soft) 72%, var(--color-paper) 28%));
}

.page-collections .collections-family-promise-shell {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.page-collections .collections-family-promise-panel {
    display: grid;
    justify-items: center;
    text-align: center;
}

.page-collections .collections-family-promise-panel p {
    margin-inline: auto;
}

.page-collections .collections-family-promise-panel > strong {
    margin-top: clamp(18px, 2.5vw, 26px);
    color: var(--color-forest);
    font-family: var(--font-h4, var(--font-heading)) !important;
    font-size: clamp(24px, 2.8vw, 36px) !important;
    font-style: italic;
    font-weight: 400;
    line-height: 1.18;
}

.page-collections .collections-family-actions {
    margin-top: clamp(24px, 3vw, 36px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.page-collections .collections-family-light-action {
    border: 1px solid color-mix(in srgb, var(--color-forest) 20%, transparent);
    background: color-mix(in srgb, white 76%, var(--color-paper) 24%);
    color: var(--color-forest);
}

@media (max-width: 900px) {
    .page-collections .collections-story-shell,
    .page-collections .collection-kind-house .collection-header {
        grid-template-columns: 1fr;
    }

    .page-collections .collection-kind-house .collection-header .blurb {
        justify-self: start;
        max-width: 720px;
        padding: 0;
        border-left: 0;
    }

    .page-collections .collection-kind-house .collection-product-carousel {
        display: block;
    }

    .page-collections .collection-kind-house .collection-product-arrow {
        display: none;
    }

    .page-collections .collection-kind-house .collection-product-rail {
        padding-inline: 4px;
        scroll-padding-inline: 4px;
    }
}

@media (max-width: 620px) {
    .page-collections .collections-story-banner {
        min-height: 470px;
    }

    .page-collections .collections-story-banner .collections-banner-content {
        width: calc(100% - 30px);
    }

    .page-collections .collections-story-copy h2,
    .page-collections .collections-family-promise-panel h2 {
        font-size: clamp(32px, 10vw, 42px) !important;
    }

    .page-collections .collections-story-proof {
        padding: 20px;
    }

    .page-collections .collection-kind-house {
        padding-inline: 12px;
    }

    .page-collections .collection-kind-house .collection-product-block-all {
        width: 100%;
        padding: 18px 0 20px;
        border-inline: 0;
    }

    .page-collections .collection-kind-house .collection-product-rail {
        gap: 14px;
        padding: 4px 14px 24px;
        scroll-padding-inline: 14px;
    }

    .page-collections .collection-kind-house .collection-product-rail .collection-product-card {
        flex-basis: min(82vw, 340px);
    }
}

/* Collections house rails: use the catalogue listing card language without the loose showcase spacing. */
.page-collections .collections-story-section {
    padding: clamp(50px, 6vw, 82px) 18px clamp(34px, 4.6vw, 56px);
}

.page-collections .collection-kind-house {
    padding-block: clamp(40px, 5.4vw, 72px);
}

.page-collections .collection-kind-house .collection-header {
    margin-bottom: clamp(16px, 2.2vw, 24px);
}

.page-collections .collection-kind-house .collection-header .name {
    font-size: clamp(36px, 4.45vw, 58px) !important;
}

.page-collections .collection-kind-house .collection-header .tagline {
    font-size: clamp(18px, 1.65vw, 24px) !important;
}

.page-collections .collection-kind-house .collection-header .blurb {
    padding-block: 12px;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.55;
}

.page-collections .collection-kind-house .collection-product-block-all {
    width: min(1370px, calc(100% - 30px));
    padding: clamp(14px, 1.8vw, 22px);
    border-color: color-mix(in srgb, var(--brand-accent) 10%, transparent);
    background:
        linear-gradient(135deg, color-mix(in srgb, white 82%, transparent), color-mix(in srgb, var(--brand-soft) 44%, transparent)),
        color-mix(in srgb, var(--color-paper) 92%, transparent);
    box-shadow:
        0 20px 58px -52px color-mix(in srgb, var(--brand-accent) 28%, transparent),
        inset 0 1px 0 color-mix(in srgb, white 66%, transparent);
}

.page-collections .collection-kind-house .collection-product-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
}

.page-collections .collection-kind-house .collection-product-rail {
    gap: clamp(14px, 1.35vw, 20px);
    padding: 2px 2px 16px;
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-product-card.is-catalogue-listing-card {
    flex-basis: clamp(258px, 20vw, 302px);
    padding: 7px !important;
    border-color: color-mix(in srgb, var(--catalogue-card-accent) 7%, transparent) !important;
    background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--color-paper) 90%, transparent), transparent 36%),
        linear-gradient(180deg, color-mix(in srgb, var(--color-paper) 97%, transparent), color-mix(in srgb, var(--catalogue-card-tint) 70%, var(--color-paper) 30%));
    box-shadow:
        0 20px 44px -38px color-mix(in srgb, var(--color-depth) 36%, transparent),
        0 9px 20px -18px color-mix(in srgb, var(--catalogue-card-accent) 18%, transparent) !important;
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-product-card.is-catalogue-listing-card:is(:hover, :focus-within) {
    border-color: color-mix(in srgb, var(--catalogue-card-accent) 12%, transparent) !important;
    box-shadow:
        0 24px 52px -40px color-mix(in srgb, var(--color-depth) 42%, transparent),
        0 11px 24px -20px color-mix(in srgb, var(--catalogue-card-accent) 24%, transparent) !important;
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-card-visual {
    aspect-ratio: 1 / 1.08;
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-card-body {
    width: calc(100% + 14px);
    margin: 0 -7px -7px;
    padding: 10px 10px 11px !important;
    box-shadow:
        inset 0 1px 0 color-mix(in srgb, #fff 82%, transparent),
        inset 0 0 0 1px color-mix(in srgb, var(--catalogue-card-accent) 3%, transparent);
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-product-content .contents {
    gap: 5px;
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-card-meta-grid {
    gap: 2px 9px;
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-product-card.is-catalogue-listing-card .product-title {
    font-size: clamp(17px, 1.22vw, 20px) !important;
    line-height: 1.12 !important;
}

.page-collections .collection-kind-house .collection-product-rail .catalogue-card-footer {
    margin-top: 2px;
    padding-top: 8px;
    gap: 8px;
}

.page-collections .collection-kind-house .collection-product-rail .price.product-card-price {
    min-width: 0 !important;
}

.page-collections .collection-kind-house .collection-section-actions {
    margin-top: clamp(12px, 1.8vw, 18px);
}

.page-collections .collections-family-promise-section {
    padding: clamp(56px, 6.4vw, 86px) 18px;
}

@media (max-width: 900px) {
    .page-collections .collection-kind-house .collection-product-block-all {
        width: min(100%, calc(100% - 24px));
    }
}

@media (max-width: 620px) {
    .page-collections .collections-story-section {
        padding: 40px 14px 30px;
    }

    .page-collections .collection-kind-house {
        padding: 34px 10px;
    }

    .page-collections .collection-kind-house .collection-product-block-all {
        width: 100%;
        padding: 12px 0 14px;
    }

    .page-collections .collection-kind-house .collection-product-rail {
        gap: 13px;
        padding: 2px 12px 16px;
        scroll-padding-inline: 12px;
    }

    .page-collections .collection-kind-house .collection-product-rail .catalogue-product-card.is-catalogue-listing-card {
        flex-basis: min(84vw, 340px);
    }

    .page-collections .collection-kind-house .collection-header {
        margin-bottom: 14px;
    }
}

/* Collections/shop breadcrumb and edge-to-edge house rails. */
:is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb {
    max-width: 1180px;
    width: auto;
    margin: clamp(18px, 2.5vw, 28px) auto clamp(8px, 1.4vw, 16px);
    padding: 0 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--color-muted);
}

:is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb a,
:is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb span[aria-current="page"] {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--product-order-accent, var(--color-forest)) 18%, var(--color-border) 82%);
    border-radius: 0 !important;
    padding: 8px 14px;
    background: color-mix(in srgb, var(--color-paper) 84%, transparent);
    color: color-mix(in srgb, var(--product-order-accent, var(--color-forest)) 64%, var(--color-forest) 36%);
    font-family: var(--font-eyebrow, var(--font-display));
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 16px 38px -32px color-mix(in srgb, var(--color-depth) 36%, transparent);
}

:is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb a:is(:hover, :focus-visible) {
    border-color: color-mix(in srgb, var(--product-order-accent, var(--color-forest)) 34%, var(--color-border) 66%);
    background: var(--color-paper);
    color: var(--color-forest);
    outline: none;
    transform: translateY(-1px);
}

:is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb > span[aria-hidden="true"] {
    color: color-mix(in srgb, var(--product-order-accent, var(--color-forest)) 40%, var(--color-muted) 60%);
    font-family: var(--font-display);
    font-size: 11px;
}

.page-collections .collections-story-section {
    padding-top: clamp(38px, 5vw, 66px);
}

.page-collections .collection-kind-house .collection-header-summary {
    justify-self: end;
    max-width: 560px;
    display: grid;
    gap: 12px;
    align-content: end;
}

.page-collections .collection-kind-house .collection-header-summary .blurb {
    margin: 0;
}

.page-collections .collection-kind-house .collection-section-actions-inline {
    margin-top: 0 !important;
    justify-content: flex-start;
}

.page-collections .collection-kind-house .collection-section-actions-inline .btn {
    min-width: 150px;
    min-height: 40px;
}

.page-collections .collection-kind-house .collection-product-block-all {
    box-sizing: border-box;
    width: min(1240px, 100%);
    margin-inline: auto;
    padding-inline: 6px;
}

.page-collections .collection-kind-house .collection-product-carousel {
    position: relative;
    display: block !important;
    grid-template-columns: none !important;
    gap: 0;
}

.page-collections .collection-kind-house .collection-product-rail {
    width: 100%;
    box-sizing: border-box;
    padding-inline: 0;
    scroll-padding-inline: 0;
}

.page-collections .collection-kind-house .collection-product-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-color: color-mix(in srgb, var(--brand-accent) 18%, transparent);
    background: color-mix(in srgb, var(--color-paper) 88%, transparent);
    color: color-mix(in srgb, var(--brand-accent) 82%, var(--color-ink) 18%);
    box-shadow:
        0 18px 38px -30px color-mix(in srgb, var(--color-depth) 46%, transparent),
        inset 0 1px 0 color-mix(in srgb, #fff 72%, transparent);
    backdrop-filter: blur(5px);
}

.page-collections .collection-kind-house .collection-product-arrow[data-product-carousel-prev] {
    left: clamp(4px, .7vw, 12px);
}

.page-collections .collection-kind-house .collection-product-arrow[data-product-carousel-next] {
    right: clamp(4px, .7vw, 12px);
}

.page-collections .collection-kind-house .collection-product-arrow:hover,
.page-collections .collection-kind-house .collection-product-arrow:focus-visible {
    transform: translateY(-50%) scale(1.03);
}

@media (max-width: 900px) {
    .page-collections .collection-kind-house .collection-header-summary {
        justify-self: start;
        max-width: 720px;
    }
}

@media (max-width: 620px) {
    :is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb {
        margin: 16px auto 8px;
        padding: 0 14px;
        justify-content: flex-start;
    }

    :is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb a,
    :is(.page-collections, .page-shop, .page-brands) .collections-order-breadcrumb.product-order-breadcrumb span[aria-current="page"] {
        min-height: 31px;
        padding: 7px 10px;
        font-size: 8px;
        letter-spacing: .12em;
    }

    .page-collections .collection-kind-house .collection-product-block-all {
        padding-inline: 0;
    }
}
