:root {
    /* ── Color (single source of truth for the whole site) ── */
    --cinder-site-bg: #090c10;
    --cinder-site-bg-elevated: #11151b;
    --cinder-site-surface: rgba(17, 22, 28, 0.9);
    --cinder-site-surface-strong: rgba(23, 29, 37, 0.96);
    --cinder-site-elevated: rgba(29, 36, 45, 0.98);
    --cinder-site-border: rgba(255, 255, 255, 0.08);
    --cinder-site-border-strong: rgba(255, 255, 255, 0.18);
    /* Text — neutral cool white-grey to match the greyish-white logo. */
    --cinder-site-copy: rgba(237, 241, 246, 0.95);
    --cinder-site-copy-soft: rgba(237, 241, 246, 0.74);
    --cinder-site-copy-muted: rgba(237, 241, 246, 0.56);
    /* Named accent is cool BLUE (#4f8cff base -> #2f6fe0 dark), WHITE ink —
       used for buttons/CTAs/active states. */
    --cinder-site-accent: #4f8cff;
    --cinder-site-accent-soft: #8fb6ff;
    --cinder-site-accent-strong: #7aa7ff;
    --cinder-site-accent-dark: #2f6fe0;
    --cinder-site-accent-ink: #ffffff;
    /* Chrome accent (rgb) — COOL SILVER: drives resting borders, hover bg
       and focus rings. The unified ambient GLOW uses --cinder-site-glow-rgb
       (blue) below — never merge the two. Ember is retired. */
    --cinder-site-accent-rgb: 188, 199, 214;
    /* Focal / ambient GLOW (rgb) — cool blue, the single site-wide haze. */
    --cinder-site-glow-rgb: 79, 140, 255;
    --cinder-site-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    --cinder-site-shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.40);

    /* ── Radii ── */
    --cinder-site-radius: 10px;
    --cinder-site-radius-lg: 16px;
    --cinder-site-radius-pill: 999px;

    /* ── Spacing scale ── */
    --cs-space-1: 4px;
    --cs-space-2: 8px;
    --cs-space-3: 12px;
    --cs-space-4: 16px;
    --cs-space-5: 24px;
    --cs-space-6: 32px;
    --cs-space-7: 48px;
    --cs-space-8: 64px;

    /* ── Type scale ── */
    --cs-fs-xs: 12px;
    --cs-fs-sm: 14px;
    --cs-fs-base: 16px;
    --cs-fs-lg: 20px;
    --cs-fs-xl: 26px;
    --cs-fs-2xl: 34px;
    --cs-fs-3xl: 52px;

    /* ── Motion ── */
    --cs-transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);

    color-scheme: dark;
}

html {
    min-height: 100%;
    background: #090c10;
}

body.cinder-site-shell.primary-bg-color {
    --cinder-site-bg: #0a0d11;
    --cinder-site-surface: rgba(17, 22, 28, 0.9);
    --cinder-site-surface-strong: rgba(23, 29, 37, 0.96);
    --cinder-site-elevated: rgba(29, 36, 45, 0.98);
    --cinder-site-border: rgba(255, 255, 255, 0.08);
    --cinder-site-border-strong: rgba(255, 255, 255, 0.18);
    --cinder-site-copy: rgba(237, 241, 246, 0.95);
    --cinder-site-copy-soft: rgba(237, 241, 246, 0.74);
    --cinder-site-copy-muted: rgba(237, 241, 246, 0.56);
    --cinder-site-accent: #4f8cff;
    --cinder-site-accent-strong: #7aa7ff;
    --cinder-site-accent-rgb: 188, 199, 214;
    --cinder-site-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    color-scheme: dark;
    font-family: "Hanken Grotesk", "Open Sans", sans-serif !important;
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    background: #090c10 !important;
    color: var(--cinder-site-copy) !important;
}

body.cinder-site-shell.primary-bg-color::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(1100px 560px at 50% -8%, rgba(var(--cinder-site-glow-rgb), 0.07), transparent 62%),
        linear-gradient(180deg, #090c10 0%, #0f141a 100%);
}

