@font-face {
    font-family: "Turbota Book";
    src: url("../../public/assets/fonts/TurbotaBook.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Turbota Book";
    src: url("../../public/assets/fonts/TurbotaBookItalic.ttf")
        format("truetype");
    font-weight: normal;
    font-style: italic;
}

/* Operator/admin working typeface — scoped to body.ops-surface only, never
   the public storefront (which keeps Turbota Book as its brand typeface).
   Noto Sans is a fallback purely for glyphs Inter doesn't guarantee (IPA
   Extensions, rarer combining diacritics used in Phonic Focus content). */
@font-face {
    font-family: "Inter";
    src: url("../../public/assets/fonts/Inter-Variable.ttf") format("truetype-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../../public/assets/fonts/NotoSans-Variable.ttf") format("truetype-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --store-bg: #f7f0e5;
    --store-bg-soft: #fffaf3;
    --store-ink: #2d2925;
    --store-muted: #6f6256;
    --store-line: rgba(78, 54, 36, 0.14);
    --store-accent: #bf5a36;
    --store-accent-soft: #f0c9a8;
    --store-teal: #8eb3ab;
    --store-card: rgba(255, 250, 243, 0.82);
    --store-shadow: 0 24px 70px rgba(77, 54, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Turbota Book", Georgia, serif;
    color: var(--store-ink);
    background:
        radial-gradient(circle at top left, rgba(240, 201, 168, 0.55), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(142, 179, 171, 0.32), transparent 25%),
        linear-gradient(160deg, #f5e8d7 0%, #faf4eb 38%, #f3ecdf 100%);
}

/* Overrides the base body font for operator/admin pages only (see the
   Inter/Noto Sans @font-face blocks above). button/select already inherit
   body's font-family via the rule below; input/textarea don't by default,
   so they need the explicit inherit here too. */
body.ops-surface {
    font-family: "Inter", "Noto Sans", sans-serif;
}

body.ops-surface input,
body.ops-surface textarea {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select {
    font: inherit;
}

.storefront-shell {
    width: min(1240px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 24px 0 72px;
}

/* Entry splash — same animated card-flip pattern as the unit runtime's
   #splashScreen (src/css/styles.css), reproduced here since this page loads
   storefront.css only. Only ever included on storefront.html itself. */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #faf6f1;
    pointer-events: all;
    animation: splash-screen-out 0.9s ease 7.8s forwards;
}

.splash-screen.removed {
    display: none;
}

.splash-layer,
.splash-vignette {
    position: absolute;
    inset: -12%;
}

.splash-layer-one {
    background: linear-gradient(135deg, #f9d8cf 0%, #f7efe8 48%, #dcece7 100%);
    animation: splash-layer-sweep 1.35s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.splash-layer-two {
    background: linear-gradient(135deg, #d8e6f5 0%, #f8eadf 58%, #f3d9e2 100%);
    transform: translateX(-115%) rotate(-5deg);
    animation: splash-layer-sweep 1.35s cubic-bezier(0.76, 0, 0.24, 1) 0.42s
        forwards;
}

.splash-layer-three {
    background: linear-gradient(135deg, #efe1bb 0%, #f8f3ec 50%, #d7efe2 100%);
    transform: translateX(115%) rotate(5deg);
    animation: splash-layer-sweep-reverse 1.35s cubic-bezier(0.76, 0, 0.24, 1)
        0.84s forwards;
}

.splash-layer-four {
    background:
        radial-gradient(
            circle at 24% 18%,
            rgba(255, 255, 255, 0.88),
            transparent 28%
        ),
        radial-gradient(
            circle at 78% 72%,
            rgba(220, 236, 231, 0.78),
            transparent 32%
        ),
        linear-gradient(135deg, #fbf7f2 0%, #f4ebe3 100%);
    opacity: 0;
    animation: splash-soft-reveal 1.1s ease 1.55s forwards;
}

.splash-card-wrap {
    position: relative;
    z-index: 2;
    width: min(360px, 62vw);
    aspect-ratio: 1 / 1;
    perspective: 1300px;
    opacity: 0;
    transform: translateY(34px) scale(0.88);
    filter: drop-shadow(0 28px 42px rgba(58, 48, 42, 0.28));
    animation: splash-logo-rise 1.25s cubic-bezier(0.22, 1, 0.36, 1) 2.35s
        forwards;
}

.splash-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation:
        splash-card-flip-one 1.15s cubic-bezier(0.68, -0.4, 0.32, 1.35) 4s
            forwards,
        splash-card-flip-two 1.15s cubic-bezier(0.68, -0.4, 0.32, 1.35) 5.85s
            forwards;
}

.splash-card-face {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    backface-visibility: hidden;
    border-radius: 26px;
}

.splash-card-front {
    background: rgba(255, 255, 255, 0.18);
}

.splash-card-front img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    transform: scale(0.96);
    animation: splash-logo-breathe 2.2s ease-in-out 2.8s infinite alternate;
}

.splash-card-back {
    padding: 26px;
    transform: rotateY(180deg);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.78),
            rgba(246, 239, 231, 0.9)
        ),
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 255, 255, 0.86),
            transparent 48%
        );
    border: 1px solid rgba(90, 74, 66, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #5a4a42;
    text-align: center;
}

.splash-card-back span {
    display: block;
    max-width: 100%;
    font-size: clamp(19px, 3.2vw, 30px);
    line-height: 1.05;
    font-style: italic;
    white-space: nowrap;
    /* Same gradient as .hero-copy h1 above — sampled from the brand totem. */
    background: linear-gradient(
        100deg,
        #4a5ac4 0%,
        #8247a8 26%,
        #c14c82 50%,
        #e8935e 76%,
        #f2bb5c 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.splash-card-back small {
    margin-top: 12px;
    color: rgba(90, 74, 66, 0.62);
    font-size: clamp(14px, 2vw, 19px);
    letter-spacing: 1.4px;
}

.splash-card-icon {
    width: min(108px, 32%);
    height: auto;
    margin-top: 18px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(58, 48, 42, 0.16));
}

.splash-vignette {
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(
        circle,
        transparent 42%,
        rgba(30, 24, 22, 0.42) 100%
    );
    opacity: 0;
    animation: splash-vignette-in 0.9s ease 7.05s forwards;
}

@keyframes splash-layer-sweep {
    0% {
        transform: translateX(-115%) rotate(-5deg) scale(1.08);
    }

    58% {
        transform: translateX(0) rotate(0deg) scale(1.02);
    }

    100% {
        transform: translateX(115%) rotate(5deg) scale(1.08);
    }
}

@keyframes splash-layer-sweep-reverse {
    0% {
        transform: translateX(115%) rotate(5deg) scale(1.08);
    }

    58% {
        transform: translateX(0) rotate(0deg) scale(1.02);
    }

    100% {
        transform: translateX(-115%) rotate(-5deg) scale(1.08);
    }
}

@keyframes splash-soft-reveal {
    to {
        opacity: 1;
    }
}

@keyframes splash-logo-rise {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(0.88);
        filter: blur(7px) drop-shadow(0 36px 34px rgba(58, 48, 42, 0.1));
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) drop-shadow(0 28px 42px rgba(58, 48, 42, 0.28));
    }
}

@keyframes splash-card-flip-one {
    to {
        transform: rotateY(180deg);
    }
}

@keyframes splash-card-flip-two {
    from {
        transform: rotateY(180deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes splash-logo-breathe {
    to {
        transform: scale(1.01);
    }
}

@keyframes splash-vignette-in {
    to {
        opacity: 1;
    }
}

@keyframes splash-screen-out {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.storefront-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    border: 1px solid rgba(78, 54, 36, 0.12);
    border-radius: 26px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 246, 0.84),
            rgba(250, 243, 234, 0.72)
        );
    backdrop-filter: blur(22px);
    box-shadow:
        0 20px 54px rgba(77, 54, 31, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.56);
    position: sticky;
    top: 16px;
    z-index: 20;
}

.storefront-nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid rgba(191, 90, 54, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 247, 0.96),
            rgba(248, 239, 230, 0.88)
        );
    color: var(--store-ink);
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 10px 22px rgba(77, 54, 31, 0.06);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.storefront-nav-toggle:hover,
.storefront-nav-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.28);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 248, 1),
            rgba(250, 242, 234, 0.94)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 12px 24px rgba(77, 54, 31, 0.08);
}

.storefront-nav-toggle__label {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.storefront-nav-toggle__icon {
    position: relative;
    width: 18px;
    height: 12px;
}

.storefront-nav-toggle__icon::before,
.storefront-nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        transform 180ms ease,
        top 180ms ease,
        bottom 180ms ease,
        opacity 180ms ease;
}

.storefront-nav-toggle__icon::before {
    top: 1px;
    box-shadow: 0 4px 0 currentColor;
}

.storefront-nav-toggle__icon::after {
    bottom: 1px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.brand-mark__logo {
    display: block;
    width: auto;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(77, 54, 31, 0.1));
}

.brand-mark__text {
    display: grid;
    gap: 3px;
}

.brand-mark__text strong {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.brand-mark__text small {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-accent);
}

.storefront-nav a,
.hero-summary,
.section-kicker,
.catalog-toolbar__meta,
.product-card__summary,
.product-card__facts dt {
    color: var(--store-muted);
}

.storefront-nav {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    gap: 10px 12px;
    align-items: center;
}

.storefront-nav a {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 249, 242, 0);
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.storefront-nav a:hover,
.storefront-nav a:focus-visible {
    background: rgba(255, 248, 240, 0.78);
    border-color: rgba(191, 90, 54, 0.14);
    color: var(--store-ink);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(77, 54, 31, 0.05);
}

/* Thin decorative dividers between nav links — desktop/inline layout only.
   Positioned in the row-gap itself (not on the link's own box) so a link's
   hover pill never clips or shifts the divider next to it. */
.storefront-header:not([data-nav-compact="true"]) .storefront-nav a:not(:first-child) {
    position: relative;
}

.storefront-header:not([data-nav-compact="true"]) .storefront-nav a:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 16px;
    background: rgba(191, 90, 54, 0.32);
    border-radius: 999px;
    pointer-events: none;
}

/* Collapsed/hamburger nav mode — driven by JS overflow detection (src/js/storefront-nav.js),
   not a fixed viewport-width media query, so it engages as soon as the nav's links stop fitting. */
.storefront-header[data-nav-compact="true"] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    /* Base .storefront-header sets gap:20px for its flex layout — as a grid
       row-gap that would reserve 20px above the collapsed nav row even while
       it sits at max-height:0, inflating the header past its visible content.
       The open nav already spaces itself from the row above via its own
       margin-top, so no grid gap is needed here in either state. */
    gap: 0;
    padding: 16px 18px;
}

.storefront-header[data-nav-compact="true"] .storefront-nav-toggle {
    display: inline-flex;
    justify-self: end;
}

.storefront-header[data-nav-compact="true"] .storefront-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    /* Zero-width/zero-margin (not just zero-opacity) when closed, so the
       collapsed nav contributes no reserved space at all — the header's
       height then truly tracks only its visible content. */
    margin-top: 0;
    border-top: 0 solid rgba(191, 90, 54, 0.12);
    pointer-events: none;
    transform: translateY(-8px);
    transition:
        max-height 260ms ease,
        opacity 220ms ease,
        transform 220ms ease,
        padding-top 220ms ease,
        margin-top 220ms ease,
        border-top-width 220ms ease;
}

.storefront-header[data-nav-compact="true"][data-nav-open="true"] .storefront-nav {
    max-height: min(70vh, 600px);
    overflow-y: auto;
    opacity: 1;
    padding-top: 12px;
    padding-bottom: 4px;
    margin-top: 8px;
    border-top-width: 1px;
    pointer-events: auto;
    transform: translateY(0);
}

.storefront-header[data-nav-open="true"] .storefront-nav-toggle__icon::before {
    top: 5px;
    box-shadow: none;
    transform: rotate(45deg);
}

.storefront-header[data-nav-open="true"] .storefront-nav-toggle__icon::after {
    bottom: 5px;
    transform: rotate(-45deg);
}

.storefront-header[data-nav-compact="true"] .storefront-nav a {
    display: flex;
    justify-content: center;
    width: min(100%, 280px);
    padding: 12px 18px;
    border-radius: 999px;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 247, 0.86),
            rgba(248, 239, 231, 0.76)
        );
    border-color: rgba(191, 90, 54, 0.08);
}

.storefront-main {
    display: grid;
    gap: 28px;
    margin-top: 26px;
}

.storefront-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding: 24px;
    border: 1px solid var(--store-line);
    border-radius: 26px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 246, 0.7),
            rgba(250, 243, 234, 0.55)
        );
}

.storefront-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.storefront-footer__brand img {
    display: block;
    height: 28px;
    width: auto;
    object-fit: contain;
}

.storefront-footer__brand span {
    font-size: 0.85rem;
    color: var(--store-muted);
}

.storefront-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
}

.storefront-footer__nav a {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--store-muted);
    position: relative;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.storefront-footer__nav a:hover,
.storefront-footer__nav a:focus-visible {
    background: rgba(255, 248, 240, 0.78);
    color: var(--store-ink);
}

/* Same decorative dividers as the header nav — desktop only, hidden below
   the breakpoint where the footer's own links might wrap to a new row. */
.storefront-footer__nav a:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 14px;
    background: rgba(191, 90, 54, 0.32);
    border-radius: 999px;
    pointer-events: none;
}

.storefront-footer__copy {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--store-muted);
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid var(--store-line);
}

@media (max-width: 640px) {
    .storefront-footer__nav a::before {
        display: none;
    }

    .storefront-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .storefront-footer__brand,
    .storefront-footer__nav {
        justify-content: center;
    }
}

.scroll-to-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 140;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--store-line);
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 246, 0.95),
            rgba(250, 243, 234, 0.9)
        );
    color: var(--store-ink);
    font-size: 1.2rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(77, 54, 31, 0.16);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition:
        opacity 220ms ease,
        transform 220ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.scroll-to-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top-btn:hover,
.scroll-to-top-btn:focus-visible {
    background: rgba(255, 252, 248, 1);
    border-color: rgba(191, 90, 54, 0.28);
}

@media (max-width: 640px) {
    .scroll-to-top-btn {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }
}

.promo-video-overlay {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(20, 16, 12, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.promo-video-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-video-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 211;
    width: min(880px, calc(100vw - 32px));
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.promo-video-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.promo-video-close {
    position: absolute;
    z-index: 1;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--store-line);
    background: var(--store-bg-soft);
    color: var(--store-ink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.promo-video-close:hover {
    color: var(--store-accent);
}

.promo-video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    aspect-ratio: 16 / 9;
}

.promo-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.promo-video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(180deg, #2a2420, #17130f);
    color: rgba(255, 250, 243, 0.86);
    font-size: 1.05rem;
}

.ops-section-nav {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 130;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 9px;
    border-radius: 999px;
    background: rgba(250, 246, 241, 0.7);
    border: 1px solid rgba(191, 90, 54, 0.14);
    box-shadow: 0 12px 28px rgba(77, 54, 31, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ops-section-nav__dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(191, 90, 54, 0.28);
    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.ops-section-nav__dot:hover,
.ops-section-nav__dot:focus-visible {
    background: rgba(191, 90, 54, 0.6);
    transform: scale(1.25);
}

.ops-section-nav__dot.is-active {
    background: var(--store-accent);
    transform: scale(1.35);
}

.ops-section-nav__dot::after {
    content: attr(data-label);
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(45, 41, 37, 0.92);
    color: #fffaf6;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 160ms ease,
        transform 160ms ease;
}

.ops-section-nav__dot:hover::after,
.ops-section-nav__dot:focus-visible::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 960px) {
    .ops-section-nav {
        display: none;
    }
}

.hero-panel,
.section-block {
    min-width: 0;
    border: 1px solid var(--store-line);
    border-radius: 30px;
    background: var(--store-card);
    box-shadow: var(--store-shadow);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
    gap: 24px;
    padding: 36px;
    overflow: hidden;
    position: relative;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -12% -38% 45%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(240, 201, 168, 0.55), transparent 62%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-main {
    position: relative;
    z-index: 1;
}

.hero-heading-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: 14px;
    align-items: center;
    margin-top: 12px;
}

.hero-totem {
    display: grid;
    justify-items: center;
    align-items: center;
    align-self: center;
    perspective: 1200px;
}

.hero-totem img {
    width: min(100%, 160px);
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 36px rgba(82, 58, 37, 0.14));
    transform-origin: 50% 55%;
    backface-visibility: hidden;
    will-change: transform, filter;
    animation: hero-totem-flip 8.8s cubic-bezier(0.68, -0.12, 0.32, 1.08)
        infinite;
}

.hero-heading-block {
    display: grid;
    gap: 14px;
    align-content: center;
}

.hero-kicker,
.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
}

.hero-copy h1,
.section-heading h2 {
    margin: 10px 0 0;
    line-height: 1.04;
}

.hero-copy h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(2.7rem, 4vw, 4.6rem);
    white-space: nowrap;
    /* Gradient lifted from the brand totem's own outline (indigo -> purple ->
       rose -> coral -> gold) — storefront hero only, matches the mascot's
       palette rather than inventing a new one. */
    background: linear-gradient(
        100deg,
        #4a5ac4 0%,
        #8247a8 26%,
        #c14c82 50%,
        #e8935e 76%,
        #f2bb5c 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-welcome {
    margin: 0;
    font-family: "Turbota Book", "Times New Roman", cursive, serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.65rem);
    letter-spacing: 0.04em;
    color: var(--store-muted);
}

.hero-subtitle {
    margin: 0;
    font-size: 0.98rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--store-accent);
}

.hero-summary {
    max-width: 60ch;
    margin-top: 18px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-action,
.product-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.hero-action:hover,
.hero-action:focus-visible,
.product-card__link:hover,
.product-card__link:focus-visible {
    transform: translateY(-1px);
}

.hero-action:focus-visible,
.product-card__link:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 248, 240, 0.92),
        0 0 0 5px rgba(191, 90, 54, 0.2);
}

.hero-action--primary,
.product-card__link--primary {
    background: linear-gradient(135deg, var(--store-accent), #db8258);
    color: #fff7f1;
    box-shadow: 0 18px 34px rgba(191, 90, 54, 0.23);
}

.hero-action:not(.hero-action--primary),
.product-card__link--ghost {
    border-color: rgba(191, 90, 54, 0.24);
    background: rgba(255, 248, 240, 0.72);
    color: var(--store-ink);
}

.cs-icon-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(191, 90, 54, 0.24);
    background: rgba(255, 248, 240, 0.72);
    color: var(--store-ink);
    cursor: pointer;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        color 150ms ease;
}

.cs-icon-remove-btn:hover {
    background: rgba(191, 90, 54, 0.12);
    border-color: rgba(191, 90, 54, 0.4);
    color: #bf5a36;
}

/* Compact "mini-dashboard" widget replacing the old hero-stats circles: a
   tabbed News/Releases/Highlights feed, framed the same way as
   .catalog-overview-card / .catalog-group (same border + cream gradient)
   so it reads as a native part of the hero-panel rather than a new motif. */
.hero-widget {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-self: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 238, 228, 0.92));
    border: 1px solid rgba(191, 90, 54, 0.12);
}

.hero-widget__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(191, 90, 54, 0.14);
}

.hero-widget__tab {
    flex: 1 1 auto;
    padding: 5px 6px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--store-muted);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.hero-widget__tab:hover {
    color: var(--store-ink);
}

.hero-widget__tab.is-active {
    background: rgba(191, 90, 54, 0.12);
    color: #bf5a36;
}

.hero-widget__panel {
    display: flex;
    flex-direction: column;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
}

.hero-widget__panel[hidden] {
    display: none;
}

.hero-widget__empty {
    margin: 8px 0;
    color: var(--store-muted);
    font-size: 0.78rem;
    text-align: center;
}

.hero-widget__item {
    position: relative;
    padding: 10px 0;
}

.hero-widget__item + .hero-widget__item {
    border-top: 1px solid rgba(191, 90, 54, 0.12);
}

.hero-widget__item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    color: var(--store-ink);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.3;
    cursor: pointer;
}

.hero-widget__item-title .product-card__title-chevron {
    flex-shrink: 0;
}

.hero-widget__item.is-expanded .product-card__title-chevron {
    transform: rotate(0deg);
}

.hero-widget__date,
.hero-widget__countdown {
    display: block;
    margin-top: 3px;
    color: var(--store-muted);
    font-size: 0.68rem;
}

.hero-widget__countdown {
    color: #bf5a36;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

/* Same 0fr/1fr collapse technique as .product-card__summary. */
.hero-widget__item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.hero-widget__item.is-expanded .hero-widget__item-body {
    grid-template-rows: 1fr;
}

.hero-widget__item-body-inner {
    overflow: hidden;
}

.hero-widget__item-body p {
    margin: 6px 0 0;
    color: rgba(111, 98, 86, 0.92);
    font-size: 0.78rem;
    line-height: 1.55;
}

.hero-widget__learn-more {
    display: inline-block;
    margin-top: 6px;
    color: #bf5a36;
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
}

.hero-widget__learn-more:hover {
    text-decoration: underline;
}

.section-block {
    padding: 30px;
}

.section-lead,
.editorial-lead {
    max-width: 66ch;
    margin: 6px 0 0;
    color: var(--store-muted);
    line-height: 1.75;
}

.brand-intro-grid,
.brand-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.brand-intro-card,
.brand-panel-card {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.94),
            rgba(247, 238, 228, 0.92)
        );
}

.brand-intro-card strong,
.brand-panel-card h3 {
    display: block;
    margin: 0 0 10px;
}

.brand-intro-card p,
.brand-panel-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.7;
}

.brand-panel-card {
    position: relative;
    overflow: hidden;
    display: block;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.brand-panel-card:hover,
.brand-panel-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(77, 54, 31, 0.12);
    border-color: rgba(191, 90, 54, 0.2);
}

.brand-panel-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -20% 55%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(240, 201, 168, 0.3),
        transparent 64%
    );
    pointer-events: none;
}

.brand-panel-card__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(191, 90, 54, 0.12);
    color: var(--store-accent);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-panel-card__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: var(--store-accent);
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-page-shell {
    display: grid;
    grid-template-columns: minmax(290px, 380px) minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--store-line);
    border-radius: 30px;
    background: var(--store-card);
    box-shadow: var(--store-shadow);
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--store-muted);
}

.product-breadcrumbs a:hover,
.product-breadcrumbs a:focus-visible {
    color: var(--store-ink);
}

.product-page-cover {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 12px;
    border-radius: 26px;
    border: 1px solid rgba(191, 90, 54, 0.1);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.74),
            rgba(247, 239, 230, 0.62)
        );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.product-page-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--store-shadow);
}

.product-page-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-page-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(77, 54, 31, 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.product-page-gallery img:hover,
.product-page-gallery img:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(77, 54, 31, 0.12);
    filter: saturate(1.02);
}

.product-page-body {
    display: grid;
    gap: 16px;
    align-content: start;
}

.request-shell {
    padding: 28px;
    border: 1px solid var(--store-line);
    border-radius: 30px;
    background: var(--store-card);
    box-shadow: var(--store-shadow);
}

.request-card {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 24px;
}

.request-card__media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: var(--store-shadow);
}

.request-card__body {
    display: grid;
    gap: 18px;
    align-content: start;
}

.request-card__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.request-card__lead {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.75;
}

.request-card__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.request-card__activity {
    display: grid;
    gap: 12px;
}

.request-trust-note {
    padding: 14px 16px 15px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.9);
}

.request-trust-note strong {
    display: block;
    margin-bottom: 7px;
    font-size: 0.96rem;
}

.request-trust-note p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.58;
    font-size: 0.94rem;
}

.request-activity-card {
    padding: 16px 18px 17px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.92);
}

.request-activity-card__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.request-activity-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.request-activity-card__stamp {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.request-activity-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.62;
}

.request-card--success {
    grid-template-columns: 1fr;
}

.request-form {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(249, 242, 233, 0.9));
}

.request-form__header {
    display: grid;
    gap: 10px;
}

.request-form__header h2 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.14;
}