body.cinder-site-shell.primary-bg-color #main-body,
body.cinder-site-shell.primary-bg-color .main-content,
body.cinder-site-shell.primary-bg-color .main-content > .container,
body.cinder-site-shell.primary-bg-color .main-content > .container-fluid {
    background: transparent !important;
}

body.cinder-site-shell.primary-bg-color h1,
body.cinder-site-shell.primary-bg-color h2,
body.cinder-site-shell.primary-bg-color h3,
body.cinder-site-shell.primary-bg-color h4,
body.cinder-site-shell.primary-bg-color h5,
body.cinder-site-shell.primary-bg-color h6,
body.cinder-site-shell.primary-bg-color .page-header,
body.cinder-site-shell.primary-bg-color .section-title,
body.cinder-site-shell.primary-bg-color .card-title,
body.cinder-site-shell.primary-bg-color .panel-title {
    font-family: "Jost", "Hanken Grotesk", sans-serif !important;
}

body.cinder-site-shell.primary-bg-color a {
    color: rgba(255, 255, 255, 0.84);
}

body.cinder-site-shell.primary-bg-color a:hover,
body.cinder-site-shell.primary-bg-color a:focus {
    color: #ffffff;
}

body.cinder-site-shell.primary-bg-color .card,
body.cinder-site-shell.primary-bg-color .panel,
body.cinder-site-shell.primary-bg-color .well,
body.cinder-site-shell.primary-bg-color .tile,
body.cinder-site-shell.primary-bg-color .modal-content,
body.cinder-site-shell.primary-bg-color .dropdown-menu,
body.cinder-site-shell.primary-bg-color .list-group {
    background: var(--cinder-site-surface) !important;
    border: 1px solid var(--cinder-site-border) !important;
    border-radius: 18px !important;
    box-shadow: var(--cinder-site-shadow) !important;
}

body.cinder-site-shell.primary-bg-color .card-header,
body.cinder-site-shell.primary-bg-color .panel-heading,
body.cinder-site-shell.primary-bg-color .modal-header,
body.cinder-site-shell.primary-bg-color .panel-footer,
body.cinder-site-shell.primary-bg-color .modal-footer {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: var(--cinder-site-border) !important;
    color: var(--cinder-site-copy) !important;
}

body.cinder-site-shell.primary-bg-color .form-control,
body.cinder-site-shell.primary-bg-color .custom-select,
body.cinder-site-shell.primary-bg-color select,
body.cinder-site-shell.primary-bg-color textarea,
body.cinder-site-shell.primary-bg-color input[type="text"],
body.cinder-site-shell.primary-bg-color input[type="password"],
body.cinder-site-shell.primary-bg-color input[type="email"],
body.cinder-site-shell.primary-bg-color input[type="number"],
body.cinder-site-shell.primary-bg-color input[type="search"] {
    background: rgba(9, 12, 16, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--cinder-site-copy) !important;
    border-radius: 12px !important;
}

body.cinder-site-shell.primary-bg-color .form-control:focus,
body.cinder-site-shell.primary-bg-color .custom-select:focus,
body.cinder-site-shell.primary-bg-color select:focus,
body.cinder-site-shell.primary-bg-color textarea:focus,
body.cinder-site-shell.primary-bg-color input:focus {
    border-color: rgba(var(--cinder-site-accent-rgb), 0.48) !important;
    box-shadow: 0 0 0 4px rgba(var(--cinder-site-accent-rgb), 0.12) !important;
}

body.cinder-site-shell.primary-bg-color .btn-primary,
body.cinder-site-shell.primary-bg-color .btn-info,
body.cinder-site-shell.primary-bg-color .btn-success {
    background: linear-gradient(135deg, #4f8cff 0%, #2f6fe0 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(79, 140, 255, 0.18) !important;
}

body.cinder-site-shell.primary-bg-color .btn-primary:hover,
body.cinder-site-shell.primary-bg-color .btn-info:hover,
body.cinder-site-shell.primary-bg-color .btn-success:hover {
    background: linear-gradient(135deg, #5f98ff 0%, #2f6fe0 100%) !important;
    transform: translateY(-1px);
}

body.cinder-site-shell.primary-bg-color .btn-default,
body.cinder-site-shell.primary-bg-color .btn-secondary {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--cinder-site-border) !important;
    color: var(--cinder-site-copy) !important;
}

body.cinder-site-shell.primary-bg-color .btn-default:hover,
body.cinder-site-shell.primary-bg-color .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--cinder-site-border-strong) !important;
}