.request-form__meta,
.request-form__footnote {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.request-form__footnote.is-feedback {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(142, 179, 171, 0.24);
    background: rgba(231, 242, 238, 0.88);
    color: #2f5b54;
}

.request-form__footnote.is-pending {
    border-color: rgba(191, 90, 54, 0.22);
    background: rgba(255, 245, 235, 0.92);
    color: #8c5534;
}

.request-form__footnote.is-error {
    border-color: rgba(154, 53, 39, 0.22);
    background: rgba(252, 237, 232, 0.94);
    color: #8d3d30;
}

.request-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.request-field {
    display: grid;
    gap: 8px;
    position: relative;
}

.request-field--full {
    grid-column: 1 / -1;
}

.request-field span {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.request-field input,
.request-field select,
.request-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(191, 90, 54, 0.16);
    background: rgba(255, 254, 251, 0.95);
    color: var(--store-ink);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.request-field select {
    appearance: none;
    padding-right: 42px;
    cursor: pointer;
}

.request-field:has(select)::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 9px;
    height: 9px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    color: rgba(45, 41, 37, 0.74);
    transform: translateY(-2px) rotate(45deg);
    transform-origin: center;
    pointer-events: none;
    transition:
        transform 180ms ease,
        color 180ms ease;
}

.request-field:has(select:focus)::after {
    color: var(--store-accent);
    transform: translateY(2px) rotate(-135deg);
}

/* Shared bare-<select> chevron wrapper for admin/ops surfaces that don't already
   route through .request-field / .catalog-filter (which style their own chevron). */
.chevron-select-wrap {
    position: relative;
    display: inline-flex;
}

.chevron-select-wrap select,
.ac-field select {
    appearance: none;
    width: 100%;
    padding-right: 30px !important;
}

.chevron-select-wrap::after,
.ac-field:has(select)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    width: 7px;
    height: 7px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    color: rgba(45, 41, 37, 0.55);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.chevron-select-wrap:focus-within::after,
.ac-field:has(select:focus)::after {
    color: var(--store-accent, rgba(45, 41, 37, 0.85));
}

.ac-field:has(select) {
    position: relative;
}

.request-field textarea {
    min-height: 124px;
    resize: vertical;
}

.request-field input:hover,
.request-field select:hover,
.request-field textarea:hover {
    border-color: rgba(191, 90, 54, 0.26);
    transform: translateY(-1px);
}

.request-field input:focus,
.request-field select:focus,
.request-field textarea:focus {
    outline: none;
    border-color: rgba(191, 90, 54, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 0 0 4px rgba(191, 90, 54, 0.08),
        0 10px 22px rgba(77, 54, 31, 0.07);
}

.request-checkbox {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.14);
    background: rgba(255, 248, 240, 0.72);
}

.request-checkbox input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--store-accent);
}

.request-checkbox span {
    color: var(--store-muted);
    line-height: 1.6;
}

.request-form__actions {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.request-form__actions .product-card__link {
    border: 0;
}

.dashboard-shell {
    display: grid;
    gap: 22px;
}

.dashboard-toolbar {
    margin-bottom: 0;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ops-view-toggle {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ops-view-toggle__button.is-active {
    border-color: rgba(191, 90, 54, 0.22);
    background: rgba(255, 248, 240, 0.96);
    box-shadow: 0 12px 24px rgba(77, 54, 31, 0.08);
}

.ops-report-presets {
    display: grid;
    gap: 14px;
}

.ops-report-presets__header h3 {
    margin: 4px 0 0;
    font-size: 1.08rem;
}

.ops-report-presets__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.ops-report-preset {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.95),
            rgba(247, 239, 230, 0.92)
        );
    transition:
        transform 140ms ease,
        border-color 140ms ease,
        box-shadow 180ms ease;
}

.ops-report-preset__main {
    display: grid;
    gap: 6px;
    justify-items: start;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.ops-report-preset__save {
    min-height: 38px;
    padding-inline: 14px;
}

.ops-report-preset strong {
    font-size: 0.96rem;
}

.ops-report-preset span {
    color: var(--store-muted);
    line-height: 1.45;
    font-size: 0.88rem;
}

.ops-report-preset:hover,
.ops-report-preset:focus-within {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.2);
    box-shadow: 0 10px 22px rgba(77, 54, 31, 0.08);
}

.ops-report-preset.is-active {
    border-color: rgba(191, 90, 54, 0.24);
    background: rgba(255, 246, 236, 0.96);
    box-shadow: 0 12px 24px rgba(77, 54, 31, 0.08);
}

.ops-saved-views {
    display: grid;
    gap: 14px;
}

.ops-saved-views__composer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}

.ops-saved-views__intro {
    display: grid;
    gap: 6px;
}

.ops-saved-views__intro p:last-child {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.6;
}

.ops-saved-views__list {
    display: grid;
    gap: 10px;
}

.ops-saved-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.92);
}

.ops-saved-view__copy {
    display: grid;
    gap: 4px;
}

.ops-saved-view__copy p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.5;
}

.ops-saved-view__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ops-saved-view__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ops-saved-view__button {
    width: auto;
    min-width: 0;
}

.dashboard-actions .product-card__link {
    border: 0;
}

#importResultCard {
    margin-top: -4px;
}

.dashboard-handoff {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(248, 240, 231, 0.92));
}

.dashboard-handoff__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.dashboard-handoff__header h2 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.15;
}

.dashboard-handoff__lead {
    margin: 8px 0 0;
    max-width: 60ch;
    color: var(--store-muted);
    line-height: 1.7;
}

.dashboard-handoff__meta {
    display: grid;
    justify-items: end;
    gap: 8px;
}

.dashboard-handoff__endpoint {
    color: var(--store-muted);
    font-size: 0.92rem;
}

.dashboard-handoff__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-handoff__actions .product-card__link {
    border: 0;
}

.dashboard-handoff__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 16px;
    align-items: start;
}

.dashboard-handoff__payload {
    margin: 0;
    min-height: 220px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(45, 41, 37, 0.94);
    color: #f8efe4;
    font-size: 0.88rem;
    line-height: 1.6;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.dashboard-handoff--transport {
    gap: 18px;
    padding: 24px;
}

.dashboard-handoff--transport .dashboard-handoff__grid {
    align-items: stretch;
}

.dashboard-handoff--transport .dashboard-handoff__payload {
    min-height: 0;
    max-height: 460px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 30px rgba(18, 16, 15, 0.14);
}

.ops-inbox-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 18px;
    align-items: start;
}

.ops-status-lane {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.ops-priority-lane {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.ops-report-panel {
    display: grid;
    gap: 18px;
}

.ops-team-capacity {
    display: grid;
    gap: 18px;
}

.ops-report-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 18px;
}

.ops-report-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ops-report-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.94),
            rgba(247, 238, 228, 0.92)
        );
}

.ops-report-card--summary {
    padding: 22px;
}

.ops-report-card__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    flex-wrap: wrap;
}

.ops-report-card__header h3 {
    margin: 4px 0 0;
    font-size: 1.18rem;
}

.ops-report-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ops-report-card__meta span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 248, 240, 0.86);
    color: var(--store-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ops-triage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ops-triage-card {
    text-align: left;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.ops-triage-card:hover,
.ops-triage-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(58, 44, 31, 0.08);
}

.ops-triage-card.is-selected {
    border-color: rgba(191, 90, 54, 0.26);
    box-shadow: 0 14px 28px rgba(191, 90, 54, 0.08);
}

.ops-triage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.ops-triage-bulk {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(246, 239, 231, 0.9)
        );
}

.ops-triage-bulk__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.ops-triage-bulk h4 {
    margin: 4px 0 0;
    font-size: 1rem;
    line-height: 1.22;
}

.ops-triage-action {
    min-width: 0;
}

.ops-triage-action[disabled] {
    opacity: 0.52;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ops-team-capacity__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ops-team-capacity__card {
    display: grid;
    gap: 10px;
    text-align: left;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.ops-team-capacity__card:hover,
.ops-team-capacity__card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(58, 44, 31, 0.08);
}

.ops-team-capacity__card.is-selected {
    border-color: rgba(191, 90, 54, 0.26);
    box-shadow: 0 14px 28px rgba(191, 90, 54, 0.08);
}

.ops-team-capacity__card.is-current {
    border-color: rgba(45, 126, 84, 0.24);
}

.ops-team-capacity__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ops-team-balance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ops-team-balance__card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 246, 0.95),
            rgba(245, 238, 229, 0.9)
        );
}

.ops-team-balance__card strong {
    font-size: 1.08rem;
    line-height: 1.2;
}

.ops-team-balance__card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.58;
}

.ops-team-balance__card .product-card__link {
    justify-self: start;
}

.ops-team-trend {
    display: grid;
    gap: 12px;
}

.ops-team-trend__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ops-team-trend__card {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(246, 239, 231, 0.9)
        );
    text-align: left;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.ops-team-trend__card:hover,
.ops-team-trend__card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(58, 44, 31, 0.08);
}

.ops-team-trend__card.is-selected {
    border-color: rgba(191, 90, 54, 0.26);
    box-shadow: 0 14px 28px rgba(191, 90, 54, 0.08);
}

.ops-team-trend__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.ops-team-trend__summary {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.58;
}

.ops-team-trend__bars {
    height: 8px;
    border-radius: 999px;
    background: rgba(191, 90, 54, 0.08);
    overflow: hidden;
}

.ops-team-trend__bars span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            rgba(191, 90, 54, 0.72),
            rgba(229, 148, 108, 0.88)
        );
}

.ops-report-list {
    display: grid;
    gap: 10px;
}

.ops-report-list__item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.1);
    background: rgba(255, 251, 246, 0.86);
}

.ops-report-list__item p {
    margin: 6px 0 0;
    color: var(--store-muted);
    line-height: 1.55;
}

.ops-report-list__item--interactive {
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ops-report-list__item--interactive:hover,
.ops-report-list__item--interactive:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.22);
    box-shadow: 0 16px 28px rgba(191, 90, 54, 0.08);
}

.ops-report-list__item--interactive.is-selected {
    border-color: rgba(191, 90, 54, 0.28);
    background: rgba(255, 244, 236, 0.96);
    box-shadow: 0 18px 32px rgba(191, 90, 54, 0.09);
}

.ops-report-list__item--composite {
    display: grid;
    gap: 12px;
}

.ops-report-list__item--primary {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ops-report-list__item--primary:hover,
.ops-report-list__item--primary:focus-visible {
    background: transparent;
}

.ops-report-list__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ops-report-list__action {
    min-width: 0;
}

.ops-report-list__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
}

.ops-report-scope {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.74);
}

.ops-report-scope.is-active {
    border-color: rgba(191, 90, 54, 0.22);
    background: rgba(255, 244, 236, 0.88);
}

.ops-report-scope p {
    margin: 6px 0 0;
    color: var(--store-muted);
}

.ops-report-scope__clear {
    flex-shrink: 0;
}

.ops-report-table {
    display: grid;
    gap: 8px;
}

.ops-report-table__row {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 0.55fr));
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid rgba(191, 90, 54, 0.08);
}

.ops-report-table__row--interactive {
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ops-report-table__row--interactive:hover,
.ops-report-table__row--interactive:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.2);
    box-shadow: 0 16px 28px rgba(191, 90, 54, 0.07);
    background: rgba(255, 247, 239, 0.92);
}

.ops-report-table__row span:first-child {
    font-weight: 600;
}

.ops-report-table__row--head {
    background: rgba(243, 233, 222, 0.72);
    color: var(--store-muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-status-chip {
    display: grid;
    gap: 6px;
    justify-items: start;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.95),
            rgba(247, 239, 230, 0.92)
        );
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.ops-status-chip:hover,
.ops-status-chip:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.24);
    box-shadow: 0 12px 24px rgba(77, 54, 31, 0.08);
    outline: none;
}

.ops-status-chip.is-active {
    border-color: rgba(191, 90, 54, 0.28);
    background:
        linear-gradient(
            180deg,
            rgba(255, 247, 240, 0.98),
            rgba(248, 236, 224, 0.94)
        );
    box-shadow: 0 16px 28px rgba(191, 90, 54, 0.1);
}

.ops-status-chip__label,
.ops-status-chip__detail {
    color: var(--store-muted);
}

.ops-status-chip__label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-status-chip__value {
    font-size: 1.5rem;
    line-height: 1;
}

.ops-status-chip__detail {
    font-size: 0.9rem;
    line-height: 1.4;
}

.ops-priority-chip {
    display: grid;
    gap: 6px;
    justify-items: start;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(128, 110, 54, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.95),
            rgba(246, 241, 231, 0.92)
        );
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.ops-priority-chip:hover,
.ops-priority-chip:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(163, 104, 39, 0.24);
    box-shadow: 0 12px 24px rgba(77, 54, 31, 0.08);
    outline: none;
}

.ops-priority-chip.is-active {
    border-color: rgba(163, 104, 39, 0.28);
    background:
        linear-gradient(
            180deg,
            rgba(255, 249, 240, 0.98),
            rgba(247, 239, 226, 0.94)
        );
    box-shadow: 0 16px 28px rgba(163, 104, 39, 0.1);
}

.ops-priority-chip__label,
.ops-priority-chip__detail {
    color: var(--store-muted);
}

.ops-priority-chip__label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-priority-chip__value {
    font-size: 1.5rem;
    line-height: 1;
}

.ops-priority-chip__detail {
    font-size: 0.9rem;
    line-height: 1.4;
}

.ops-inbox-list,
.ops-inbox-detail {
    display: grid;
    gap: 14px;
}

.ops-inbox-batch {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.88);
    color: inherit;
    text-align: left;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.ops-inbox-batch:hover,
.ops-inbox-batch:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.26);
    box-shadow: 0 12px 28px rgba(98, 71, 38, 0.1);
    outline: none;
}

.ops-inbox-batch.is-selected {
    border-color: rgba(191, 90, 54, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(248, 239, 227, 0.95));
    box-shadow: 0 16px 36px rgba(98, 71, 38, 0.12);
}

.ops-inbox-batch--overdue {
    border-color: rgba(154, 53, 39, 0.24);
    box-shadow: inset 0 0 0 1px rgba(154, 53, 39, 0.08);
}

.ops-inbox-batch--due-soon {
    border-color: rgba(163, 104, 39, 0.22);
    box-shadow: inset 0 0 0 1px rgba(163, 104, 39, 0.08);
}

.ops-inbox-batch__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ops-inbox-batch__top,
.ops-inbox-record__top {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: start;
}

.ops-inbox-record__top strong {
    min-width: 0;
    overflow-wrap: break-word;
}

.ops-inbox-record__top .catalog-badge {
    flex-shrink: 0;
}

.ops-inbox-batch__meta,
.ops-inbox-batch__sub,
.ops-inbox-record p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.6;
}

.ops-inbox-batch__meta {
    color: var(--store-ink);
}

.ops-inbox-records,
.ops-inbox-records__list {
    display: grid;
    gap: 12px;
}

.ops-batch-lead {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(191, 90, 54, 0.1);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.92);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.ops-batch-lead:hover,
.ops-batch-lead:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.24);
    box-shadow: 0 12px 24px rgba(77, 54, 31, 0.08);
    outline: none;
}

.ops-inbox-record {
    display: grid;
    gap: 8px;
    padding: 14px 16px 14px 22px;
    border: 1px solid rgba(191, 90, 54, 0.1);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.92);
    position: relative;
}

.ops-inbox-record::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    border-radius: 999px;
    background: rgba(191, 90, 54, 0.18);
}

.ops-inbox-payload {
    min-height: 260px;
}

.ops-editor {
    display: grid;
    gap: 14px;
}

.ops-editor__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ops-editor__notes textarea,
.ops-editor input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.14);
    background: rgba(255, 252, 247, 0.96);
    color: var(--store-ink);
    font: inherit;
}

.ops-editor__notes textarea {
    resize: vertical;
    min-height: 110px;
}

.ops-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ops-quick-actions--dates {
    margin-top: -2px;
}

.ops-quick-actions__chip {
    border: 0;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.ops-quick-actions__chip:hover,
.ops-quick-actions__chip:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(77, 54, 31, 0.06);
    outline: none;
}

.ops-quick-actions__chip.is-active {
    background: rgba(191, 90, 54, 0.16);
    color: #9a502e;
    box-shadow: 0 12px 22px rgba(191, 90, 54, 0.08);
}

.dashboard-table-shell {
    overflow: auto;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(248, 240, 231, 0.92));
}

.dashboard-table-shell--requests {
    max-height: 760px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        0 18px 34px rgba(77, 54, 31, 0.06);
}

.requests-batch-bar {
    display: grid;
}

.requests-follow-up-queues__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.requests-follow-up-card {
    gap: 14px;
}

.requests-follow-up-card__list {
    display: grid;
    gap: 10px;
}

.requests-follow-up-item {
    display: grid;
    gap: 8px;
    padding: 14px 15px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.1);
    background: rgba(255, 249, 242, 0.74);
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease;
}

.requests-follow-up-item:hover,
.requests-follow-up-item:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.2);
    box-shadow: 0 12px 24px rgba(77, 54, 31, 0.05);
    outline: none;
}

.requests-follow-up-item.is-selected {
    border-color: rgba(191, 90, 54, 0.24);
    background: rgba(246, 236, 226, 0.78);
    box-shadow: 0 12px 24px rgba(77, 54, 31, 0.06);
}

.requests-follow-up-item__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
}

.requests-follow-up-item__top strong {
    font-size: 0.98rem;
    line-height: 1.35;
}

.requests-follow-up-item__meta {
    margin: 0;
    color: var(--store-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    word-break: break-word;
}

.requests-follow-up-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 2px;
}

.requests-follow-up-item__action {
    border: 0;
    padding: 10px 14px;
    min-height: auto;
    font-size: 0.88rem;
}

.requests-meeting-queue__summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.requests-meeting-queue__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.requests-meeting-card {
    gap: 12px;
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease;
}

.requests-meeting-card:hover,
.requests-meeting-card:focus-visible,
.requests-meeting-card.is-selected {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.22);
    box-shadow: 0 14px 26px rgba(77, 54, 31, 0.05);
    outline: none;
}

.requests-meeting-card__meta {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.5;
}

.requests-meeting-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.requests-meeting-card__action {
    border: 0;
}

.requests-batch-stack {
    display: grid;
    gap: 12px;
}

.requests-batch-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 238, 228, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        0 18px 34px rgba(77, 54, 31, 0.05);
}

.requests-batch-panel__copy {
    display: grid;
    gap: 8px;
    max-width: 44rem;
}

.requests-batch-panel__copy h2,
.requests-batch-panel__copy p {
    margin: 0;
}

.requests-batch-panel__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.requests-batch-panel__actions .product-card__link {
    border: 0;
}

.requests-batch-editor {
    width: 100%;
    padding-top: 6px;
    border-top: 1px solid rgba(191, 90, 54, 0.1);
}

.requests-batch-editor__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.requests-batch-editor__toggles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(191, 90, 54, 0.1);
}

.dashboard-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(252, 246, 239, 0.96);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.dashboard-table tbody tr:hover {
    background: rgba(255, 248, 240, 0.58);
}

.dashboard-table__row {
    cursor: pointer;
}

.dashboard-table__row.is-selected {
    background: rgba(244, 232, 220, 0.72);
}

.request-table-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.request-table-checkbox input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--store-accent);
}

.dashboard-table__sub {
    margin-top: 4px;
    color: var(--store-muted);
    font-size: 0.88rem;
    line-height: 1.45;
    word-break: break-word;
}

.dashboard-table__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.dashboard-detail {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(249, 241, 232, 0.92));
}

.dashboard-detail--requests {
    gap: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        0 18px 34px rgba(77, 54, 31, 0.06);
}

.dashboard-detail--requests .dashboard-status-actions {
    padding-top: 2px;
}

.dashboard-detail__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.dashboard-detail__header h2 {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.1;
}

.dashboard-detail__header-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.dashboard-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-detail__actions .product-card__link {
    border: 0;
}

.meeting-scenario-lifecycle {
    display: grid;
    gap: 12px;
}

.meeting-scenario-lifecycle__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.meeting-scenario-lifecycle__header strong {
    margin: 0;
}

.meeting-scenario-lifecycle__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meeting-scenario-lifecycle__actions .product-card__link {
    border: 0;
}

.dashboard-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-status-actions__button {
    border: 0;
}

.dashboard-detail__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-detail-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ops-analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ops-insight-group {
    display: grid;
    gap: 12px;
}

.ops-assignee-reco {
    display: grid;
    gap: 12px;
}

.ops-reassignment {
    display: grid;
    gap: 12px;
}

.ops-handoff-templates,
.ops-handoff-templates__grid {
    display: grid;
    gap: 12px;
}

.ops-handoff-templates__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ops-handoff-template {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(246, 239, 231, 0.9)
        );
}

.ops-handoff-template p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.58;
}

.ops-handoff-template .product-card__link {
    justify-self: start;
}

.ops-assignee-reco__primary,
.ops-assignee-reco__alt {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(247, 251, 246, 0.95),
            rgba(239, 247, 239, 0.88)
        );
}

.ops-assignee-reco__top,
.ops-assignee-reco__alt-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.ops-assignee-reco__label {
    display: block;
    margin-bottom: 6px;
    color: var(--store-muted);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-assignee-reco__name {
    font-size: 1.08rem;
    line-height: 1.2;
}

.ops-assignee-reco__summary,
.ops-assignee-reco__alt p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.55;
}

.ops-assignee-reco__signals,
.ops-assignee-reco__alternatives {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ops-assignee-reco__alternatives {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-reassignment__card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(246, 239, 231, 0.9)
        );
}

.ops-reassignment__card[data-tone="draft"] {
    border-color: rgba(87, 76, 125, 0.18);
    background: rgba(247, 243, 255, 0.9);
}

.ops-reassignment__top,
.ops-reassignment__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.ops-reassignment__label {
    display: block;
    margin-bottom: 6px;
    color: var(--store-muted);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-reassignment__title {
    font-size: 1.04rem;
    line-height: 1.35;
}

.ops-reassignment__summary {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.58;
}

.ops-reassignment__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ops-action-templates,
.ops-action-templates__grid {
    display: grid;
    gap: 12px;
}

.ops-action-templates__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ops-action-template {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(245, 238, 229, 0.9)
        );
}

.ops-action-template__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.ops-action-template__summary {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.58;
}

.ops-action-template__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ops-action-template__apply {
    justify-self: start;
}

.ops-outreach-templates,
.ops-outreach-templates__grid {
    display: grid;
    gap: 12px;
}

.ops-outreach-templates__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-outreach-templates__tones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.ops-outreach-template {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(244, 238, 229, 0.9)
        );
}

.ops-outreach-template__top,
.ops-outreach-template__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.ops-outreach-template__body {
    display: grid;
    gap: 10px;
}

.ops-outreach-template__body p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.58;
}

.ops-operator-composer {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(245, 238, 230, 0.9)
        );
}

.ops-operator-composer__pickers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ops-operator-composer__packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ops-operator-composer__package {
    display: grid;
    gap: 6px;
    padding: 14px;
    text-align: left;
    border-radius: 16px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 248, 240, 0.82);
    color: var(--store-ink);
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease;
}

.ops-operator-composer__package:hover,
.ops-operator-composer__package:focus-visible,
.ops-operator-composer__package.is-active {
    transform: translateY(-1px);
    border-color: rgba(191, 90, 54, 0.22);
    box-shadow: 0 10px 20px rgba(77, 54, 31, 0.05);
    outline: none;
}

.ops-operator-composer__package strong {
    font-size: 0.94rem;
}

.ops-operator-composer__package span {
    color: var(--store-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.ops-operator-composer__picker {
    display: grid;
    gap: 10px;
}

.ops-operator-composer__picker strong {
    font-size: 0.95rem;
}

.ops-operator-composer__form {
    display: grid;
    gap: 12px;
}

.ops-operator-composer__body textarea {
    min-height: 128px;
    resize: vertical;
}

.ops-operator-composer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ops-operator-composer__actions .product-card__link {
    border: 0;
}

.ops-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ops-insight-card {
    display: grid;
    min-width: 0;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(248, 241, 232, 0.88)
        );
    text-align: left;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.ops-insight-card:hover,
.ops-insight-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(58, 44, 31, 0.08);
    border-color: rgba(191, 90, 54, 0.24);
}

.ops-insight-card__meta,
.ops-insight-card__summary {
    margin: 0;
}

.ops-insight-card__meta {
    color: var(--store-muted);
    font-size: 0.92rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.ops-insight-card__reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ops-insight-card__summary {
    color: var(--store-muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.ops-analytics-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.9);
}

.ops-analytics-card__label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.ops-analytics-card__value {
    font-size: 1.08rem;
    line-height: 1.2;
}

.ops-analytics-card__detail {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.55;
}

.ops-cohort-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ops-cohort-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.88);
}

.ops-cohort-list {
    display: grid;
    gap: 8px;
}

.ops-cohort-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 247, 239, 0.78);
}

.ops-cohort-row strong {
    display: block;
}

.ops-cohort-row p {
    margin: 4px 0 0;
    color: var(--store-muted);
    line-height: 1.45;
    font-size: 0.9rem;
}

.ops-cohort-row__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.ops-detail-chip {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.94),
            rgba(248, 240, 231, 0.9)
        );
}

.ops-detail-chip__label,
.ops-detail-chip__meta {
    color: var(--store-muted);
}

.ops-detail-chip__label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-detail-chip__value {
    font-size: 1.02rem;
    line-height: 1.4;
    font-weight: 600;
}

.ops-detail-chip__meta {
    font-size: 0.9rem;
    line-height: 1.5;
}

.dashboard-detail__note {
    margin-top: 2px;
    display: grid;
    gap: 8px;
}

.dashboard-detail__note strong {
    font-size: 1rem;
}

.dashboard-detail__note p {
    margin: 0;
    line-height: 1.72;
}

.dashboard-detail__note--soft {
    background: rgba(255, 249, 242, 0.7);
}

.dashboard-detail__trace-path {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.88rem;
    word-break: break-word;
}

.dashboard-timeline {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 239, 229, 0.9));
}

.dashboard-timeline__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.dashboard-timeline__meta {
    margin: 0;
    color: var(--store-muted);
}