body.cinder-site-shell.primary-bg-color .text-muted,
body.cinder-site-shell.primary-bg-color .small,
body.cinder-site-shell.primary-bg-color .help-block,
body.cinder-site-shell.primary-bg-color small {
    color: var(--cinder-site-copy-muted) !important;
}

body.cinder-site-shell.primary-bg-color .label.status,
body.cinder-site-shell.primary-bg-color .status {
    border-radius: 999px !important;
    padding: 6px 10px !important;
    font-weight: 700;
}

body.cinder-site-shell.primary-bg-color #header .cinder-topbar {
    background: rgba(9, 12, 16, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
}

body.cinder-site-shell.primary-bg-color #header .cinder-topbar-inner {
    min-height: 46px;
}

body.cinder-site-shell.primary-bg-color #header .cinder-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.cinder-site-shell.primary-bg-color #header .cinder-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(var(--cinder-site-accent-rgb), 0.18);
    border-radius: 999px;
    background: rgba(var(--cinder-site-accent-rgb), 0.08);
    color: var(--cinder-site-copy-soft) !important;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.cinder-site-shell.primary-bg-color #header .cinder-topbar-link:hover,
body.cinder-site-shell.primary-bg-color #header .cinder-topbar-link:focus {
    background: rgba(var(--cinder-site-accent-rgb), 0.14);
    border-color: rgba(var(--cinder-site-accent-rgb), 0.28);
    color: var(--cinder-site-copy) !important;
    transform: translateY(-1px);
}

body.cinder-site-shell.primary-bg-color #header .cinder-main-navbar {
    background: rgba(10, 13, 17, 0.82) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

body.cinder-site-shell.primary-bg-color #header.scrolled .cinder-main-navbar {
    background: rgba(10, 13, 17, 0.94) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

body.cinder-site-shell.primary-bg-color #header .cinder-nav-primary > li > a,
body.cinder-site-shell.primary-bg-color #header .cinder-nav-secondary > li > a,
body.cinder-site-shell.primary-bg-color #header .toolbar .nav-link,
body.cinder-site-shell.primary-bg-color #header .cinder-user-btn,
body.cinder-site-shell.primary-bg-color #header .cinder-action-btn {
    color: var(--cinder-site-copy-soft) !important;
}

body.cinder-site-shell.primary-bg-color #header .cinder-nav-primary > li > a:hover,
body.cinder-site-shell.primary-bg-color #header .cinder-nav-secondary > li > a:hover,
body.cinder-site-shell.primary-bg-color #header .toolbar .nav-link:hover,
body.cinder-site-shell.primary-bg-color #header .cinder-user-btn:hover,
body.cinder-site-shell.primary-bg-color #header .cinder-action-btn:hover {
    color: var(--cinder-site-copy) !important;
}

body.cinder-site-shell.primary-bg-color #header .cinder-mobile-chip,
body.cinder-site-shell.primary-bg-color #header .cinder-cart-btn {
    border-color: var(--cinder-site-border-strong) !important;
}

body.cinder-site-shell.primary-bg-color #header .cinder-nav-primary {
    gap: 2px;
}

body.cinder-site-shell.primary-bg-color .premium-dashboard {
    font-family: "Hanken Grotesk", "Open Sans", sans-serif;
}

body.cinder-site-shell.primary-bg-color .premium-dashboard .glow-bg {
    opacity: 0.16 !important;
}

body.cinder-site-shell.primary-bg-color .premium-dashboard .bento-card {
    border-radius: 20px !important;
    border-color: var(--cinder-site-border) !important;
    background: var(--cinder-site-surface-strong) !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2) !important;
}

body.cinder-site-shell.primary-bg-color .premium-dashboard .pr-hero {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(255, 255, 255, 0.02)) !important;
}

body.cinder-site-shell.primary-bg-color .premium-dashboard .btn-primary {
    background: linear-gradient(135deg, #4f8cff 0%, #2f6fe0 100%) !important;
    box-shadow: 0 10px 24px rgba(79, 140, 255, 0.16) !important;
}

body.cinder-site-shell.primary-bg-color .premium-dashboard .btn-secondary {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--cinder-site-border) !important;
    box-shadow: none !important;
}