.dashboard-timeline__list {
    display: grid;
    gap: 12px;
}

.dashboard-timeline__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.dashboard-timeline__marker {
    width: 12px;
    height: 12px;
    margin-top: 9px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(191, 90, 54, 0.9), rgba(221, 139, 99, 0.82));
    box-shadow: 0 0 0 4px rgba(191, 90, 54, 0.08);
}

.dashboard-timeline__content {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 249, 242, 0.8);
    border: 1px solid rgba(191, 90, 54, 0.1);
}

.dashboard-timeline__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.dashboard-timeline__date,
.dashboard-timeline__source {
    color: var(--store-muted);
}

.dashboard-timeline__source {
    margin: 0;
    line-height: 1.55;
}

.editorial-hero {
    padding: 30px;
    border: 1px solid var(--store-line);
    border-radius: 30px;
    background: var(--store-card);
    box-shadow: var(--store-shadow);
}

.editorial-title {
    margin: 10px 0 0;
    font-size: clamp(1.5rem, 2.3vw, 2.15rem);
    font-weight: 600;
    line-height: 1.25;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.editorial-card {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.94),
            rgba(247, 238, 228, 0.92)
        );
}

.editorial-card h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.editorial-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.75;
}

/* Guide page: inline documentation reader, structurally mirroring the
   runtime's Quick Start Guide panel (main.js setupQuickStartPanel /
   styles.css .quickstart-doc-*), restyled for the storefront theme and
   adapted from a modal panel to an always-visible page section — Guide is
   already the dedicated destination, so no click-to-open overlay is needed. */
.guide-doc-shell {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.guide-doc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.guide-doc-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(440px, 100%);
    padding: 0 14px;
    min-height: 44px;
    border: 1px solid var(--store-line);
    border-radius: 999px;
    background: var(--store-bg-soft);
}

.guide-doc-search svg {
    width: 18px;
    height: 18px;
    stroke: var(--store-muted);
    stroke-width: 1.8;
    fill: none;
    flex-shrink: 0;
}

.guide-doc-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--store-ink);
    font-family: inherit;
    font-size: 14px;
}

.guide-doc-search input::placeholder {
    color: var(--store-muted);
}

.guide-doc-search-meta {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--store-muted);
    white-space: nowrap;
}

.guide-doc-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.guide-doc-nav {
    position: sticky;
    top: 18px;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    padding: 20px 16px;
    border: 1px solid var(--store-line);
    border-radius: 24px;
    background: var(--store-card);
}

.guide-doc-nav-section + .guide-doc-nav-section {
    margin-top: 18px;
}

.guide-doc-nav-link {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--store-ink);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.guide-doc-nav-link:hover {
    color: var(--store-accent);
    transform: translateX(1px);
}

.guide-doc-nav-link-level-1 {
    padding: 6px 0;
}

.guide-doc-nav-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.guide-doc-nav-copy strong {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.guide-doc-nav-copy small {
    font-size: 12px;
    line-height: 1.5;
    color: var(--store-muted);
}

.guide-doc-nav-children,
.guide-doc-nav-grandchildren {
    margin-left: 4px;
    padding-left: 14px;
    border-left: 1px solid var(--store-line);
}

.guide-doc-nav-children {
    margin-top: 8px;
}

.guide-doc-nav-chapter + .guide-doc-nav-chapter {
    margin-top: 6px;
}

.guide-doc-nav-link-level-2,
.guide-doc-nav-link-level-3 {
    padding: 6px 0;
}

.guide-doc-nav-link-level-2 .guide-doc-nav-copy strong {
    font-size: 13.5px;
    font-weight: 500;
}

.guide-doc-nav-link-level-3 .guide-doc-nav-copy strong {
    font-size: 13px;
    font-weight: normal;
    color: var(--store-muted);
}

.guide-doc-nav-link.active .guide-doc-nav-copy strong,
.guide-doc-nav-link.active-parent .guide-doc-nav-copy strong {
    color: var(--store-accent);
}

.guide-doc-main {
    min-width: 0;
}

.guide-doc-section,
.guide-doc-chapter,
.guide-doc-part {
    scroll-margin-top: 22px;
}

.guide-doc-section {
    padding: 22px;
    border: 1px solid var(--store-line);
    border-radius: 24px;
    background: var(--store-card);
    box-shadow: 0 14px 28px rgba(90, 74, 66, 0.05);
}

.guide-doc-section + .guide-doc-section {
    margin-top: 18px;
}

.guide-doc-section-header {
    margin-bottom: 18px;
}

.guide-doc-kicker {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--store-accent);
}

.guide-doc-section-header h2,
.guide-doc-chapter-header h3,
.guide-doc-part h4 {
    margin: 0 0 8px;
    color: var(--store-ink);
    font-weight: normal;
}

.guide-doc-section-header h2 {
    font-size: 1.4rem;
}

.guide-doc-section-header p,
.guide-doc-chapter-header p,
.guide-doc-part p {
    margin: 0;
    line-height: 1.72;
    color: var(--store-muted);
    overflow-wrap: anywhere;
}

.guide-doc-chapters {
    display: grid;
    gap: 16px;
}

.guide-doc-chapter {
    padding: 18px;
    border: 1px solid var(--store-line);
    border-radius: 20px;
    background: var(--store-bg-soft);
}

.guide-doc-chapter-header {
    margin-bottom: 14px;
}

.guide-doc-chapter-header h3 {
    font-size: 1.1rem;
}

.guide-doc-parts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.guide-doc-part {
    padding: 14px 15px;
    border: 1px solid var(--store-line);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.9);
}

.guide-doc-part h4 {
    font-size: 1rem;
}

.guide-doc-part p + p {
    margin-top: 8px;
}

@media (max-width: 920px) {
    .guide-doc-layout {
        grid-template-columns: 1fr;
    }

    .guide-doc-nav {
        position: static;
        max-height: 260px;
    }
}

@media (max-width: 640px) {
    .guide-doc-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .guide-doc-search {
        width: 100%;
    }

    .guide-doc-parts {
        grid-template-columns: 1fr;
    }
}

/* What's New page: full-list rendering of the same hero-widget.json feed,
   one .editorial-card per item instead of the compact hero-widget's
   click-to-expand accordion — a dedicated page can just show everything. */
.whats-new-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.whats-new-articles-heading {
    margin: 18px 0 10px;
    font-size: 0.9rem;
    color: var(--store-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.whats-new-article-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.whats-new-article-card__cover {
    width: 120px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.whats-new-article-card__body {
    min-width: 0;
}

.whats-new-article-card__body h3 {
    margin: 0;
    font-size: 1.1rem;
}

.whats-new-article-card__byline {
    margin: 4px 0 8px;
    font-size: 0.78rem;
    color: var(--store-muted);
}

@media (max-width: 640px) {
    .whats-new-article-card {
        flex-direction: column;
    }
    .whats-new-article-card__cover {
        width: 100%;
        height: 160px;
    }
}

.editorial-grid--legal {
    grid-template-columns: minmax(0, 1fr);
}

.team-slider {
    position: relative;
    margin-top: 20px;
}

.team-slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.team-slider__track::-webkit-scrollbar {
    display: none;
}

.team-avatar {
    flex: 0 0 clamp(140px, 22vw, 170px);
    scroll-snap-align: start;
    text-align: center;
}

.team-avatar__circle {
    width: 96px;
    height: 96px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--store-bg-soft);
    background: linear-gradient(135deg, var(--store-accent), #db8258);
    object-fit: cover;
}

.team-avatar__name {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.team-avatar__role {
    margin: 2px 0 0;
    font-size: 0.82rem;
    color: var(--store-muted);
}

.article-page {
    max-width: 70ch;
    margin: 0 auto;
}

.article-page__cover {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 24px;
}

.article-page__title {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    line-height: 1.25;
}

.article-page__byline {
    margin: 0 0 24px;
    color: var(--store-muted);
    font-size: 0.85rem;
}

.article-page__body p {
    margin: 0 0 18px;
    line-height: 1.8;
    color: var(--store-ink);
}

.keep-touch-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.72fr);
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.keep-touch-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -28% 54%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(142, 179, 171, 0.18), transparent 62%),
        radial-gradient(circle at 35% 35%, rgba(240, 201, 168, 0.22), transparent 58%);
    pointer-events: none;
}

.keep-touch-hero__copy,
.keep-touch-hero__signals {
    position: relative;
    z-index: 1;
}

.keep-touch-hero__actions {
    margin-top: 28px;
}

.keep-touch-hero__signals {
    display: grid;
    gap: 14px;
    align-self: center;
}

.keep-touch-signal {
    padding: 18px 18px 19px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.94),
            rgba(247, 238, 228, 0.9)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        0 16px 30px rgba(77, 54, 31, 0.06);
}

.keep-touch-signal__label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(191, 90, 54, 0.1);
    color: var(--store-accent);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.keep-touch-signal strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    line-height: 1.25;
}

.keep-touch-signal p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.keep-touch-grid {
    align-items: stretch;
}

.keep-touch-card {
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        0 18px 34px rgba(77, 54, 31, 0.05);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.keep-touch-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(191, 90, 54, 0.72), rgba(142, 179, 171, 0.64));
    opacity: 0.72;
}

.keep-touch-card:hover,
.keep-touch-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(191, 90, 54, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 22px 38px rgba(77, 54, 31, 0.08);
}

.keep-touch-card h2 {
    max-width: 18ch;
}

.keep-touch-card--meeting-tech {
    grid-column: span 2;
}

.keep-touch-card--soft-cta {
    grid-column: 1 / -1;
    align-self: start;
}

/* At <=920px .editorial-grid collapses to a single explicit column (see the
   shared breakpoint list below). A "span 2" item still requests 2 column
   tracks even then, so the grid silently grows an extra implicit column to
   satisfy it — which starves every other item (including the "span to end"
   soft-cta card) down to a sliver. Resetting both to a single column here
   keeps the grid genuinely one-track instead of one-explicit-plus-one-implicit. */
@media (max-width: 920px) {
    .keep-touch-card--meeting-tech,
    .keep-touch-card--soft-cta {
        grid-column: 1 / -1;
    }
}

.keep-touch-form {
    margin-top: 18px;
}

.keep-touch-activity {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.keep-touch-activity-item {
    display: grid;
    gap: 10px;
    padding: 16px 16px 17px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.94);
}

.keep-touch-activity-item__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.keep-touch-activity-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keep-touch-activity-item__stamp {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.keep-touch-activity-item strong {
    display: block;
    font-size: 1rem;
}

.keep-touch-activity-item p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.keep-touch-trust-notes {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.keep-touch-contract {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.keep-touch-contract__item {
    padding: 16px 16px 17px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.78);
}

.keep-touch-contract__item span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.keep-touch-contract__item p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.62;
}

.keep-touch-trust-note {
    padding: 16px 16px 17px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.92);
}

.keep-touch-trust-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.keep-touch-trust-note p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.keep-touch-pathways {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.keep-touch-pathway {
    padding: 16px 16px 17px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.76);
}

.keep-touch-pathway__label {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.keep-touch-pathway strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.3;
}

.keep-touch-pathway p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.meeting-tech-preview {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.meeting-tech-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 16px 18px 18px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.14);
    background: rgba(255, 250, 244, 0.88);
}

.meeting-tech-controls__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 10px;
    grid-column: 1 / -1;
}

.meeting-tech-controls__actions .product-card__link {
    border: 0;
}

.meeting-tech-preview__stage {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 235, 225, 0.92));
}

.meeting-tech-preview__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.meeting-tech-preview__head strong {
    display: block;
    font-size: 1.02rem;
}

.meeting-tech-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meeting-tech-preview__frame {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(77, 72, 67, 0.08);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 52%),
        linear-gradient(145deg, rgba(58, 54, 50, 0.96), rgba(90, 82, 76, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.meeting-tech-preview__screen {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.72fr));
    gap: 12px;
    min-height: 220px;
}

.meeting-tech-preview__screen[hidden],
.meeting-tech-preview__dock[hidden] {
    display: none;
}

.meeting-tech-join-btn {
    margin-bottom: 12px;
}

.meeting-tech-live-embed {
    min-height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.meeting-tech-live-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    display: block;
}

.meeting-tech-preview__tile {
    position: relative;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(169, 137, 106, 0.18), rgba(39, 36, 33, 0.52)),
        linear-gradient(135deg, rgba(255, 222, 196, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 248, 240, 0.08);
    overflow: hidden;
}

.meeting-tech-preview__tile::after {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 30%;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(16, 14, 13, 0.34));
}

.meeting-tech-preview__tile span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 244, 234, 0.88);
}

.meeting-tech-preview__tile--host {
    background:
        radial-gradient(circle at top right, rgba(203, 150, 112, 0.22), transparent 40%),
        linear-gradient(180deg, rgba(191, 90, 54, 0.18), rgba(36, 33, 30, 0.55)),
        linear-gradient(135deg, rgba(255, 232, 213, 0.1), rgba(255, 255, 255, 0.02));
}

.meeting-tech-preview__dock {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.meeting-tech-preview__dock span {
    width: 40px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 241, 228, 0.18);
    border: 1px solid rgba(255, 241, 228, 0.08);
}

.meeting-tech-descriptor {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.meeting-tech-descriptor__card {
    padding: 16px 16px 17px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.92);
}

.meeting-tech-descriptor__card dt {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.meeting-tech-descriptor__card dd {
    margin: 8px 0 0;
    line-height: 1.6;
    color: var(--store-ink);
}

.meeting-tech-descriptor__card code {
    display: block;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(79, 68, 61, 0.06);
    color: #5b463a;
    font-size: 0.84rem;
    overflow-wrap: anywhere;
}

.meeting-session-package {
    display: grid;
    gap: 14px;
}

.meeting-session-package__card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(191, 90, 54, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 241, 232, 0.9));
}

.meeting-session-package__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.meeting-session-package__header strong {
    display: block;
    font-size: 1.06rem;
    line-height: 1.3;
}

.meeting-session-package__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meeting-session-package__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meeting-session-package__actions .product-card__link {
    min-height: 40px;
}

.meeting-tech-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.meeting-tech-option {
    display: grid;
    gap: 12px;
    padding: 18px 18px 19px;
    border-radius: 22px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 250, 244, 0.9);
}

.meeting-tech-option.is-active {
    border-color: rgba(191, 90, 54, 0.24);
    box-shadow:
        0 18px 36px rgba(191, 90, 54, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.meeting-tech-option__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.meeting-tech-option__top strong {
    font-size: 1rem;
}

.meeting-tech-option__list {
    margin: 0;
    padding-left: 18px;
    color: var(--store-muted);
    line-height: 1.6;
}

.meeting-tech-option__list li + li {
    margin-top: 6px;
}

.meeting-tech-option__runtime {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meeting-tech-option__runtime .product-card__link,
.meeting-tech-option__runtime .hero-action {
    min-height: 36px;
    padding: 9px 14px;
    font-size: 0.9rem;
}

.keep-touch-card__actions {
    margin-top: 20px;
}

.keep-touch-form-feedback {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(142, 179, 171, 0.24);
    background: rgba(231, 242, 238, 0.88);
    color: #2f5b54;
}

.keep-touch-form-feedback--pending {
    border-color: rgba(191, 90, 54, 0.22);
    background: rgba(255, 245, 235, 0.92);
    color: #8c5534;
}

.keep-touch-form-feedback--error {
    border-color: rgba(154, 53, 39, 0.22);
    background: rgba(252, 237, 232, 0.94);
    color: #8d3d30;
}

.keep-touch-submit-state {
    display: grid;
    margin-top: 12px;
}

.keep-touch-submit-state__card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.96),
            rgba(244, 238, 229, 0.9)
        );
}

.keep-touch-submit-state__card[data-tone="active"] {
    border-color: rgba(142, 179, 171, 0.24);
    background: rgba(232, 243, 239, 0.9);
}

.keep-touch-submit-state__card[data-tone="draft"] {
    border-color: rgba(191, 90, 54, 0.18);
    background: rgba(255, 245, 235, 0.92);
}

.keep-touch-submit-state__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.keep-touch-submit-state__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.keep-touch-submit-state__grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--store-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.keep-touch-submit-state__grid p {
    margin: 0;
    line-height: 1.58;
}

.keep-touch-card--feedback::before,
.keep-touch-card--closing::before {
    background: linear-gradient(180deg, rgba(191, 90, 54, 0.78), rgba(240, 201, 168, 0.78));
}

.keep-touch-card--meetings::before {
    background: linear-gradient(180deg, rgba(142, 179, 171, 0.86), rgba(191, 90, 54, 0.48));
}

.product-page-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2px;
}

.product-page-title {
    margin: 0;
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
    cursor: default;
}

/* This heading reuses formatCardTitle()'s markup for the gradient title
   styling, but it isn't a collapse toggle like the card version — it has
   no adjoining .product-card__summary to expand, so hide the chevron. */
.product-page-title .product-card__title-chevron {
    display: none;
}

.product-page-title .product-card__title-sub {
    font-size: 0.56em;
    letter-spacing: 0.015em;
    color: rgba(111, 98, 86, 0.82);
    font-weight: normal;
}

.product-page-summary {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.78;
    max-width: 60ch;
}

.product-page-commerce {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 14px;
    margin-top: 2px;
}

.product-page-price-block,
.product-page-release {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.78);
}

.product-page-price-block {
    display: grid;
    gap: 8px;
    align-content: start;
}

.product-page-price {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1;
}

.product-page-release strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
}

.product-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: -2px;
}

.product-page-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-page-meta-card,
.product-page-audio,
.product-page-features {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.78);
}

.product-page-meta-card {
    display: grid;
    align-content: start;
    min-height: 112px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.product-page-preview-callout {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.14);
    background:
        linear-gradient(135deg, rgba(250, 244, 235, 0.92), rgba(255, 250, 245, 0.82)),
        rgba(255, 255, 255, 0.76);
}

.product-page-preview-callout strong {
    font-size: 1.08rem;
}

.product-page-preview-callout p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.product-page-meta-card dt {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--store-muted);
}

.product-page-meta-card dd {
    margin: 8px 0 0;
    line-height: 1.6;
}

.checkout-page-shell {
    align-items: start;
}

.checkout-page-cover {
    display: grid;
    gap: 14px;
}

.checkout-page-cover > img {
    width: 100%;
    border-radius: 28px;
}

.checkout-note-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.95),
            rgba(247, 239, 230, 0.92)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        0 16px 30px rgba(77, 54, 31, 0.05);
}

.checkout-note-card strong {
    font-size: 1.02rem;
    line-height: 1.25;
}

.checkout-note-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.7;
}

.checkout-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.checkout-form {
    margin-top: 4px;
}

.checkout-price-card dd {
    font-size: 1.45rem;
    line-height: 1.15;
}

.checkout-flow-state {
    display: grid;
}

.checkout-flow-state__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.checkout-flow-state__item {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.72);
}

.checkout-flow-state__item span {
    display: block;
    margin-bottom: 6px;
    color: var(--store-muted);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-flow-state__item p {
    margin: 0;
    line-height: 1.58;
    word-break: normal;
    overflow-wrap: anywhere;
}

.ops-priority-card {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 252, 247, 0.92);
}

.ops-priority-card[data-tone="active"] {
    border-color: rgba(45, 126, 84, 0.16);
    background: rgba(236, 248, 241, 0.94);
}

.ops-priority-card[data-tone="draft"] {
    border-color: rgba(154, 53, 39, 0.16);
    background: rgba(252, 237, 232, 0.94);
}

.ops-priority-card__label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.ops-priority-card__value {
    font-size: 1.42rem;
    line-height: 1;
}

.ops-priority-card__detail {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.55;
}

.commerce-shell {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.commerce-detail-panel {
    position: sticky;
    top: 126px;
}

.commerce-event-log,
.commerce-detail-events {
    display: grid;
    gap: 12px;
}

.commerce-device-grid {
    margin-top: 14px;
}

.commerce-device-review-note {
    margin-top: 12px !important;
    font-size: 0.92rem;
    color: var(--store-muted);
}

.commerce-device-guidance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.commerce-device-guidance__card {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.7);
}

.commerce-device-guidance__card--approve {
    border-color: rgba(45, 126, 84, 0.16);
    background: linear-gradient(180deg, rgba(239, 250, 244, 0.9), rgba(232, 246, 238, 0.78));
}

.commerce-device-guidance__card--reject {
    border-color: rgba(121, 114, 108, 0.16);
    background: linear-gradient(180deg, rgba(247, 244, 241, 0.92), rgba(241, 237, 233, 0.8));
}

.commerce-device-guidance__label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.commerce-device-guidance__card p {
    margin: 0;
    line-height: 1.55;
    color: var(--store-ink);
}

.commerce-device-action--reject {
    border-color: rgba(121, 114, 108, 0.2);
    color: #544b45;
}

.commerce-detail-events strong {
    display: block;
    margin-bottom: 2px;
    font-size: 1rem;
}

.commerce-event-card {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 251, 246, 0.9);
}

.commerce-event-card--detail {
    background: rgba(255, 251, 246, 0.72);
}

.commerce-event-card__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.commerce-event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.commerce-event-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.commerce-event-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.55;
    word-break: break-word;
}

.commerce-event-card__stamp {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

@media (max-width: 900px) {
    .checkout-summary-grid,
    .checkout-flow-state__grid {
        grid-template-columns: 1fr;
    }

    .commerce-device-guidance {
        grid-template-columns: 1fr;
    }

    .commerce-shell {
        grid-template-columns: 1fr;
    }

    .commerce-detail-panel {
        position: static;
    }
}

#relatedProductsSection .section-heading {
    margin-bottom: 16px;
}

#relatedProductsSection .section-heading h2 {
    margin-top: 2px;
}

.product-page-features ul {
    margin: 12px 0 0;
    padding-left: 18px;
    line-height: 1.8;
}

.purchase-state {
    position: relative;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 250, 243, 0.82);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.purchase-state::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: rgba(191, 90, 54, 0.42);
}

.purchase-state strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.06rem;
    letter-spacing: 0.01em;
}

.purchase-state p {
    margin: 0;
    line-height: 1.75;
    color: var(--store-muted);
}

.purchase-state__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.purchase-state__action {
    min-width: 0;
}

.purchase-state--active {
    border-color: rgba(45, 126, 84, 0.2);
    background:
        linear-gradient(
            180deg,
            rgba(239, 250, 244, 0.96),
            rgba(230, 246, 236, 0.92)
        );
}

.purchase-state--active::before {
    background: linear-gradient(180deg, rgba(45, 126, 84, 0.82), rgba(85, 166, 123, 0.58));
}

.purchase-state--hidden {
    border-color: rgba(163, 104, 39, 0.2);
    background:
        linear-gradient(
            180deg,
            rgba(255, 248, 238, 0.97),
            rgba(252, 241, 226, 0.93)
        );
}

.purchase-state--hidden::before {
    background: linear-gradient(180deg, rgba(163, 104, 39, 0.82), rgba(201, 143, 76, 0.58));
}

.purchase-state--draft {
    border-color: rgba(87, 76, 125, 0.18);
    background:
        linear-gradient(
            180deg,
            rgba(248, 244, 255, 0.97),
            rgba(241, 236, 252, 0.93)
        );
}

.purchase-state--draft::before {
    background: linear-gradient(180deg, rgba(87, 76, 125, 0.82), rgba(131, 117, 180, 0.56));
}

.purchase-state--archived {
    border-color: rgba(74, 69, 65, 0.18);
    background:
        linear-gradient(
            180deg,
            rgba(247, 244, 241, 0.97),
            rgba(240, 236, 232, 0.93)
        );
}

.purchase-state--archived::before {
    background: linear-gradient(180deg, rgba(74, 69, 65, 0.78), rgba(121, 114, 108, 0.54));
}

.product-page-audio audio {
    width: 100%;
    margin-top: 12px;
}

.product-page-audio__lead {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.section-heading {
    display: grid;
    gap: 6px;
    margin-bottom: 20px;
}

.catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.catalog-shell,
.featured-shelf {
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: rgba(255, 249, 242, 0.72);
}

.catalog-overview,
.catalog-groups {
    display: grid;
    gap: 18px;
}

.catalog-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 20px;
}

.catalog-overview-card,
.catalog-group {
    border-radius: 22px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 247, 0.94),
            rgba(247, 238, 228, 0.92)
        );
}

.catalog-overview-card {
    padding: 18px;
}

.catalog-overview-card[data-tone="active"] {
    border-color: rgba(45, 126, 84, 0.18);
    background: rgba(236, 248, 240, 0.92);
}

.catalog-overview-card[data-tone="accent"] {
    border-color: rgba(191, 90, 54, 0.18);
}

.catalog-overview-card[data-tone="draft"] {
    border-color: rgba(87, 76, 125, 0.16);
    background: rgba(247, 243, 255, 0.92);
}