body.cinder-site-shell.primary-bg-color #cinder-login-shell {
    --login-accent: #4f8cff;
    --login-accent-strong: #2f6fe0;
    --login-accent-glow: rgba(79, 140, 255, 0.24);
    --login-panel: rgba(17, 22, 28, 0.94);
    --login-panel-border: rgba(255, 255, 255, 0.08);
    --login-text: rgba(237, 241, 246, 0.96);
    --login-text-muted: rgba(237, 241, 246, 0.72);
    --login-text-subtle: rgba(237, 241, 246, 0.54);
}

body.cinder-site-shell.primary-bg-color #cinder-login-shell .cinder-login-card {
    box-shadow: var(--cinder-site-shadow);
}

body.cinder-site-shell.primary-bg-color #cinder-login-shell .login-support-link-primary {
    background: rgba(var(--cinder-site-accent-rgb), 0.1);
    border-color: rgba(var(--cinder-site-accent-rgb), 0.18);
    color: var(--cinder-site-copy) !important;
}

body.cinder-site-shell.primary-bg-color .cinder-homepage {
    padding: 10px 0 24px;
}

body.cinder-site-shell.primary-bg-color .cinder-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 22px;
    align-items: stretch;
    padding: 30px;
    border-radius: 26px;
    border: 1px solid var(--cinder-site-border);
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(255, 255, 255, 0.02));
    box-shadow: var(--cinder-site-shadow);
}

body.cinder-site-shell.primary-bg-color .cinder-home-kicker,
body.cinder-site-shell.primary-bg-color .cinder-home-section-kicker,
body.cinder-site-shell.primary-bg-color .cinder-home-aside-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.cinder-site-shell.primary-bg-color .cinder-home-copy h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.5rem, 4.8vw, 4.35rem);
    line-height: 0.98;
    letter-spacing: 0;
    color: var(--cinder-site-copy);
}

body.cinder-site-shell.primary-bg-color .cinder-home-lead {
    max-width: 44ch;
    margin: 18px 0 0;
    color: var(--cinder-site-copy-soft);
    font-size: 16px;
    line-height: 1.7;
}

body.cinder-site-shell.primary-bg-color .cinder-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

body.cinder-site-shell.primary-bg-color .cinder-home-actions .btn {
    min-width: 150px;
}

body.cinder-site-shell.primary-bg-color .cinder-home-rail {
    display: grid;
    gap: 14px;
    align-content: start;
}

body.cinder-site-shell.primary-bg-color .cinder-home-aside,
body.cinder-site-shell.primary-bg-color .cinder-home-section {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--cinder-site-border);
    background: var(--cinder-site-surface);
}

body.cinder-site-shell.primary-bg-color .cinder-home-aside strong,
body.cinder-site-shell.primary-bg-color .cinder-home-section h2 {
    display: block;
    color: var(--cinder-site-copy);
    line-height: 1.2;
}

body.cinder-site-shell.primary-bg-color .cinder-home-aside p,
body.cinder-site-shell.primary-bg-color .cinder-home-section p {
    margin: 10px 0 0;
    color: var(--cinder-site-copy-muted);
    line-height: 1.6;
}

body.cinder-site-shell.primary-bg-color .cinder-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

body.cinder-site-shell.primary-bg-color .cinder-home-links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

body.cinder-site-shell.primary-bg-color .cinder-home-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: var(--cinder-site-copy-soft);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.cinder-site-shell.primary-bg-color .cinder-home-links a::after {
    content: "->";
    color: rgba(255, 255, 255, 0.32);
    font-size: 13px;
    letter-spacing: 0.08em;
}

body.cinder-site-shell.primary-bg-color .cinder-home-links a:hover {
    background: rgba(var(--cinder-site-accent-rgb), 0.08);
    border-color: rgba(var(--cinder-site-accent-rgb), 0.18);
    color: var(--cinder-site-copy);
    transform: translateY(-1px);
}

body.cinder-site-shell.primary-bg-color #footer.footer {
    background: #0b0e12 !important;
}