.catalog-overview-card__label,
.product-page-price-label,
.product-page-release__label {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.catalog-overview-card__value {
    display: block;
    margin-top: 12px;
    font-size: clamp(1.9rem, 2.2vw, 2.5rem);
    line-height: 1;
}

.catalog-overview-card__detail,
.catalog-group__heading p,
.product-card__stage,
.product-page-release p {
    margin: 10px 0 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.catalog-group {
    padding: 18px;
    /* Without this, the grid item defaults to min-width: auto, which
       respects the intrinsic (non-shrinking) width of the shelf's flex
       row inside it — the group would blow out past its own grid track
       instead of clipping the shelf to the available width. */
    min-width: 0;
}

.catalog-group__heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.catalog-group__heading h3 {
    margin: 0;
    font-size: 1.2rem;
}

.catalog-group__count {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(191, 90, 54, 0.12);
    color: var(--store-accent);
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.catalog-filter {
    display: grid;
    gap: 8px;
    position: relative;
}

.catalog-filter span {
    font-size: 0.9rem;
    color: var(--store-muted);
}

/* Only draw the custom chevron for filters that actually wrap a <select> —
   date/text inputs already carry their own native affordance (e.g. the
   browser's calendar icon on type="date"), and overlaying our chevron on
   top of that reads as two controls fighting for the same corner. */
.catalog-filter:has(select)::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 17px;
    width: 10px;
    height: 10px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    color: rgba(45, 41, 37, 0.74);
    transform: translateY(-2px) rotate(45deg);
    transform-origin: center;
    pointer-events: none;
    transition:
        transform 180ms ease,
        color 180ms ease,
        opacity 180ms ease;
}

.catalog-filter:has(select):focus-within::after {
    color: var(--store-accent);
    transform: translateY(2px) rotate(-135deg);
}

.catalog-filter select {
    appearance: none;
    min-width: 180px;
    min-height: 44px;
    padding: 0 46px 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(191, 90, 54, 0.16);
    background:
        linear-gradient(
            180deg,
            rgba(255, 253, 250, 0.98),
            rgba(250, 243, 235, 0.96)
        );
    color: var(--store-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 8px 18px rgba(77, 54, 31, 0.04);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.catalog-filter select:hover {
    border-color: rgba(191, 90, 54, 0.28);
    background:
        linear-gradient(
            180deg,
            rgba(255, 254, 251, 1),
            rgba(252, 245, 238, 0.98)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 10px 20px rgba(77, 54, 31, 0.06);
    transform: translateY(-1px);
}

.catalog-filter select:focus {
    outline: none;
    border-color: rgba(191, 90, 54, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 0 0 4px rgba(191, 90, 54, 0.08),
        0 10px 22px rgba(77, 54, 31, 0.07);
    background:
        linear-gradient(
            180deg,
            rgba(255, 254, 251, 1),
            rgba(252, 245, 238, 0.98)
        );
}

.catalog-filter--text::after {
    display: none;
}

.catalog-filter input {
    min-width: 180px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(191, 90, 54, 0.16);
    background:
        linear-gradient(
            180deg,
            rgba(255, 253, 250, 0.98),
            rgba(250, 243, 235, 0.96)
        );
    color: var(--store-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 8px 18px rgba(77, 54, 31, 0.04);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.catalog-filter input:hover {
    border-color: rgba(191, 90, 54, 0.28);
    background:
        linear-gradient(
            180deg,
            rgba(255, 254, 251, 1),
            rgba(252, 245, 238, 0.98)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 10px 20px rgba(77, 54, 31, 0.06);
    transform: translateY(-1px);
}

.catalog-filter input:focus {
    outline: none;
    border-color: rgba(191, 90, 54, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 0 0 4px rgba(191, 90, 54, 0.08),
        0 10px 22px rgba(77, 54, 31, 0.07);
    background:
        linear-gradient(
            180deg,
            rgba(255, 254, 251, 1),
            rgba(252, 245, 238, 0.98)
        );
}

.dashboard-toolbar__toggle {
    align-self: end;
    border-color: rgba(191, 90, 54, 0.16);
}

.dashboard-toolbar__toggle.is-active {
    border-color: rgba(45, 126, 84, 0.2);
    background:
        linear-gradient(
            180deg,
            rgba(240, 250, 245, 0.96),
            rgba(228, 244, 236, 0.9)
        );
    color: #2f7250;
    box-shadow: 0 12px 24px rgba(45, 126, 84, 0.1);
}

.dashboard-toolbar__toggle:disabled {
    opacity: 0.58;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.dashboard-toolbar__toggle.is-active:hover,
.dashboard-toolbar__toggle.is-active:focus-visible {
    border-color: rgba(45, 126, 84, 0.28);
    box-shadow:
        0 14px 28px rgba(45, 126, 84, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

/* Catalog groups (Public offers, Pipeline, and the flat filtered view) scroll
   horizontally instead of wrapping, so a group stays a fixed-height shelf no
   matter how many products it holds — the Featured section above keeps the
   original wrapping grid untouched. */
.product-shelf {
    position: relative;
    /* When a filter is active, this is appended directly as a grid item of
       #catalogGroups (no .catalog-group wrapper) — same min-width: auto
       blowout as above, so it needs the same reset here. */
    min-width: 0;
}

#catalogGroups .product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    gap: 18px;
    padding-bottom: 6px;
    margin-bottom: -6px;
    -webkit-overflow-scrolling: touch;
    /* The native scrollbar is replaced by .product-shelf__progress below. */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#catalogGroups .product-grid::-webkit-scrollbar {
    display: none;
}

/* Slim gradient stand-in for the native horizontal scrollbar: a track with a
   moving, proportionally-sized fill instead of the browser's default bar. */
.product-shelf__progress {
    position: relative;
    height: 3px;
    margin-top: 10px;
    border-radius: 3px;
    background: rgba(191, 90, 54, 0.1);
    overflow: hidden;
    opacity: 0;
    transition: opacity 200ms ease;
}

.product-shelf__progress.is-active {
    opacity: 1;
}

.product-shelf__progress-fill {
    position: absolute;
    top: 0;
    height: 100%;
    min-width: 24px;
    border-radius: 3px;
    /* Same hue sequence as .product-card__title-main's text gradient. */
    background: linear-gradient(
        90deg,
        #f2bb5c 0%,
        #e8935e 24%,
        #c14c82 50%,
        #8247a8 74%,
        #4a5ac4 100%
    );
    transition: left 120ms ease, width 120ms ease;
}

#catalogGroups .product-grid > .product-card {
    flex: 0 0 clamp(270px, 31vw, 336px);
    scroll-snap-align: start;
}

#catalogGroups .product-grid > .empty-state {
    flex: 1 1 auto;
}

.product-shelf__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(191, 90, 54, 0.2);
    background: rgba(255, 251, 246, 0.94);
    color: var(--store-ink);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(77, 54, 31, 0.14);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    transform: translateY(-50%) scale(0.92);
}

.product-shelf:hover .product-shelf__arrow.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.product-shelf__arrow:disabled {
    display: none;
}

.product-shelf__arrow--prev {
    left: -6px;
}

.product-shelf__arrow--next {
    right: -6px;
}

.product-shelf__arrow:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--store-accent);
}

.product-card {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(191, 90, 54, 0.12);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(247, 238, 228, 0.95));
    box-shadow: 0 18px 42px rgba(77, 54, 31, 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(77, 54, 31, 0.12);
    border-color: rgba(191, 90, 54, 0.2);
}

.product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(240, 201, 168, 0.38), rgba(142, 179, 171, 0.32));
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.001);
    transition:
        transform 260ms ease,
        filter 220ms ease;
}

.product-card:hover .product-card__image,
.product-card:focus-within .product-card__image {
    transform: scale(1.024);
    filter: saturate(1.02) contrast(1.01);
}

.product-card__status {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(45, 41, 37, 0.84);
    color: #fff9f4;
    font-size: 0.76rem;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.product-card:hover .product-card__status,
.product-card:focus-within .product-card__status {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(45, 41, 37, 0.16);
}

.product-card__status[data-tone="active"],
.dialog-badge--active {
    background: rgba(45, 126, 84, 0.92);
    color: #f7fff8;
}

.product-card__status[data-tone="hidden"],
.dialog-badge--hidden {
    background: rgba(163, 104, 39, 0.9);
    color: #fff8ef;
}

.product-card__status[data-tone="draft"],
.dialog-badge--draft {
    background: rgba(87, 76, 125, 0.9);
    color: #faf7ff;
}

.product-card__status[data-tone="archived"],
.dialog-badge--archived {
    background: rgba(74, 69, 65, 0.88);
    color: #fbf8f4;
}

.product-card__body {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.product-card__eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 0.8rem;
    color: var(--store-muted);
}

.product-card__module {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(45, 41, 37, 0.05);
}

.product-card__edition {
    margin-left: auto;
    text-align: right;
    line-height: 1.28;
}

.product-card[data-module="sparkling-dialogues"] {
    border-color: rgba(191, 90, 54, 0.18);
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 246, 0.97),
            rgba(248, 238, 228, 0.95)
        );
}

.product-card[data-module="sparkling-dialogues"] .product-card__media {
    background:
        linear-gradient(
            135deg,
            rgba(232, 156, 104, 0.3),
            rgba(116, 84, 57, 0.18)
        );
}

.product-card[data-module="sparkling-dialogues"] .product-card__module {
    background: rgba(191, 90, 54, 0.12);
    color: #8f4123;
}

.product-card[data-module="gleaming-verses"] {
    border-color: rgba(122, 107, 55, 0.2);
    background:
        linear-gradient(
            180deg,
            rgba(255, 252, 244, 0.98),
            rgba(246, 239, 220, 0.94)
        );
}

.product-card[data-module="gleaming-verses"] .product-card__media {
    background:
        linear-gradient(
            135deg,
            rgba(214, 187, 105, 0.28),
            rgba(128, 150, 150, 0.18)
        );
}

.product-card[data-module="gleaming-verses"] .product-card__module {
    background: rgba(183, 149, 51, 0.14);
    color: #7b6420;
}

.product-card[data-module="vivid-chapters"] {
    border-color: rgba(92, 121, 118, 0.22);
    background:
        linear-gradient(
            180deg,
            rgba(248, 252, 251, 0.98),
            rgba(234, 243, 241, 0.94)
        );
}

.product-card[data-module="vivid-chapters"] .product-card__media {
    background:
        linear-gradient(
            135deg,
            rgba(118, 151, 145, 0.28),
            rgba(207, 185, 140, 0.18)
        );
}

.product-card[data-module="vivid-chapters"] .product-card__module {
    background: rgba(96, 136, 129, 0.14);
    color: #436861;
}

.product-card[data-module="brilliant-aphorisms"] {
    border-color: rgba(110, 91, 130, 0.2);
    background:
        linear-gradient(
            180deg,
            rgba(251, 249, 255, 0.98),
            rgba(241, 236, 248, 0.94)
        );
}

.product-card[data-module="brilliant-aphorisms"] .product-card__media {
    background:
        linear-gradient(
            135deg,
            rgba(126, 108, 152, 0.26),
            rgba(198, 181, 218, 0.18)
        );
}

.product-card[data-module="brilliant-aphorisms"] .product-card__module {
    background: rgba(119, 94, 148, 0.14);
    color: #5f4678;
}

.product-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Same decorative motif as Content Studio's .cs-divider (a thin gradient
   hairline with a small rotated-square marker at its center), scaled down
   to fit the compact card body. Suppressed just above the edition-switch
   when that block is empty (single-edition products), so it never shows
   as an orphaned line with nothing to introduce. */
.product-card__divider {
    position: relative;
    height: 1px;
    margin: 12px 0;
    background: linear-gradient(90deg, transparent, rgba(191, 90, 54, 0.32) 50%, transparent);
}

.product-card__divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(191, 90, 54, 0.6);
    transform: translate(-50%, -50%) rotate(45deg);
}

.product-card__divider:has(+ .product-card__edition-switch:empty) {
    display: none;
}

.product-card__edition-switch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-top: 2px;
}

.product-card__edition-switch:empty {
    display: none;
}

/* De-emphasized on purpose: a plain inline chain of edition names rather
   than a row of buttons, so it reads as context, not another CTA. */
.product-card__edition-pill {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-left: 10px;
    border: none;
    border-radius: 0;
    background: none;
    color: var(--store-muted);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 140ms ease;
}

.product-card__edition-pill:first-child {
    margin-left: 0;
}

.product-card__edition-pill:not(:first-child)::before {
    content: "\00b7";
    margin-right: 10px;
    color: rgba(191, 90, 54, 0.4);
}

.product-card__edition-pill:hover {
    color: var(--store-ink);
}

.product-card__edition-pill.is-active {
    color: #3a6085;
    font-weight: 700;
}

.product-card__eyebrow .catalog-badge {
    text-transform: none;
    letter-spacing: normal;
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(191, 90, 54, 0.12);
    color: var(--store-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.catalog-badge--soft {
    background: rgba(45, 41, 37, 0.08);
    color: var(--store-ink);
}

.catalog-badge--current {
    background: rgba(45, 126, 84, 0.14);
    color: #2f7250;
}

.catalog-badge--age {
    background: rgba(58, 96, 133, 0.14);
    color: #3a6085;
}

.catalog-badge--priority {
    background: rgba(45, 41, 37, 0.08);
    color: var(--store-ink);
}

.catalog-badge--priority-high-intent {
    background: rgba(191, 90, 54, 0.16);
    color: #9a502e;
}

.catalog-badge--priority-warm {
    background: rgba(163, 104, 39, 0.14);
    color: #8c5d18;
}

.catalog-badge--priority-needs-follow-up {
    background: rgba(87, 76, 125, 0.14);
    color: #604d89;
}

.catalog-badge--priority-low-urgency {
    background: rgba(74, 69, 65, 0.1);
    color: #5b554f;
}

.catalog-badge--ops {
    min-width: 94px;
    justify-content: center;
}

.catalog-badge--ops-new {
    background: rgba(191, 90, 54, 0.14);
    color: #9a502e;
}

.catalog-badge--ops-reviewed {
    background: rgba(128, 110, 54, 0.14);
    color: #7b6522;
}

.catalog-badge--ops-contacted {
    background: rgba(45, 126, 84, 0.14);
    color: #2f7250;
}

.catalog-badge--ops-archived {
    background: rgba(74, 69, 65, 0.12);
    color: #5b554f;
}

.catalog-badge--source {
    background: rgba(45, 41, 37, 0.08);
    color: var(--store-ink);
}

.catalog-badge--source-storefront-request-access {
    background: rgba(191, 90, 54, 0.12);
    color: #9a502e;
}

.catalog-badge--source-keep-in-touch-feedback {
    background: rgba(142, 179, 171, 0.18);
    color: #2f5b54;
}

.catalog-badge--source-keep-in-touch-meeting-request {
    background: rgba(87, 76, 125, 0.14);
    color: #604d89;
}

.catalog-badge--follow-up {
    justify-content: center;
}

.catalog-badge--follow-up-overdue {
    background: rgba(154, 53, 39, 0.14);
    color: #8e3427;
}

.catalog-badge--follow-up-due-soon {
    background: rgba(163, 104, 39, 0.14);
    color: #8c5d18;
}

.catalog-badge--follow-up-scheduled {
    background: rgba(45, 126, 84, 0.12);
    color: #2f7250;
}

.catalog-badge--follow-up-unscheduled {
    background: rgba(74, 69, 65, 0.1);
    color: #5b554f;
}

.product-card__title {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.2;
    letter-spacing: -0.012em;
    cursor: pointer;
    user-select: none;
}

.product-card__title:focus-visible {
    outline: 2px solid rgba(130, 71, 168, 0.45);
    outline-offset: 3px;
    border-radius: 4px;
}

.product-card__title-main {
    /* Same gradient as .hero-copy h1, mirrored horizontally: the noun half of
       the title (the module's actual name) lands on the deeper indigo end,
       the adjective half lands on the paler gold end. */
    background: linear-gradient(
        100deg,
        #f2bb5c 0%,
        #e8935e 24%,
        #c14c82 50%,
        #8247a8 74%,
        #4a5ac4 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.product-card__title-sub {
    font-size: 0.82em;
    letter-spacing: 0.01em;
    color: rgba(111, 98, 86, 0.82);
    font-weight: normal;
}

.product-card__title-chevron {
    display: inline-block;
    margin: 0 1px;
    color: rgba(111, 98, 86, 0.55);
    vertical-align: middle;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.product-card.is-summary-expanded .product-card__title-chevron {
    transform: rotate(0deg);
}

/* Collapsed by default; expands to full height on demand via the title's
   click/keyboard toggle. grid-template-rows (rather than max-height) lets
   the transition target the content's real height with no guesswork. */
.product-card__summary {
    margin: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.product-card.is-summary-expanded .product-card__summary {
    grid-template-rows: 1fr;
}

.product-card__summary-inner {
    overflow: hidden;
    color: rgba(111, 98, 86, 0.92);
    line-height: 1.7;
    max-width: 44ch;
}

.product-card__stage {
    margin: 0;
    font-size: 0.92rem;
}

.product-card__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 10px;
    row-gap: 2px;
}

.product-card__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.product-card__facts div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.product-card__facts dt {
    order: 2;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-align: center;
}

.product-card__facts dd {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0;
    padding: 4px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(247, 238, 228, 0.9));
    border: 1px solid rgba(191, 90, 54, 0.18);
    box-shadow: 0 6px 16px rgba(77, 54, 31, 0.06);
    font-size: 0.8rem;
    line-height: 1.15;
    text-align: center;
}

.product-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(188px, 208px);
    align-items: end;
    gap: 16px;
    margin-top: auto;
    padding-top: 6px;
}

.product-card__price {
    display: grid;
    gap: 5px;
    align-content: end;
}

.product-card__price-main,
.product-page-price {
    font-size: 1.2rem;
    line-height: 1;
}

.product-card__price-main {
    font-weight: normal;
}

.product-card__price-compare,
.product-page-price-compare {
    color: var(--store-muted);
    text-decoration: line-through;
    font-size: 0.92rem;
}

#relatedProductsSection .product-card[data-current="true"] {
    border-color: rgba(45, 126, 84, 0.22);
    box-shadow:
        0 22px 44px rgba(77, 54, 31, 0.08),
        0 0 0 1px rgba(45, 126, 84, 0.08);
}

#relatedProductsSection .product-card[data-current="true"] .product-card__body {
    background:
        linear-gradient(
            180deg,
            rgba(240, 250, 245, 0.7),
            rgba(255, 252, 247, 0)
        );
}

#relatedProductsSection .product-card .product-card__link[aria-current="page"] {
    cursor: default;
    pointer-events: none;
}

.product-card__actions {
    display: grid;
    gap: 10px;
    justify-items: stretch;
    min-width: 0;
    width: 100%;
    align-content: end;
}

.product-card__actions .product-card__link {
    font-size: 0.92rem;
    width: 100%;
    white-space: nowrap;
}

.product-card:hover .catalog-badge,
.product-card:focus-within .catalog-badge {
    transform: translateY(-1px);
}

.dialog-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(191, 90, 54, 0.1);
    color: var(--store-ink);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.empty-state {
    padding: 24px;
    border-radius: 18px;
    border: 1px dashed rgba(191, 90, 54, 0.22);
    color: var(--store-muted);
    background: rgba(255, 251, 246, 0.68);
}

@keyframes hero-totem-flip {
    0%,
    18%,
    100% {
        transform: rotateY(0deg) rotateZ(0deg) translateY(0) scale(1);
        filter: drop-shadow(0 20px 36px rgba(82, 58, 37, 0.14));
    }

    26% {
        transform: rotateY(14deg) rotateZ(1deg) translateY(-2px) scale(1.015);
        filter: drop-shadow(0 22px 38px rgba(82, 58, 37, 0.18));
    }

    34% {
        transform: rotateY(-11deg) rotateZ(-1deg) translateY(0) scale(1.005);
        filter: drop-shadow(0 20px 36px rgba(82, 58, 37, 0.16));
    }

    42% {
        transform: rotateY(7deg) rotateZ(0.4deg) translateY(-1px) scale(1.01);
        filter: drop-shadow(0 21px 37px rgba(82, 58, 37, 0.17));
    }

    52% {
        transform: rotateY(0deg) rotateZ(0deg) translateY(0) scale(1);
        filter: drop-shadow(0 20px 36px rgba(82, 58, 37, 0.14));
    }

    76% {
        transform: rotateY(3deg) rotateZ(0.3deg) translateY(-1px) scale(1.006);
        filter: drop-shadow(0 21px 36px rgba(82, 58, 37, 0.15));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-totem img {
        animation: none;
    }
}

@media (max-width: 920px) {
    .catalog-toolbar,
    .product-card__footer,
    .catalog-group__heading {
        grid-template-columns: none;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

    /* Once .hero-panel collapses to a single column, the widget has a
       full-width slot below the hero copy instead of a narrow side column. */
    .hero-widget {
        max-width: none;
        justify-self: stretch;
    }

    /* Same reasoning as .hero-stats above: these are circular value frames,
       so keep them in a row instead of letting the shared 1fr collapse below
       stack them into a tall single column. */
    .product-card__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .keep-touch-hero {
        grid-template-columns: 1fr;
    }

    .keep-touch-hero__signals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-self: stretch;
    }

    .catalog-overview,
    .ops-status-lane,
    .ops-priority-lane,
    .ops-report-presets__list,
    .requests-follow-up-queues__grid,
    .requests-meeting-queue__summary,
    .requests-meeting-queue__list,
    .ops-report-grid,
    .ops-report-metrics,
    .ops-team-capacity__grid,
    .ops-team-balance,
    .ops-team-trend__grid,
    .ops-cohort-grid,
    .ops-handoff-templates__grid,
    .ops-assignee-reco__alternatives,
    .ops-action-templates__grid,
    .ops-insight-grid,
    .ops-analytics-grid,
    .ops-detail-strip,
    .product-page-commerce,
    .product-page-meta,
    .product-page-shell,
    .dashboard-handoff__grid,
    .ops-inbox-shell,
    .ops-editor__grid,
    .ops-operator-composer__packages,
    .ops-operator-composer__pickers,
    .requests-batch-editor__toggles,
    .brand-intro-grid,
    .brand-panels-grid,
    .editorial-grid,
    .request-card,
    .request-card__trust,
    .request-card__activity,
    .meeting-tech-controls,
    .meeting-tech-descriptor,
    .meeting-tech-options,
    .keep-touch-contract,
    .keep-touch-submit-state__grid,
    .request-card__facts,
    .request-form__grid {
        grid-template-columns: 1fr;
    }

    .request-form__actions {
        justify-items: stretch;
    }

    .ops-status-lane {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ops-priority-lane {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ops-report-presets__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ops-report-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .brand-mark__logo {
        height: 40px;
    }

    .hero-totem {
        display: none;
    }

    .hero-heading-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .keep-touch-hero {
        gap: 18px;
    }

    .keep-touch-hero::after {
        display: none;
    }

    .keep-touch-hero__signals {
        grid-template-columns: 1fr;
    }

    .keep-touch-hero__actions {
        gap: 10px;
    }

    .meeting-tech-preview__screen {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .meeting-tech-preview__tile {
        min-height: 120px;
    }

    .storefront-shell {
        width: min(100vw - 18px, 1240px);
        padding-top: 12px;
    }

    .storefront-header,
    .hero-panel,
    .section-block {
        padding: 20px;
        border-radius: 22px;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .product-card__edition {
        max-width: 9ch;
    }

    .hero-stat__value {
        width: 60px;
        height: 60px;
        font-size: 1.15rem;
    }

    .hero-stat__label {
        font-size: 0.62rem;
        max-width: 68px;
    }

    .ops-status-lane {
        grid-template-columns: 1fr;
    }

    .ops-priority-lane {
        grid-template-columns: 1fr;
    }

    .ops-report-presets__list {
        grid-template-columns: 1fr;
    }

    .ops-report-metrics {
        grid-template-columns: 1fr;
    }

    .ops-report-table__row {
        grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
        gap: 8px;
        font-size: 0.9rem;
    }

    .ops-report-list__item {
        flex-direction: column;
    }
}

@media print {
    :root {
        color-scheme: light;
    }

    body {
        background: #ffffff;
    }

    .storefront-shell,
    .storefront-main,
    .section-block.dashboard-shell {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .storefront-header,
    .catalog-toolbar,
    .dashboard-actions,
    .ops-view-toggle,
    .ops-saved-views,
    .purchase-state,
    .ops-status-lane,
    .ops-priority-lane,
    .ops-inbox-shell {
        display: none !important;
    }

    .section-heading,
    .catalog-overview,
    .ops-report-panel,
    .ops-team-capacity,
    .ops-report-grid,
    .ops-report-metrics,
    .ops-report-card,
    .catalog-overview-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

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

    .section-heading p,
    .section-heading h2,
    .section-heading .section-lead {
        color: #1f1a17;
    }

    .catalog-overview {
        margin-bottom: 18px;
    }

    .catalog-overview,
    .ops-report-metrics,
    .ops-report-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-overview-card,
    .ops-report-card,
    .ops-report-list__item,
    .ops-report-table__row {
        border-color: rgba(0, 0, 0, 0.12);
        background: #ffffff;
        box-shadow: none;
    }

    .ops-report-card__meta span,
    .catalog-badge {
        border-color: rgba(0, 0, 0, 0.14);
        background: #ffffff;
        color: #2a241f;
    }

    .ops-report-table__row--head {
        background: #f2ede8;
    }

    a[href]::after {
        content: none;
    }
}