body.cinder-site-shell.primary-bg-color #footer .footer-link {
    color: var(--cinder-site-copy-muted);
}

body.cinder-site-shell.primary-bg-color #footer .footer-link:hover,
body.cinder-site-shell.primary-bg-color #footer .footer-link:focus {
    color: var(--cinder-site-copy);
}

@media (max-width: 991px) {
    body.cinder-site-shell.primary-bg-color .cinder-home-hero,
    body.cinder-site-shell.primary-bg-color .cinder-home-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.cinder-site-shell.primary-bg-color .cinder-home-hero {
        padding: 22px 18px;
        border-radius: 22px;
    }

    body.cinder-site-shell.primary-bg-color .cinder-home-copy h1 {
        max-width: none;
        font-size: 2.55rem;
    }

    body.cinder-site-shell.primary-bg-color .cinder-home-actions {
        flex-direction: column;
    }

    body.cinder-site-shell.primary-bg-color .cinder-home-actions .btn {
        width: 100%;
    }
}

body.cinder-site-shell.primary-bg-color .cinder-table-shell {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.cinder-site-shell.primary-bg-color .cinder-table-shell table {
    min-width: 640px;
}

body.cinder-site-shell.primary-bg-color .contact-section .cinder-form-layout .form-group.row {
    margin-left: 0;
    margin-right: 0;
}

body.cinder-site-shell.primary-bg-color .contact-section .cinder-form-actions {
    margin-top: 24px;
}

body.cinder-site-shell.primary-bg-color .kb-search .form-control {
    min-height: 52px;
}

body.cinder-site-shell.primary-bg-color .kb-search .input-group-append .btn {
    min-width: 140px;
}

body.cinder-site-shell.primary-bg-color .kb-article-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

body.cinder-site-shell.primary-bg-color .kb-feedback-actions > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.cinder-site-shell.primary-bg-color .support-ticket-shell .cinder-choice-item {
    min-height: 84px;
}

body.cinder-site-shell.primary-bg-color .support-ticket-shell .cinder-choice-body,
body.cinder-site-shell.primary-bg-color .support-ticket-shell .cinder-choice-copy {
    min-width: 0;
}

@media (max-width: 767px) {
    body.cinder-site-shell.primary-bg-color .cinder-shell-card {
        border-radius: 16px !important;
    }

    body.cinder-site-shell.primary-bg-color .contact-section .form-group.row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    body.cinder-site-shell.primary-bg-color .contact-section .form-group.row label {
        text-align: left !important;
        margin-bottom: 8px;
        padding-left: 0;
        padding-right: 0;
    }

    body.cinder-site-shell.primary-bg-color .contact-section .cinder-form-layout .form-group.row {
        margin-bottom: 18px;
    }

    body.cinder-site-shell.primary-bg-color .kb-search,
    body.cinder-site-shell.primary-bg-color .kb-feedback-actions > div,
    body.cinder-site-shell.primary-bg-color .cinder-toolbar,
    body.cinder-site-shell.primary-bg-color .cinder-toolbar-spread,
    body.cinder-site-shell.primary-bg-color .cinder-toolbar-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.cinder-site-shell.primary-bg-color .kb-search .input-group-append,
    body.cinder-site-shell.primary-bg-color .kb-search .input-group-append .btn,
    body.cinder-site-shell.primary-bg-color .kb-feedback-actions .btn {
        width: 100%;
    }

    body.cinder-site-shell.primary-bg-color .kb-article-header {
        flex-direction: column;
    }

    body.cinder-site-shell.primary-bg-color .support-ticket-shell .cinder-choice-item {
        min-height: 0;
        padding: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.cinder-site-shell.primary-bg-color .support-ticket-shell .cinder-choice-item,
    body.cinder-site-shell.primary-bg-color .contact-section .cinder-shell-card,
    body.cinder-site-shell.primary-bg-color .kb-cinder-shell .card {
        transition: none !important;
    }
}

/* ---- Cinder TV final polish pass ---- */
body.cinder-site-shell.primary-bg-color,
body.cinder-site-shell.primary-bg-color button,
body.cinder-site-shell.primary-bg-color input,
body.cinder-site-shell.primary-bg-color select,
body.cinder-site-shell.primary-bg-color textarea {
    font-family: "Segoe UI", Roboto, "Open Sans", Arial, sans-serif !important;
}

body.cinder-site-shell.primary-bg-color h1,
body.cinder-site-shell.primary-bg-color h2,
body.cinder-site-shell.primary-bg-color h3,
body.cinder-site-shell.primary-bg-color h4,
body.cinder-site-shell.primary-bg-color h5,
body.cinder-site-shell.primary-bg-color h6 {
    font-family: "Segoe UI", Roboto, "Open Sans", Arial, sans-serif !important;
    font-weight: 800;
}

body.cinder-site-shell.primary-bg-color .header-lined,
body.cinder-site-shell.primary-bg-color .page-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    margin-bottom: 22px;
    padding-bottom: 16px;
}

body.cinder-site-shell.primary-bg-color .header-lined h1,
body.cinder-site-shell.primary-bg-color .page-header h1 {
    color: rgba(255, 255, 255, 0.96) !important;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    line-height: 1.12;
}

body.cinder-site-shell.primary-bg-color .header-lined p,
body.cinder-site-shell.primary-bg-color .page-header p {
    color: var(--cinder-site-copy-soft) !important;
    max-width: 760px;
}

body.cinder-site-shell.primary-bg-color .alert {
    border-radius: 14px !important;
    border-width: 1px !important;
    box-shadow: none !important;
}

body.cinder-site-shell.primary-bg-color .alert-info {
    background: rgba(79, 140, 255, 0.09) !important;
    border-color: rgba(79, 140, 255, 0.22) !important;
    color: rgba(230, 243, 255, 0.9) !important;
}

body.cinder-site-shell.primary-bg-color .alert-warning {
    background: rgba(240, 178, 77, 0.1) !important;
    border-color: rgba(240, 178, 77, 0.24) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

body.cinder-site-shell.primary-bg-color .alert-danger {
    background: rgba(255, 107, 107, 0.1) !important;
    border-color: rgba(255, 107, 107, 0.24) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

body.cinder-site-shell.primary-bg-color .alert-success {
    background: rgba(51, 194, 127, 0.1) !important;
    border-color: rgba(51, 194, 127, 0.24) !important;
    color: rgba(221, 255, 239, 0.92) !important;
}

body.cinder-site-shell.primary-bg-color .main-content .btn,
body.cinder-site-shell.primary-bg-color #main-body .btn {
    border-radius: 10px;
    font-weight: 750;
    letter-spacing: 0;
}

body.cinder-site-shell.primary-bg-color .main-content .btn-link,
body.cinder-site-shell.primary-bg-color #main-body .btn-link {
    color: #8fb6ff !important;
}

body.cinder-site-shell.primary-bg-color .pagination .page-link {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

body.cinder-site-shell.primary-bg-color .pagination .active .page-link,
body.cinder-site-shell.primary-bg-color .pagination .page-link:hover {
    background: rgba(79, 140, 255, 0.16) !important;
    border-color: rgba(79, 140, 255, 0.34) !important;
    color: #ffffff !important;
}

body.cinder-site-shell.primary-bg-color #order-standard_cart {
    color: var(--cinder-site-copy);
}

body.cinder-site-shell.primary-bg-color #order-standard_cart .product,
body.cinder-site-shell.primary-bg-color #order-standard_cart .view-cart-items,
body.cinder-site-shell.primary-bg-color #order-standard_cart .order-summary,
body.cinder-site-shell.primary-bg-color #order-standard_cart .cart-sidebar .list-group-item {
    background: var(--cinder-site-surface-strong) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: var(--cinder-site-copy) !important;
}

body.cinder-site-shell.primary-bg-color #order-standard_cart .product header {
    background: rgba(79, 140, 255, 0.1) !important;
    color: #ffffff !important;
    border-bottom-color: rgba(79, 140, 255, 0.2) !important;
}

body.cinder-site-shell.primary-bg-color #order-standard_cart .product-pricing .price {
    color: #8fb6ff !important;
}

@media (max-width: 575px) {
    body.cinder-site-shell.primary-bg-color .header-lined h1,
    body.cinder-site-shell.primary-bg-color .page-header h1 {
        font-size: 1.7rem;
    }
}
