:root {
    --ah-yellow: #ffd400;
    --ah-yellow-2: #ffea63;
    --ah-black: #0b0d0f;
    --ah-black-2: #171a1e;
    --ah-red: #d91f26;
    --ah-white: #ffffff;
    --ah-surface: #f5f6f2;
    --ah-surface-2: #eceee8;
    --ah-border: #dde0d8;
    --ah-muted: #687078;
    --ah-success: #16794a;
    --ah-radius: 22px;
    --ah-shadow-sm: 0 10px 30px rgba(11, 13, 15, .07);
    --ah-shadow-lg: 0 24px 70px rgba(11, 13, 15, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ah-black);
    background: var(--ah-white);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ah-black);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.05;
}

a { color: inherit; }
img { max-width: 100%; }

.container { max-width: 1240px; }
.text-muted, .text-secondary { color: var(--ah-muted) !important; }
.bg-light { background: var(--ah-surface) !important; }
.bg-autohaus { background: var(--ah-yellow) !important; }
.text-autohaus { color: #ad8700 !important; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #646b70;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 25px;
    height: 3px;
    background: var(--ah-yellow);
    border-radius: 999px;
    content: "";
}

.section-pad { padding: 88px 0; }
.section-heading { max-width: 720px; }
.section-title {
    margin: .45rem 0 0;
    font-size: clamp(2.35rem, 4vw, 4.25rem);
}

/* Header */
.promo-strip {
    color: #fff;
    background: var(--ah-black);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .015em;
}
.promo-strip a { text-decoration: none; }
.promo-strip a:hover { color: var(--ah-yellow) !important; }

.site-navbar {
    min-height: 78px;
    border-bottom: 1px solid rgba(11, 13, 15, .08);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(18px);
    box-shadow: 0 5px 24px rgba(11, 13, 15, .035);
}
.brand-logo {
    display: block;
    width: clamp(170px, 16vw, 228px);
    height: auto;
}
.site-navbar .nav-link {
    position: relative;
    padding: .8rem .7rem !important;
    color: #23272b;
    font-size: .88rem;
    font-weight: 750;
}
.site-navbar .nav-link::after {
    position: absolute;
    right: .7rem;
    bottom: .4rem;
    left: .7rem;
    height: 3px;
    border-radius: 999px;
    background: var(--ah-yellow);
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: .2s ease;
}
.site-navbar .nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: .85rem 1.25rem; }
.btn-autohaus {
    border: 2px solid var(--ah-yellow);
    background: var(--ah-yellow);
    color: var(--ah-black);
    box-shadow: 0 9px 23px rgba(255, 212, 0, .24);
}
.btn-autohaus:hover,
.btn-autohaus:focus {
    border-color: var(--ah-yellow-2);
    background: var(--ah-yellow-2);
    color: var(--ah-black);
    box-shadow: 0 12px 28px rgba(255, 212, 0, .32);
}
.btn-dark { border-color: var(--ah-black); background: var(--ah-black); }
.btn-dark:hover { border-color: #272b30; background: #272b30; }
.btn-outline-dark { border-width: 1.5px; }
.btn-outline-dark:hover { background: var(--ah-black); }
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 86px 0 56px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 212, 0, .28), transparent 25%),
        linear-gradient(128deg, #090b0d 0%, #111419 58%, #1a1e23 100%);
}
.hero::before {
    position: absolute;
    z-index: -1;
    top: -210px;
    right: -190px;
    width: 620px;
    height: 620px;
    border: 90px solid rgba(255, 212, 0, .92);
    border-radius: 50%;
    content: "";
    opacity: .42;
}
.hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero .eyebrow { color: rgba(255,255,255,.7); }
.hero h1 {
    margin: .9rem 0 1.2rem;
    color: #fff;
    font-size: clamp(3.8rem, 7.4vw, 7rem);
    line-height: .86;
    letter-spacing: -.045em;
    text-transform: uppercase;
}
.hero h1 .highlight {
    position: relative;
    display: inline-block;
    color: var(--ah-yellow);
}
.hero h1 .highlight::after {
    position: absolute;
    right: 1%;
    bottom: -.08em;
    left: 1%;
    height: .07em;
    border-radius: 999px;
    background: var(--ah-yellow);
    content: "";
    transform: skewX(-18deg);
}
.hero-copy {
    max-width: 640px;
    color: rgba(255,255,255,.72);
    font-size: 1.08rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.6rem;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    font-weight: 700;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust i { color: var(--ah-yellow); }

.booking-panel {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--ah-shadow-lg);
}
.booking-panel::before {
    position: absolute;
    top: 0;
    right: 28px;
    width: 74px;
    height: 6px;
    border-radius: 0 0 8px 8px;
    background: var(--ah-yellow);
    content: "";
}
.booking-panel h3 { font-size: 2rem; }
.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .8rem;
    color: #5e666d;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.panel-kicker .step-dot {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--ah-black);
    color: #fff;
    font-size: .68rem;
}
.form-label {
    margin-bottom: .4rem;
    color: #3c4349;
    font-size: .78rem;
    font-weight: 800;
}
.form-control,
.form-select {
    min-height: 50px;
    border: 1.5px solid #d8dcd3;
    border-radius: 12px;
    background-color: #fff;
    font-size: .9rem;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--ah-yellow);
    box-shadow: 0 0 0 .22rem rgba(255, 212, 0, .17);
}

.quick-actions-wrap {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 22px 0;
    background: var(--ah-yellow);
}
.quick-action {
    display: flex;
    align-items: center;
    gap: .85rem;
    height: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(11,13,15,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.28);
    color: var(--ah-black);
    text-decoration: none;
    transition: .2s ease;
}
.quick-action:hover {
    border-color: var(--ah-black);
    background: #fff;
    transform: translateY(-3px);
}
.quick-action i { font-size: 1.4rem; }
.quick-action strong { display: block; font-size: .9rem; }
.quick-action small { display: block; color: #5c4e00; font-size: .68rem; }

/* Cards */
.card-lift {
    overflow: hidden;
    border: 1px solid var(--ah-border);
    border-radius: var(--ah-radius);
    background: #fff;
    box-shadow: 0 1px 0 rgba(11,13,15,.02);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card-lift:hover {
    border-color: #c8ccc3;
    box-shadow: var(--ah-shadow-sm);
    transform: translateY(-7px);
}
.icon-tile {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    background: var(--ah-yellow);
    color: var(--ah-black);
    font-size: 1.25rem;
    box-shadow: 0 9px 20px rgba(255,212,0,.22);
}
.service-card { position: relative; }
.service-card::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    border-radius: 0 0 0 64px;
    background: rgba(255, 212, 0, .18);
    content: "";
}
.service-card h3 { font-size: 1.8rem; }
.service-number {
    color: #9ba19d;
    font-family: "Barlow Condensed", sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
}
.price {
    color: var(--ah-black);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.old-price { color: var(--ah-muted); text-decoration: line-through; }

.choice-card {
    display: block;
    height: 100%;
    min-height: 138px;
    padding: 20px;
    border: 1.5px solid #dce0d7;
    border-radius: 18px;
    background: #fff;
    color: var(--ah-black);
    cursor: pointer;
    text-decoration: none;
    transition: .2s ease;
}
.choice-card:hover {
    border-color: var(--ah-black);
    box-shadow: var(--ah-shadow-sm);
    transform: translateY(-4px);
}
.choice-card:has(input:checked) {
    border-color: var(--ah-black);
    background: #fff9d6;
}
.symptom-icon {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--ah-red);
    font-size: 1.25rem;
}

.promo-image,
.product-image,
.branch-card .branch-image {
    width: 100%;
    height: 230px;
    background: #e8eae5;
    object-fit: cover;
}
.promo-card { position: relative; }
.promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: .4rem .65rem;
    border-radius: 999px;
    background: var(--ah-yellow);
    color: var(--ah-black);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.saving-chip {
    display: inline-flex;
    padding: .35rem .58rem;
    border-radius: 999px;
    background: #e9f6ef;
    color: var(--ah-success);
    font-size: .7rem;
    font-weight: 800;
}
.branch-card { position: relative; }
.branch-card h3 { font-size: 1.9rem; }
.branch-meta {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: var(--ah-muted);
}
.branch-meta i { margin-top: .15rem; color: #a57e00; }

.trust-strip {
    border-top: 1px solid var(--ah-border);
    border-bottom: 1px solid var(--ah-border);
    background: #fff;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 24px 0;
}
.trust-item i {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 12px;
    background: #fff7c9;
    color: #7c6200;
}
.trust-item strong { display: block; font-size: .82rem; }
.trust-item small { color: var(--ah-muted); font-size: .7rem; }

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 62px);
    border-radius: 28px;
    color: #fff;
    background: var(--ah-black);
}
.cta-panel::after {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    border: 58px solid var(--ah-yellow);
    border-radius: 50%;
    content: "";
    opacity: .85;
}
.cta-panel h2 { color: #fff; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.cta-panel p { max-width: 650px; color: rgba(255,255,255,.7); }
.cta-panel > * { position: relative; z-index: 1; }

/* Booking/admin existing components */
.booking-shell { max-width: 980px; margin: auto; }
.booking-step { display: none; }
.booking-step.active { display: block; }
.booking-progress .progress-bar {
    background: var(--ah-yellow);
    color: var(--ah-black);
    font-weight: 800;
}
.admin-body { background: #f4f6f8; }
.stat-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .25rem 1rem rgba(0,0,0,.05);
}

/* Footer */
.site-footer {
    padding: 72px 0 28px;
    color: #fff;
    background: var(--ah-black);
}
.footer-logo { width: min(260px, 100%); filter: drop-shadow(0 6px 14px rgba(0,0,0,.2)); }
.site-footer h6 {
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.site-footer a {
    color: rgba(255,255,255,.62);
    text-decoration: none;
}
.site-footer a:hover { color: var(--ah-yellow); }

/* Footer WhatsApp CTA — readable Autohaus yellow button */
.site-footer a.btn-autohaus {
    border-color: var(--ah-yellow);
    background: var(--ah-yellow);
    color: var(--ah-black);
}
.site-footer a.btn-autohaus i {
    color: var(--ah-black);
}
.site-footer a.btn-autohaus:hover,
.site-footer a.btn-autohaus:focus {
    border-color: var(--ah-yellow-2);
    background: var(--ah-yellow-2);
    color: var(--ah-black);
}
.site-footer a.btn-autohaus:hover i,
.site-footer a.btn-autohaus:focus i {
    color: var(--ah-black);
}

.mobile-bar { display: none; }

@media (max-width: 991.98px) {
    .site-navbar { min-height: 70px; }
    .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        border: 1px solid var(--ah-border);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--ah-shadow-sm);
    }
    .hero { padding-top: 66px; }
    .booking-panel { margin-top: 18px; }
}

@media (max-width: 767.98px) {
    body { padding-bottom: 74px; }
    .section-pad { padding: 64px 0; }
    .promo-strip .promo-secondary { display: none; }
    .brand-logo { width: 175px; }
    .hero { padding: 54px 0 42px; }
    .hero h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
    .hero-copy { font-size: .95rem; }
    .hero-actions .btn { width: 100%; }
    .booking-panel { padding: 22px; border-radius: 20px; }
    .quick-actions-wrap { padding: 16px 0; }
    .quick-action { padding: 13px 14px; }
    .section-title { font-size: 2.9rem; }
    .site-navbar .btn-autohaus { display: none; }
    .mobile-bar {
        position: fixed;
        z-index: 1050;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: .5rem .35rem calc(.5rem + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255,255,255,.12);
        background: rgba(11,13,15,.98);
        box-shadow: 0 -10px 30px rgba(0,0,0,.18);
        backdrop-filter: blur(16px);
    }
    .mobile-bar a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.72);
        font-size: .62rem;
        text-align: center;
        text-decoration: none;
    }
    .mobile-bar a:first-child { color: var(--ah-yellow); }
    .mobile-bar i { margin-bottom: .18rem; font-size: 1.15rem; }
    .mobile-bar strong { display: block; font-size: .63rem; }
}

/* =========================================================
   Autohaus Admin Control Centre
   ========================================================= */
.admin-body {
    min-height: 100vh;
    margin: 0;
    background: #f4f5f1;
    color: #141619;
    font-family: "Manrope", sans-serif;
}
.admin-body h1,.admin-body h2,.admin-body h3,.admin-body h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
}
.admin-shell { min-height: 100vh; }
.admin-sidebar {
    position: fixed;
    z-index: 1040;
    inset: 0 auto 0 0;
    display: flex;
    width: 270px;
    flex-direction: column;
    overflow-y: auto;
    color: #fff;
    background: #0b0d0f;
    box-shadow: 12px 0 40px rgba(0,0,0,.14);
    transition: transform .22s ease;
}
.admin-brand {
    padding: 28px 24px 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-brand img {
    display: block;
    width: 205px;
    max-width: 100%;
}
.admin-brand span {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,.42);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .22em;
}
.admin-nav {
    display: grid;
    gap: 5px;
    padding: 22px 14px;
}
.admin-nav a,.admin-sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 13px;
    border-radius: 12px;
    color: rgba(255,255,255,.67);
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: .18s ease;
}
.admin-nav a i,.admin-sidebar-footer a i { width: 21px; font-size: 1.05rem; text-align: center; }
.admin-nav a:hover,.admin-sidebar-footer a:hover { color: #fff; background: rgba(255,255,255,.07); }
.admin-nav a.active { color: #0b0d0f; background: #ffd400; box-shadow: 0 8px 20px rgba(255,212,0,.16); }
.admin-sidebar-footer {
    margin-top: auto;
    padding: 18px 20px 24px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.admin-sidebar-footer a { padding-left: 0; }
.admin-sidebar-footer strong { display: block; margin-top: 4px; font-size: .82rem; }
.admin-main { min-height: 100vh; margin-left: 270px; }
.admin-topbar {
    position: sticky;
    z-index: 1020;
    top: 0;
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    border-bottom: 1px solid #dfe2da;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(18px);
}
.admin-topbar-title { font-size: .86rem; font-weight: 800; }
.admin-topbar-subtitle { color: #777d76; font-size: .68rem; }
.admin-menu-toggle { display: none; }
.admin-content { padding: 30px; }
.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}
.admin-page-head h1 {
    margin: 2px 0 5px;
    font-size: clamp(2.25rem,4vw,3.25rem);
    line-height: .98;
}
.admin-page-head p { max-width: 750px; margin: 0; color: #6e746e; font-size: .86rem; }
.admin-eyebrow {
    color: #8f7200;
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.admin-back-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: 12px;
    color: #5e645f;
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
}
.admin-back-link:hover { color: #0b0d0f; }
.admin-card {
    overflow: hidden;
    border: 1px solid #dfe2da;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(21,24,20,.045);
}
.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #e7e9e3;
}
.admin-card-header h2 { margin: 0; font-size: 1.55rem; }
.admin-card-header p { margin: 2px 0 0; color: #7b817b; font-size: .72rem; }
.admin-card-header a { color: #1c211d; font-size: .75rem; font-weight: 800; text-decoration: none; }
.admin-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid #e7e9e3;
    background: #fafbf8;
}
.admin-stat-card {
    display: flex;
    min-height: 102px;
    align-items: center;
    gap: 15px;
    height: 100%;
    padding: 18px;
    border: 1px solid #dfe2da;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(21,24,20,.04);
}
.admin-stat-card span { display: block; color: #757c76; font-size: .7rem; font-weight: 700; }
.admin-stat-card strong { display: block; margin-top: 3px; font-family: "Barlow Condensed",sans-serif; font-size: 2.3rem; line-height: 1; }
.admin-stat-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 14px;
    font-size: 1.16rem;
}
.admin-stat-icon.tone-primary { color: #084298; background: #cfe2ff; }
.admin-stat-icon.tone-warning { color: #664d03; background: #fff3cd; }
.admin-stat-icon.tone-info { color: #055160; background: #cff4fc; }
.admin-stat-icon.tone-success { color: #0f5132; background: #d1e7dd; }
.admin-stat-icon.tone-danger { color: #842029; background: #f8d7da; }
.admin-stat-icon.tone-dark { color: #fff; background: #15181b; }
.admin-table { font-size: .77rem; }
.admin-table thead th {
    padding: 13px 16px;
    border-bottom-width: 1px;
    background: #f7f8f4;
    color: #6f756f;
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .065em;
    text-transform: uppercase;
    white-space: nowrap;
}
.admin-table tbody td { padding: 15px 16px; border-color: #eceee9; }
.admin-table tbody tr:hover { background: #fffdf2; }
.admin-body .form-label { margin-bottom: .36rem; color: #444a45; font-size: .7rem; font-weight: 800; }
.admin-body .form-control,.admin-body .form-select {
    min-height: 42px;
    border-color: #d7dbd2;
    border-radius: 10px;
    font-size: .78rem;
}
.admin-body textarea.form-control { min-height: auto; }
.admin-body .form-control:focus,.admin-body .form-select:focus { border-color: #d2ad00; box-shadow: 0 0 0 .2rem rgba(255,212,0,.18); }
.admin-body .btn { border-radius: 10px; font-size: .75rem; font-weight: 800; }
.admin-body .btn-autohaus { color: #0b0d0f; background: #ffd400; border-color: #ffd400; }
.admin-body .btn-autohaus:hover { color: #0b0d0f; background: #e8c000; border-color: #e8c000; }
.detail-list { display: grid; gap: 12px; }
.detail-list > div { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; padding-bottom: 11px; border-bottom: 1px solid #eceee8; }
.detail-list > div:last-child { padding-bottom: 0; border: 0; }
.detail-list span { color: #787e78; font-size: .7rem; }
.detail-list strong { max-width: 65%; font-size: .75rem; text-align: right; }
.detail-list.compact { grid-template-columns: repeat(2,minmax(0,1fr)); }
.detail-list.compact > div { display: block; }
.detail-list.compact strong { display: block; max-width: none; margin-top: 3px; text-align: left; }
.timeline-list { display: grid; gap: 20px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 13px 1fr; gap: 12px; }
.timeline-item:not(:last-child)::after { position: absolute; top: 13px; bottom: -20px; left: 5px; width: 2px; background: #e2e5de; content: ""; }
.timeline-dot { position: relative; z-index: 1; width: 12px; height: 12px; margin-top: 4px; border: 3px solid #ffd400; border-radius: 50%; background: #111; }
.timeline-item strong { font-size: .76rem; }
.timeline-item p { margin: 3px 0; color: #5f655f; font-size: .74rem; }
.timeline-item small { color: #969b96; font-size: .63rem; }
.metric-row { margin-bottom: 17px; font-size: .73rem; }
.metric-row .progress { height: 6px; margin-top: 7px; background: #eceee8; }
.metric-row .progress-bar { background: #ffd400; }
.rank-chip { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; background: #111; color: #ffd400; font-size: .67rem; font-weight: 900; }
.branch-code-chip { display: grid; min-width: 50px; height: 50px; place-items: center; border-radius: 13px; background: #ffd400; color: #111; font-family: "Barlow Condensed",sans-serif; font-size: 1.3rem; font-weight: 900; }
.branch-admin-card h2 { margin: 0; font-size: 1.7rem; }
.branch-assignment-list { max-height: 490px; overflow-y: auto; }
.branch-assignment-list.compact { max-height: 310px; }
.branch-assignment-item { padding: 13px 16px; border-top: 1px solid #e9ebe5; font-size: .72rem; }
.branch-assignment-item:first-child { border-top: 0; }
.checklist-scroll { max-height: 285px; overflow-y: auto; }
.admin-check-row { display: flex; align-items: flex-start; gap: 10px; padding: 9px 6px; border-bottom: 1px solid #eceee8; font-size: .72rem; cursor: pointer; }
.admin-check-row:last-child { border-bottom: 0; }
.mini-metric { padding: 12px; border-radius: 11px; background: #f4f5f1; }
.mini-metric span { display: block; color: #7c827c; font-size: .6rem; font-weight: 800; text-transform: uppercase; }
.mini-metric strong { display: block; margin-top: 3px; font-size: .72rem; }
.admin-price { font-family: "Barlow Condensed",sans-serif; font-size: 2rem; font-weight: 900; }
.admin-overlay { display: none; }
.admin-body .alert { border-radius: 12px; font-size: .78rem; }

@media (max-width: 1199.98px) {
    .admin-page-head { align-items: flex-start; flex-direction: column; }
    .admin-page-head > .d-flex,.admin-page-head > form { width: 100%; }
}
@media (max-width: 991.98px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-menu-toggle { display: inline-flex; }
    .admin-overlay { position: fixed; z-index: 1030; inset: 0; background: rgba(0,0,0,.44); }
    .admin-overlay.show { display: block; }
    .admin-content { padding: 22px 18px; }
    .admin-topbar { padding: 10px 18px; }
}
@media (max-width: 767.98px) {
    body.admin-body { padding-bottom: 0; }
    .admin-card { border-radius: 14px; }
    .admin-card-header,.admin-card-footer,.admin-card > .p-4 { padding-left: 17px !important; padding-right: 17px !important; }
    .admin-page-head { margin-bottom: 20px; }
    .admin-page-head h1 { font-size: 2.4rem; }
    .detail-list.compact { grid-template-columns: 1fr; }
    .admin-topbar-title { max-width: 145px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* =========================================================
   Human-first public experience (Aug 2026 refresh)
   ========================================================= */
.section-subtitle {
    max-width: 720px;
    margin: .85rem 0 0;
    color: var(--ah-muted);
    font-size: .98rem;
}

.hero.hero-human {
    min-height: 670px;
    display: flex;
    align-items: center;
    padding: 58px 0 70px;
    background-image:
        linear-gradient(90deg, rgba(7,9,11,.97) 0%, rgba(7,9,11,.92) 31%, rgba(7,9,11,.48) 57%, rgba(7,9,11,.52) 100%),
        linear-gradient(0deg, rgba(7,9,11,.42), rgba(7,9,11,.16)),
        var(--hero-image);
    background-size: cover;
    background-position: center center;
}
.hero.hero-human::before {
    top: -270px;
    right: -260px;
    width: 610px;
    height: 610px;
    border-width: 78px;
    opacity: .55;
}
.hero.hero-human::after {
    background: linear-gradient(180deg, transparent 72%, rgba(0,0,0,.26));
    mask-image: none;
}
.hero-human-row { min-height: 540px; }
.hero-copy-panel { max-width: 690px; padding: 24px 0; }
.hero-human h1 {
    max-width: 680px;
    font-size: clamp(4rem, 6.9vw, 6.7rem);
}
.hero-human .hero-copy {
    max-width: 590px;
    color: rgba(255,255,255,.86);
    font-size: 1.05rem;
    text-shadow: 0 1px 14px rgba(0,0,0,.35);
}
.hero-human .hero-trust {
    gap: .8rem 1.4rem;
    margin-top: 1.45rem;
    color: rgba(255,255,255,.88);
}
.hero-human .hero-trust i { font-size: 1rem; }
.booking-panel-human {
    border: 1px solid rgba(255,255,255,.54);
    box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.booking-human-note {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eceee8;
    color: #626a70;
    font-size: .72rem;
    line-height: 1.45;
}
.booking-human-note i { color: #16794a; font-size: 1rem; }

.quick-actions-human {
    position: relative;
    z-index: 5;
    margin-top: -36px;
    padding-bottom: 18px;
}
.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(11,13,15,.08);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 22px 60px rgba(11,13,15,.13);
    backdrop-filter: blur(12px);
}
.quick-human-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) 92px;
    min-height: 132px;
    overflow: hidden;
    border: 1px solid #e2e5dd;
    border-radius: 17px;
    background: #fff;
    color: var(--ah-black);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick-human-card:hover {
    border-color: #cbd0c5;
    box-shadow: 0 14px 34px rgba(11,13,15,.09);
    transform: translateY(-4px);
}
.quick-human-card > div { position: relative; z-index: 2; padding: 17px 4px 15px 17px; }
.quick-human-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quick-human-card::after {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 69px;
    bottom: 0;
    width: 55px;
    background: linear-gradient(90deg,#fff 12%,rgba(255,255,255,0));
    content: "";
}
.quick-icon {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 10px;
    background: var(--ah-yellow);
    font-size: 1rem;
}
.quick-human-card strong { display: block; margin-bottom: 3px; font-size: .88rem; }
.quick-human-card small { display: block; color: #727980; font-size: .67rem; line-height: 1.35; }
.quick-arrow { display: block; margin-top: 8px; font-size: .64rem; font-weight: 900; }

.trust-strip-human { border-top: 0; background: #fff; }
.trust-strip-human .trust-item { min-height: 82px; }
.trust-strip-human .trust-item i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    background: #fff8cf;
    color: #a37d00;
}

.service-showcase { padding-top: 72px; }
.service-card-human { display: flex; flex-direction: column; padding: 0 !important; }
.service-card-human::after { display: none; }
.service-photo-wrap {
    position: relative;
    display: block;
    height: 170px;
    overflow: hidden;
    background: #e9ebe5;
}
.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.service-card-human:hover .service-photo { transform: scale(1.045); }
.service-photo-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(0,0,0,.18),transparent 50%);
    content: "";
}
.service-photo-wrap .service-number {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,.92);
    color: #202429;
    font-size: .67rem;
    font-weight: 900;
    backdrop-filter: blur(8px);
}
.service-card-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.service-card-human h3 { margin-bottom: .55rem; font-size: 1.65rem; }
.service-time {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #717880;
    white-space: nowrap;
}

.human-advisor-section { background: #f3f4ef; }
.human-photo-frame {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 28px;
    background: #ddd;
    box-shadow: 0 26px 65px rgba(11,13,15,.14);
}
.human-photo-frame > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.human-photo-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 15px;
    background: rgba(10,12,14,.84);
    color: #fff;
    backdrop-filter: blur(14px);
}
.human-photo-caption .caption-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 10px;
    background: var(--ah-yellow);
    color: var(--ah-black);
}
.human-photo-caption strong { display: block; font-size: .8rem; }
.human-photo-caption small { display: block; margin-top: 2px; color: rgba(255,255,255,.68); font-size: .65rem; }
.symptom-grid-human {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
}
.symptom-human-card {
    display: grid;
    grid-template-columns: 74px minmax(0,1fr) 24px;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    overflow: hidden;
    border: 1px solid #dfe2da;
    border-radius: 15px;
    background: #fff;
    color: var(--ah-black);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}
.symptom-human-card:hover { box-shadow: 0 12px 28px rgba(11,13,15,.08); transform: translateY(-3px); }
.symptom-human-card img { width: 74px; height: 86px; object-fit: cover; }
.symptom-human-card strong { display: block; font-size: .78rem; }
.symptom-human-card small {
    display: -webkit-box;
    margin-top: 3px;
    overflow: hidden;
    color: #7b8288;
    font-size: .62rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.symptom-human-card > i { margin-right: 11px; color: #8c9398; }

.service-experience-section { padding-top: 0; background: #f3f4ef; }
.experience-card {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    overflow: hidden;
    border-radius: 28px;
    background: #0b0d0f;
    box-shadow: 0 26px 70px rgba(11,13,15,.16);
}
.experience-photo { min-height: 430px; }
.experience-photo img { width: 100%; height: 100%; object-fit: cover; }
.experience-copy { padding: clamp(34px,5vw,64px); color: #fff; }
.experience-copy .section-title { color: #fff; }
.experience-copy p { max-width: 650px; color: rgba(255,255,255,.72); }
.experience-points { display: grid; gap: 11px; margin-top: 24px; }
.experience-points span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); font-size: .82rem; font-weight: 700; }
.experience-points i { color: var(--ah-yellow); font-size: 1.05rem; }

.promo-showcase { background: #fff; }
.promo-card-human .promo-image { height: 220px; object-fit: cover; }

.branch-human-section { background: #f3f4ef; }
.branch-card-human { border-radius: 18px; }
.branch-card-human h3 { font-size: 1.55rem; }
.branch-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    color: #16794a;
    font-size: .65rem;
    font-weight: 850;
}
.branch-open > span { width: 7px; height: 7px; border-radius: 50%; background: #23a260; box-shadow: 0 0 0 4px rgba(35,162,96,.11); }
.branch-human-photo {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(11,13,15,.12);
}
.branch-human-photo > img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.branch-human-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(6,8,10,.82),transparent 58%);
    content: "";
}
.branch-human-overlay {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    left: 24px;
    color: #fff;
}
.branch-human-overlay .eyebrow { color: rgba(255,255,255,.65); }
.branch-human-overlay h3 { margin: 10px 0 7px; color: #fff; font-size: 2rem; }
.branch-human-overlay p { margin: 0; color: rgba(255,255,255,.68); font-size: .78rem; }

.human-cta-section { background: #fff; }
.human-cta {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    background: #0b0d0f;
    box-shadow: 0 24px 65px rgba(11,13,15,.14);
}
.human-cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.human-cta-copy { align-self: center; padding: clamp(34px,5vw,64px); color: #fff; }
.human-cta-copy h2 { margin: .8rem 0 1rem; color: #fff; font-size: clamp(2.7rem,5vw,4.7rem); }
.human-cta-copy p { max-width: 650px; color: rgba(255,255,255,.7); }

/* Reusable public page intro to make inner pages feel consistent */
.public-page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background: #0b0d0f;
    color: #fff;
}
.public-page-hero.has-photo {
    background-image: linear-gradient(90deg,rgba(7,9,11,.95),rgba(7,9,11,.67) 58%,rgba(7,9,11,.22)), var(--page-photo);
    background-size: cover;
    background-position: center;
}
.public-page-hero h1 { margin: .55rem 0 .7rem; color: #fff; font-size: clamp(3rem,6vw,5.2rem); }
.public-page-hero p { max-width: 700px; margin: 0; color: rgba(255,255,255,.72); }

.floating-whatsapp {
    position: fixed;
    z-index: 1020;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #20b65a;
    color: #fff;
    box-shadow: 0 14px 36px rgba(0,0,0,.22);
    font-size: 1.55rem;
    text-decoration: none;
    transition: transform .18s ease;
}
.floating-whatsapp:hover { color: #fff; transform: translateY(-4px) scale(1.03); }

@media (max-width: 1199.98px) {
    .hero.hero-human { min-height: 640px; }
    .quick-human-card { grid-template-columns: minmax(0,1fr) 72px; }
    .quick-human-card::after { right: 49px; }
}

@media (max-width: 991.98px) {
    .hero.hero-human {
        padding: 68px 0 92px;
        background-image:
            linear-gradient(180deg,rgba(7,9,11,.66) 0%,rgba(7,9,11,.88) 55%,rgba(7,9,11,.98) 100%),
            var(--hero-image);
        background-position: 47% center;
    }
    .hero-human-row { min-height: auto; }
    .hero-copy-panel { max-width: 740px; }
    .booking-panel-human { margin-top: 14px; }
    .quick-actions-human { margin-top: -48px; }
    .quick-action-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .human-photo-frame,.human-photo-frame > img { min-height: 430px; }
    .experience-card,.human-cta { grid-template-columns: 1fr; }
    .experience-photo,.human-cta-photo { max-height: 440px; }
    .branch-human-photo,.branch-human-photo > img { min-height: 430px; }
    .floating-whatsapp { bottom: 86px; }
}

@media (max-width: 767.98px) {
    .section-pad { padding: 62px 0; }
    .hero.hero-human { min-height: 0; padding: 56px 0 84px; background-position: 54% center; }
    .hero-human h1 { font-size: clamp(3.3rem,16vw,5rem); }
    .hero-copy-panel { padding-top: 10px; }
    .hero-human .hero-copy { font-size: .95rem; }
    .hero-human .hero-trust { gap: .7rem; font-size: .69rem; }
    .quick-actions-human { margin-top: -42px; }
    .quick-action-grid { grid-template-columns: 1fr; padding: 10px; border-radius: 20px; }
    .quick-human-card { min-height: 112px; grid-template-columns: minmax(0,1fr) 105px; }
    .quick-human-card > div { padding: 14px; }
    .quick-icon { margin-bottom: 7px; }
    .quick-human-card::after { right: 80px; }
    .trust-strip-human .trust-item { padding: 14px 8px; }
    .service-photo-wrap { height: 185px; }
    .symptom-grid-human { grid-template-columns: 1fr; }
    .human-photo-frame,.human-photo-frame > img { min-height: 380px; }
    .experience-copy,.human-cta-copy { padding: 30px 24px; }
    .branch-human-photo,.branch-human-photo > img { min-height: 390px; }
    .floating-whatsapp { display: none; }
}

/* =========================================================
   Promotion landing page v2
   ========================================================= */
.promo-landing-hero{background:linear-gradient(180deg,#f7f7f3 0,#fff 100%);padding:28px 0 34px;overflow:hidden}
.promo-landing-container{position:relative}
.promo-campaign-banner{position:relative;overflow:hidden;border-radius:24px;background:#0b0d0f;box-shadow:0 28px 70px rgba(13,16,18,.13)}
.promo-campaign-banner picture,.promo-campaign-banner img{display:block;width:100%}
.promo-campaign-banner img{aspect-ratio:12/5;object-fit:cover}
.promo-status-pill{position:absolute;left:22px;top:22px;display:inline-flex;align-items:center;gap:8px;padding:9px 13px;border-radius:999px;font-size:.76rem;font-weight:800;letter-spacing:.02em;box-shadow:0 8px 24px rgba(0,0,0,.12);backdrop-filter:blur(10px)}
.promo-status-current{background:#ffd400;color:#080a0c}.promo-status-upcoming{background:#fff;color:#111}.promo-status-expired{background:#26292d;color:#fff}
.promo-offer-panel{position:relative;z-index:3;width:calc(100% - 64px);margin:-54px auto 0;padding:34px 38px;background:rgba(255,255,255,.97);border:1px solid rgba(11,13,15,.08);border-radius:24px;box-shadow:0 24px 60px rgba(12,14,16,.12)}
.promo-kicker{display:flex;align-items:center;gap:10px;font-size:.73rem;font-weight:800;letter-spacing:.13em;color:#777;text-transform:uppercase;margin-bottom:9px}.promo-kicker span{display:inline-block;width:34px;height:3px;border-radius:9px;background:#ffd400}
.promo-offer-panel h1{font-size:clamp(2.4rem,5vw,4.7rem);line-height:.9;letter-spacing:-.035em;margin:0;max-width:900px}
.promo-lead{font-size:1.05rem;color:#596066;max-width:830px;margin:16px 0 0;line-height:1.75}
.promo-meta-row{display:flex;flex-wrap:wrap;gap:10px 22px;margin-top:20px;color:#4c5358;font-size:.86rem}.promo-meta-row span{display:inline-flex;align-items:center;gap:7px}.promo-meta-row i{color:#c7a800}
.promo-price-box{border-radius:20px;background:#0b0d0f;color:#fff;padding:24px;text-align:left;position:relative;overflow:hidden}.promo-price-box:after{content:"";position:absolute;width:110px;height:110px;border:20px solid #ffd400;border-radius:50%;right:-42px;bottom:-60px;opacity:.92}.promo-price-box small{display:block;color:#aeb3b6;font-weight:700;margin-bottom:2px}.promo-normal-price{text-decoration:line-through;color:#989ea2;font-weight:700}.promo-main-price{font-family:"Barlow Condensed",sans-serif;font-size:3.6rem;line-height:1;font-weight:900;color:#ffd400;position:relative;z-index:1}.promo-main-price-text{font-size:2.5rem}.promo-save-label{display:inline-flex;margin-top:10px;background:#fff;color:#0c0e10;border-radius:999px;padding:6px 10px;font-size:.75rem;font-weight:800;position:relative;z-index:1}
.promo-primary-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:25px}.promo-primary-actions .btn{min-width:170px}
.promo-proof-strip{background:#fff;border-bottom:1px solid #e9ebe8;border-top:1px solid #f0f1ed}.promo-proof{display:flex;align-items:center;gap:13px;padding:22px 20px;border-right:1px solid #eceeea;height:100%}.promo-proof i{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:14px;background:#fff5bd;color:#141618;font-size:1.2rem}.promo-proof strong,.promo-proof small{display:block}.promo-proof strong{font-size:.88rem}.promo-proof small{font-size:.73rem;color:#80868b;margin-top:2px}
.promo-story-section{background:#fff}.promo-sticky-heading{top:120px}.promo-rich-copy{font-size:1.04rem;line-height:1.95;color:#4d5459;padding:32px;border-radius:24px;background:#f6f7f3;border:1px solid #ebede8;white-space:normal}
.promo-inclusions-section{background:#f5f6f2}.promo-inclusion-card{display:flex;gap:16px;padding:22px;border-radius:20px;background:#fff;border:1px solid #e6e8e3;box-shadow:0 10px 30px rgba(12,14,16,.035)}.promo-inclusion-icon{display:grid;place-items:center;width:50px;height:50px;flex:0 0 50px;border-radius:15px;background:#ffd400;color:#111;font-size:1.25rem}.promo-inclusion-card small,.promo-product-card small{color:#8b9195;text-transform:uppercase;letter-spacing:.08em;font-size:.66rem;font-weight:800}.promo-inclusion-card h3,.promo-product-card h3{font-size:1.45rem;margin:3px 0 6px}.promo-inclusion-card p,.promo-product-card p{font-size:.82rem;color:#737a7f;margin:0;line-height:1.55}.promo-product-card{display:flex;gap:15px;align-items:center;background:#fff;padding:14px;border:1px solid #e6e8e3;border-radius:20px}.promo-product-card img{width:105px;height:105px;object-fit:cover;border-radius:15px;background:#f3f3ef}
.promo-gallery-section{background:#fff}.promo-gallery-count,.promo-branch-count{display:inline-flex;align-items:center;gap:7px;padding:8px 12px;border-radius:999px;background:#f2f3f0;border:1px solid #e5e7e2;color:#5c6368;font-size:.79rem;font-weight:700}.promo-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:240px;gap:14px}.promo-gallery-item{position:relative;margin:0;border-radius:20px;overflow:hidden;background:#eceee9}.promo-gallery-featured{grid-column:span 2;grid-row:span 2}.promo-gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.promo-gallery-item:hover img{transform:scale(1.025)}.promo-gallery-item figcaption{position:absolute;left:12px;right:12px;bottom:12px;padding:10px 12px;border-radius:12px;background:rgba(11,13,15,.82);color:#fff;font-size:.77rem;backdrop-filter:blur(7px)}
.promo-eligibility-section{background:#f5f6f2}.promo-info-card{background:#fff;border:1px solid #e6e8e3;border-radius:24px;padding:28px}.promo-info-head{display:flex;gap:15px;align-items:center;margin-bottom:22px}.promo-info-head>span{display:grid;place-items:center;width:52px;height:52px;border-radius:16px;background:#ffd400;font-size:1.25rem}.promo-info-head h2{margin:2px 0 0;font-size:2rem}.promo-all-vehicles{display:flex;gap:14px;align-items:flex-start;padding:18px;border-radius:16px;background:#f8f9f6}.promo-all-vehicles>i{color:#159447;font-size:1.25rem}.promo-all-vehicles p{margin:3px 0 0;color:#757c80;font-size:.84rem}.promo-vehicle-group{display:grid;grid-template-columns:120px 1fr;gap:14px;padding:13px 0;border-bottom:1px solid #eceeea}.promo-vehicle-group:last-child{border-bottom:0}.promo-vehicle-group>strong{font-size:.87rem}.promo-vehicle-group>div{display:flex;flex-wrap:wrap;gap:7px}.promo-vehicle-group span{padding:6px 9px;border-radius:999px;background:#f3f4f1;font-size:.76rem;color:#484f54}.promo-note{display:flex;gap:10px;margin-top:18px;padding:14px;border-radius:14px;background:#fff9d8;font-size:.82rem;color:#5f5a37}.promo-note i{color:#b49700}
.promo-branches-section{background:#fff;scroll-margin-top:120px}.promo-branch-card{display:flex;flex-direction:column;background:#fff;border:1px solid #e2e5df;border-radius:22px;padding:24px;box-shadow:0 10px 35px rgba(12,14,16,.04);transition:transform .22s ease,box-shadow .22s ease}.promo-branch-card:hover{transform:translateY(-4px);box-shadow:0 18px 45px rgba(12,14,16,.08)}.promo-branch-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:15px}.promo-branch-top>i{color:#e5bf00;font-size:1.15rem}.promo-branch-code{font-size:.7rem;font-weight:900;letter-spacing:.08em;padding:6px 8px;border-radius:8px;background:#0b0d0f;color:#ffd400}.promo-branch-card h3{font-size:1.55rem;margin:0 0 10px}.promo-branch-address{font-size:.82rem;line-height:1.6;color:#747b7f;min-height:64px}.promo-branch-meta{display:flex;align-items:center;gap:7px;font-size:.77rem;color:#676e73;margin-bottom:17px}.promo-branch-actions{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:auto}.promo-branch-actions .btn{font-size:.74rem;padding:.55rem .45rem}.promo-branch-actions .btn i{margin-right:3px}
.promo-terms-section{background:#f5f6f2;padding-top:30px;padding-bottom:80px}.promo-terms-box{background:#fff;border:1px solid #e2e5df;border-radius:20px;overflow:hidden}.promo-terms-box summary{display:flex;justify-content:space-between;align-items:center;padding:22px 24px;cursor:pointer;font-weight:800;list-style:none}.promo-terms-box summary::-webkit-details-marker{display:none}.promo-terms-box summary span{display:flex;align-items:center;gap:10px}.promo-terms-box summary span i{color:#c4a500}.promo-terms-content{padding:0 24px 24px;color:#666d71;line-height:1.8;font-size:.84rem}
.promo-final-cta{background:#f5f6f2;padding:0 0 90px}.promo-final-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:40px;border-radius:26px;background:#0b0d0f;color:#fff;position:relative;overflow:hidden}.promo-final-cta-inner:after{content:"";position:absolute;width:170px;height:170px;border:28px solid #ffd400;border-radius:50%;right:-70px;bottom:-95px}.promo-final-cta-inner>div{position:relative;z-index:1}.promo-final-cta h2{font-size:2.7rem;margin:3px 0 5px}.promo-final-cta p{color:#aab0b4;margin:0;max-width:650px}
.promo-mobile-sticky{display:none}

/* Promotion admin artwork & vehicle selector */
.promo-upload-card{display:flex;flex-direction:column;gap:12px;padding:17px;border:1px solid #e3e6e0;border-radius:17px;background:#fafbf8}.promo-upload-ratio{display:inline-flex;align-self:flex-start;padding:6px 9px;border-radius:7px;background:#0d0f11;color:#ffd400;font-size:.65rem;letter-spacing:.08em;text-transform:uppercase;font-weight:900}.promo-upload-preview{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:11px;border:1px solid #e1e3df}.promo-upload-preview-mobile{aspect-ratio:4/5;max-height:300px;object-fit:cover}.promo-gallery-admin-item{border:1px solid #e3e6e0;border-radius:16px;overflow:hidden;background:#fff}.promo-gallery-admin-item>img{width:100%;height:180px;object-fit:cover}.promo-vehicle-chips{display:flex;flex-wrap:wrap;gap:8px;min-height:34px}.promo-vehicle-chip{display:inline-flex;align-items:center;gap:7px;padding:7px 8px 7px 11px;border:1px solid #e0e3dd;background:#f7f8f5;border-radius:999px;font-size:.78rem;font-weight:700}.promo-vehicle-chip button{display:grid;place-items:center;width:22px;height:22px;border:0;border-radius:50%;background:#0c0e10;color:#fff;padding:0}

@media (max-width:991.98px){
  .promo-offer-panel{width:calc(100% - 32px);margin-top:-28px;padding:27px}.promo-price-box{margin-top:2px}.promo-gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:220px}.promo-gallery-featured{grid-column:span 2;grid-row:span 1}.promo-final-cta-inner{align-items:flex-start;flex-direction:column}.promo-branch-actions{grid-template-columns:1fr 1fr}.promo-branch-actions .btn:first-child{grid-column:span 2}.promo-sticky-heading{position:static!important}
}
@media (max-width:767.98px){
  .promo-landing-hero{padding:10px 0 24px}.promo-campaign-banner{border-radius:0;margin-left:-12px;margin-right:-12px}.promo-campaign-banner img{aspect-ratio:4/5}.promo-status-pill{left:13px;top:13px;font-size:.69rem}.promo-offer-panel{width:100%;margin:-16px 0 0;padding:23px 19px;border-radius:20px}.promo-offer-panel h1{font-size:2.7rem}.promo-lead{font-size:.92rem}.promo-meta-row{display:grid;gap:8px}.promo-main-price{font-size:3.1rem}.promo-primary-actions{display:grid;grid-template-columns:1fr 1fr}.promo-primary-actions .btn{min-width:0;font-size:.82rem;padding:.75rem}.promo-primary-actions .btn:first-child{grid-column:span 2}.promo-proof{padding:14px 10px;gap:9px;border-bottom:1px solid #eceeea}.promo-proof i{width:36px;height:36px;flex-basis:36px}.promo-proof strong{font-size:.76rem}.promo-proof small{font-size:.64rem}.promo-rich-copy{padding:22px;font-size:.92rem}.promo-product-card img{width:85px;height:85px}.promo-gallery-grid{grid-template-columns:1fr;grid-auto-rows:auto;gap:10px}.promo-gallery-featured{grid-column:auto;grid-row:auto}.promo-gallery-item img{height:auto;aspect-ratio:4/3}.promo-info-card{padding:21px}.promo-vehicle-group{grid-template-columns:1fr}.promo-branch-address{min-height:0}.promo-final-cta{padding-bottom:120px}.promo-final-cta-inner{padding:28px 22px;border-radius:21px}.promo-final-cta h2{font-size:2.1rem}.promo-mobile-sticky{position:fixed;z-index:1040;left:10px;right:10px;bottom:72px;display:grid;grid-template-columns:2fr 1fr 1fr;background:#0b0d0f;border-radius:16px;padding:7px;box-shadow:0 14px 40px rgba(0,0,0,.24)}.promo-mobile-sticky a{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:2px;min-height:48px;color:#fff;text-decoration:none;font-size:.62rem;border-radius:11px}.promo-mobile-sticky a i{font-size:1rem}.promo-mobile-sticky .promo-mobile-book{background:#ffd400;color:#0b0d0f}.promo-terms-section{padding-bottom:55px}
}
.promo-branch-actions{grid-template-columns:repeat(2,1fr)}
.promo-branch-actions .btn:first-child{grid-column:auto}
@media (max-width:991.98px){.promo-branch-actions{grid-template-columns:repeat(2,1fr)}.promo-branch-actions .btn:first-child{grid-column:auto}}

/* Promotion V2.1 — compact branch table */
.promo-branch-list{background:#fff;border:1px solid #e2e5df;border-radius:22px;overflow:hidden;box-shadow:0 14px 40px rgba(12,14,16,.045)}
.promo-branch-list-head{display:grid;grid-template-columns:minmax(280px,1.25fr) minmax(280px,1.45fr) minmax(190px,.85fr) minmax(330px,1.15fr);gap:18px;align-items:center;padding:13px 18px;background:#f5f6f2;border-bottom:1px solid #e2e5df;color:#697075;font-size:.72rem;font-weight:900;letter-spacing:.07em;text-transform:uppercase}
.promo-branch-row{display:grid;grid-template-columns:minmax(280px,1.25fr) minmax(280px,1.45fr) minmax(190px,.85fr) minmax(330px,1.15fr);gap:18px;align-items:center;padding:15px 18px;border-bottom:1px solid #eceeea;transition:background .2s ease}
.promo-branch-row:last-child{border-bottom:0}.promo-branch-row:hover{background:#fffdf1}
.promo-branch-location{display:flex;align-items:center;gap:14px;min-width:0}.promo-branch-thumb{width:92px;height:68px;flex:0 0 92px;object-fit:cover;border-radius:13px;background:#eceee9;border:1px solid #e2e4df}
.promo-branch-identity{min-width:0}.promo-branch-identity .promo-branch-code{display:inline-flex;margin-bottom:7px;padding:4px 7px;font-size:.61rem}.promo-branch-identity h3{font-size:1.08rem;line-height:1.18;margin:0;overflow-wrap:anywhere}.promo-branch-photo-note{display:inline-block;margin-top:4px;color:#9aa0a4;font-size:.63rem}
.promo-branch-address,.promo-branch-hours{display:flex;align-items:flex-start;gap:9px;min-height:0!important;margin:0;color:#666e73;font-size:.79rem;line-height:1.5}.promo-branch-address i,.promo-branch-hours i{color:#c7a600;margin-top:2px;flex:0 0 auto}.promo-branch-hours{font-size:.76rem}
.promo-branch-actions-compact{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}.promo-branch-actions-compact .btn{display:flex;align-items:center;justify-content:center;gap:5px;min-height:37px;padding:.45rem .55rem;font-size:.7rem;font-weight:800;white-space:nowrap}.promo-branch-help{display:flex;align-items:center;gap:7px;margin:12px 4px 0;color:#8a9094;font-size:.72rem}

/* Branch image controls in admin */
.admin-branch-image-panel{display:grid;grid-template-columns:170px 1fr;gap:20px;align-items:start;padding:16px;border:1px solid #e3e6e0;border-radius:16px;background:#fafbf8}.admin-branch-image-preview{width:170px;aspect-ratio:4/3;object-fit:cover;border-radius:13px;border:1px solid #dfe2dc;background:#eef0eb}.admin-branch-image-empty{display:grid;place-items:center;width:170px;aspect-ratio:4/3;border:1px dashed #cfd3cc;border-radius:13px;background:#f1f3ee;color:#949a96;text-align:center;font-size:.73rem;padding:16px}.admin-branch-image-copy p{margin:5px 0 12px;color:#7b8286;font-size:.78rem;line-height:1.55}.admin-branch-image-copy .form-check{margin-top:10px}.branch-admin-thumb{width:78px;height:58px;object-fit:cover;border-radius:10px;border:1px solid #e0e3dd;background:#f1f2ef;flex:0 0 78px}

@media (max-width:1199.98px){
  .promo-branch-list-head,.promo-branch-row{grid-template-columns:minmax(250px,1.2fr) minmax(250px,1.35fr) minmax(170px,.8fr) minmax(250px,1fr);gap:14px}.promo-branch-actions-compact .btn span{display:none}.promo-branch-actions-compact{grid-template-columns:repeat(4,1fr)}.promo-branch-actions-compact .btn{min-width:0}
}
@media (max-width:991.98px){
  .promo-branch-list{border-radius:18px;background:transparent;border:0;box-shadow:none;overflow:visible}.promo-branch-list-head{display:none}.promo-branch-row{grid-template-columns:100px minmax(0,1fr);gap:10px 14px;margin-bottom:10px;padding:14px;border:1px solid #e2e5df;border-radius:17px;background:#fff;box-shadow:0 7px 22px rgba(12,14,16,.035)}.promo-branch-row:last-child{border-bottom:1px solid #e2e5df}.promo-branch-location{grid-column:1/-1}.promo-branch-thumb{width:100px;height:75px;flex-basis:100px}.promo-branch-identity h3{font-size:1.08rem}.promo-branch-address,.promo-branch-hours{grid-column:1/-1}.promo-branch-actions-compact{grid-column:1/-1;grid-template-columns:repeat(4,1fr);margin-top:3px}.promo-branch-actions-compact .btn span{display:inline}.promo-branch-help{margin-top:10px}
}
@media (max-width:575.98px){
  .promo-branch-row{grid-template-columns:84px minmax(0,1fr);padding:12px}.promo-branch-thumb{width:84px;height:70px;flex-basis:84px;border-radius:11px}.promo-branch-identity h3{font-size:.98rem}.promo-branch-address,.promo-branch-hours{font-size:.73rem}.promo-branch-actions-compact{grid-template-columns:repeat(2,1fr)}.promo-branch-actions-compact .btn{font-size:.69rem}.admin-branch-image-panel{grid-template-columns:1fr}.admin-branch-image-preview,.admin-branch-image-empty{width:100%;max-width:300px}
}

/* =========================================================
   Product catalogue v3 — compact Shopee-style ecommerce grid
   2 columns on phones, 5 columns on desktop.
   ========================================================= */
.shop-page-header {
    padding: 30px 0 24px;
    background: #fff;
    border-bottom: 1px solid #eceeea;
}
.shop-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 18px;
}
.shop-heading-row h1 {
    margin: 3px 0 5px;
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    line-height: .95;
}
.shop-heading-row p {
    max-width: 680px;
    margin: 0;
    color: var(--ah-muted);
    font-size: .93rem;
}
.shop-search {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    max-width: 880px;
    min-height: 50px;
    border: 1.5px solid #e0e2dd;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.035);
}
.shop-search:focus-within { border-color: var(--ah-yellow); }
.shop-search i {
    padding-left: 16px;
    color: #777d80;
}
.shop-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 13px 14px;
    background: transparent;
    font-size: .9rem;
}
.shop-search button {
    align-self: stretch;
    min-width: 100px;
    border: 0;
    background: var(--ah-yellow);
    color: var(--ah-black);
    font-weight: 800;
}
.shop-products-section {
    padding: 22px 0 70px;
    background: #f6f6f4;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid #e6e7e3;
    background: #fff;
    border-radius: 10px;
    padding: 0 10px;
}
.shop-sort-tabs {
    display: flex;
    align-items: stretch;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.shop-sort-tabs::-webkit-scrollbar { display:none; }
.shop-sort-tabs a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    color: #555b5e;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}
.shop-sort-tabs a:hover { color: #111; }
.shop-sort-tabs a.active {
    color: #111;
    font-weight: 800;
}
.shop-sort-tabs a.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--ah-yellow);
}
.shop-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    min-height: 44px;
    padding: 0 9px;
    font-size: .8rem;
    font-weight: 800;
}
.shop-filter-collapse { margin-bottom: 12px; }
.shop-filter-panel {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr auto;
    gap: 10px;
    align-items: end;
    padding: 14px;
    border: 1px solid #e5e6e2;
    border-radius: 10px;
    background: #fff;
}
.shop-filter-field label {
    display: block;
    margin-bottom: 5px;
    color: #777d80;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.shop-filter-field select {
    width: 100%;
    height: 40px;
    border: 1px solid #dfe1dd;
    border-radius: 8px;
    padding: 0 10px;
    background: #fff;
    color: #222;
    font-size: .8rem;
}
.shop-size-selects {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 6px;
}
.shop-filter-actions {
    display: flex;
    gap: 7px;
}
.shop-filter-actions .btn {
    min-height: 40px;
    padding: .55rem .9rem;
    font-size: .77rem;
    white-space: nowrap;
}
.shop-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 30px;
    margin: 2px 2px 10px;
    color: #7a7f82;
    font-size: .75rem;
}
.shop-result-meta strong { color:#17191b; }

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 9px;
}
.shop-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e5e6e2;
    border-radius: 10px;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.shop-product-card:hover {
    z-index: 2;
    border-color: #d7d8d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,.075);
}
.shop-product-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #fff;
    text-decoration: none;
}
.shop-product-image {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    background: #fff;
    transition: transform .22s ease;
}
.shop-product-card:hover .shop-product-image { transform: scale(1.025); }
.shop-discount-badge {
    position: absolute;
    z-index: 2;
    right: 6px;
    top: 6px;
    min-width: 38px;
    padding: 4px 6px;
    border-radius: 5px;
    background: #e62429;
    color: #fff;
    text-align: center;
    font-size: .66rem;
    line-height: 1;
    font-weight: 850;
}
.shop-product-body {
    display: flex;
    flex-direction: column;
    min-height: 170px;
    padding: 9px 10px 10px;
}
.shop-product-brand {
    margin-bottom: 3px;
    color: #8a8f92;
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shop-product-title {
    display: -webkit-box;
    min-height: 35px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #17191b;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}
.shop-product-title:hover { color:#000; }
.shop-product-size {
    align-self: flex-start;
    max-width: 100%;
    margin-top: 7px;
    padding: 3px 6px;
    border-radius: 5px;
    background: #151719;
    color: #fff;
    font-size: .61rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}
.shop-product-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
    margin-top: auto;
    padding-top: 10px;
}
.shop-product-price {
    color: #d81820;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.35rem;
    font-weight: 850;
    line-height: 1;
}
.shop-product-old-price {
    color: #9da1a3;
    font-size: .65rem;
    text-decoration: line-through;
}
.shop-product-actions {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 6px;
    margin-top: 9px;
}
.shop-product-info,
.shop-product-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border-radius: 7px;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 850;
}
.shop-product-info {
    border: 1px solid #dfe1dd;
    color: #151719;
    background: #fff;
}
.shop-product-book {
    border: 1px solid var(--ah-yellow);
    background: var(--ah-yellow);
    color: #111;
}
.shop-product-info:hover { border-color:#111; color:#111; }
.shop-product-book:hover { background:#f2c900; color:#111; }

.shop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 28px;
}
.shop-pagination a,
.shop-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #e0e2dd;
    border-radius: 7px;
    background: #fff;
    color: #555;
    font-size: .77rem;
    font-weight: 750;
    text-decoration: none;
}
.shop-pagination a.active {
    border-color: var(--ah-yellow);
    background: var(--ah-yellow);
    color: #111;
}
.shop-pagination .disabled { opacity: .35; }
.shop-pagination .shop-page-dots { border-color:transparent; background:transparent; }
.shop-empty-state {
    padding: 70px 20px;
    text-align: center;
    border: 1px solid #e5e6e2;
    border-radius: 12px;
    background: #fff;
}
.shop-empty-state i { font-size:2rem; color:#a3a6a8; }
.shop-empty-state h2 { margin:10px 0 5px; }
.shop-empty-state p { color:#777d80; }

@media (min-width: 576px) {
    .shop-product-grid { gap: 12px; }
    .shop-product-body { min-height: 182px; padding: 11px 12px 12px; }
    .shop-product-title { min-height: 39px; font-size: .84rem; }
    .shop-product-price { font-size: 1.48rem; }
}
@media (min-width: 768px) {
    .shop-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
}
@media (min-width: 992px) {
    .shop-product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
    .shop-filter-toggle { display:none; }
    .shop-filter-collapse.collapse:not(.show) { display:block; }
    .shop-product-title { font-size:.86rem; }
}
@media (min-width: 1200px) {
    .shop-product-grid { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; }
}
@media (max-width: 991.98px) {
    .shop-filter-panel { grid-template-columns: 1fr 1fr; }
    .shop-size-filter, .shop-filter-actions { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
    .shop-page-header { padding: 20px 0 16px; }
    .shop-heading-row { margin-bottom: 13px; }
    .shop-heading-row h1 { font-size:2.25rem; }
    .shop-heading-row p { font-size:.78rem; line-height:1.5; }
    .shop-search { min-height:46px; border-radius:9px; }
    .shop-search i { padding-left:12px; font-size:.85rem; }
    .shop-search input { padding:11px 9px; font-size:.77rem; }
    .shop-search button { min-width:66px; padding:0 10px; font-size:.72rem; }
    .shop-products-section { padding:10px 0 100px; }
    .shop-toolbar { margin:0 -2px 8px; padding:0 4px; border-radius:8px; }
    .shop-sort-tabs a { min-height:42px; padding:0 12px; font-size:.7rem; }
    .shop-sort-tabs a.active::after { left:10px; right:10px; }
    .shop-filter-toggle { padding:0 7px; font-size:.7rem; }
    .shop-filter-panel { grid-template-columns:1fr 1fr; gap:8px; padding:10px; }
    .shop-filter-field label { font-size:.6rem; }
    .shop-filter-field select { height:38px; padding:0 7px; font-size:.72rem; }
    .shop-size-filter, .shop-filter-actions { grid-column:1 / -1; }
    .shop-filter-actions .btn { flex:1; }
    .shop-result-meta { margin:0 1px 7px; font-size:.66rem; }
    .shop-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap:7px; }
    .shop-product-card { border-radius:8px; }
    .shop-product-image { padding:5px; }
    .shop-product-body { min-height:158px; padding:8px 8px 9px; }
    .shop-product-brand { font-size:.55rem; }
    .shop-product-title { min-height:34px; font-size:.72rem; line-height:1.32; }
    .shop-product-size { margin-top:6px; font-size:.55rem; }
    .shop-product-price-row { padding-top:8px; gap:4px; }
    .shop-product-price { font-size:1.18rem; }
    .shop-product-old-price { font-size:.57rem; }
    .shop-product-actions { grid-template-columns:30px minmax(0,1fr); gap:5px; margin-top:7px; }
    .shop-product-info, .shop-product-book { min-height:30px; border-radius:6px; font-size:.63rem; }
    .shop-pagination { margin-top:20px; gap:4px; }
    .shop-pagination a, .shop-pagination span { min-width:32px; height:32px; font-size:.7rem; }
}

/* Products catalogue — tyre size finder sidebar */
.shop-catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.shop-catalog-main { min-width: 0; }
.tyre-brand-finder {
    margin-top: 14px;
    padding: 17px;
    border: 1px solid #e2e4df;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,.025);
}
.tyre-brand-finder h2 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1;
}
.tyre-brand-finder > p {
    margin: 7px 0 13px;
    color: #747a7e;
    font-size: .72rem;
    line-height: 1.45;
}
.tyre-brand-card-grid { display: grid; gap: 7px; }
.tyre-brand-card {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 52px;
    padding: 8px 10px;
    border: 1.5px solid #e0e2de;
    border-radius: 10px;
    background: #fff;
    color: #17191b;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.tyre-brand-card:hover {
    border-color: #aeb2ad;
    color: #111;
    transform: translateY(-1px);
}
.tyre-brand-card > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: #f0f1ed;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
}
.tyre-brand-card strong { font-size: .76rem; }
.tyre-brand-card > i { color: #9b9f9b; font-size: .7rem; }
.tyre-brand-card.active {
    border-color: var(--ah-yellow);
    background: #fff9d7;
    box-shadow: inset 0 0 0 1px var(--ah-yellow);
}
.tyre-brand-card.active > span { background: var(--ah-yellow); }
.tyre-brand-clear {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    margin-top: 11px;
    color: #5d6260;
    font-size: .68rem;
    font-weight: 800;
    text-decoration: none;
}

@media (min-width: 992px) {
    .shop-mobile-filter-toolbar { display: none; }
    .shop-catalog-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 18px;
    }
    .shop-tyre-sidebar {
        position: sticky;
        top: 92px;
    }
    .shop-tyre-sidebar .tyre-size-finder {
        margin-bottom: 0;
        padding: 17px;
    }
    .shop-tyre-sidebar .tyre-size-finder-head { display: block; }
    .shop-tyre-sidebar .tyre-size-finder h2 { font-size: 1.5rem; }
    .shop-tyre-sidebar .tyre-size-finder-head p { font-size: .72rem; }
    .shop-tyre-sidebar .tyre-size-reset { margin-top: 10px; }
    .shop-tyre-sidebar .tyre-finder-steps {
        flex-wrap: wrap;
        gap: 6px;
    }
    .shop-tyre-sidebar .tyre-finder-steps span + span::before { width: 9px; }
    .shop-tyre-sidebar .tyre-rim-scroller {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        gap: 6px;
        padding: 2px 0 7px;
    }
    .shop-tyre-sidebar .tyre-rim-chip {
        min-width: 0;
        min-height: 55px;
        flex-basis: auto;
    }
    .shop-tyre-sidebar .tyre-rim-chip strong { font-size: 1.15rem; }
    .shop-tyre-sidebar .tyre-size-builder {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px;
    }
    .shop-tyre-sidebar .tyre-selected-rim,
    .shop-tyre-sidebar .tyre-builder-submit { grid-column: 1 / -1; }
    .shop-tyre-sidebar .tyre-size-slash,
    .shop-tyre-sidebar .tyre-size-rim-mark { display: none; }
    .shop-tyre-sidebar .tyre-builder-field select { padding: 0 7px; font-size: .72rem; }
    .shop-tyre-sidebar .tyre-size-preview {
        flex-wrap: wrap;
        gap: 4px 8px;
    }
    .shop-tyre-sidebar .tyre-size-preview small {
        width: 100%;
        margin-left: 0;
    }
    .shop-catalog-main .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .tyre-brand-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
    .tyre-brand-finder { margin: 0 -2px 9px; padding: 12px 10px; border-radius: 10px; }
    .tyre-brand-finder h2 { font-size: 1.3rem; }
    .tyre-brand-card-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1200px) {
    .shop-catalog-layout { grid-template-columns: 300px minmax(0, 1fr); }
    .shop-catalog-main .shop-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


/* =========================================================
   Tyre Finder V2 — rim-first guided size finder
   ========================================================= */
.tyre-size-finder {
    margin-bottom: 14px;
    padding: 18px;
    border: 1px solid #e2e4df;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,.025);
}
.tyre-size-finder-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}
.tyre-size-kicker {
    display: block;
    margin-bottom: 4px;
    color: #9b8500;
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .1em;
}
.tyre-size-finder h2 {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1;
}
.tyre-size-finder-head p {
    max-width: 720px;
    margin: 7px 0 0;
    color: #747a7e;
    font-size: .8rem;
    line-height: 1.5;
}
.tyre-size-reset {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid #dfe1dd;
    border-radius: 8px;
    color: #555b5e;
    background: #fff;
    font-size: .68rem;
    font-weight: 800;
    text-decoration: none;
}
.tyre-finder-steps {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 14px 0 10px;
}
.tyre-finder-steps span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #9ba0a2;
    font-size: .67rem;
    font-weight: 800;
}
.tyre-finder-steps span + span::before {
    content: '';
    width: 18px;
    height: 1px;
    margin-right: 1px;
    background: #dedfdb;
}
.tyre-finder-steps b {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eceeeb;
    color: #74797c;
    font-size: .61rem;
}
.tyre-finder-steps span.active { color: #17191b; }
.tyre-finder-steps span.active b { background: var(--ah-yellow); color: #111; }
.tyre-rim-scroller {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 2px 1px 7px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}
.tyre-rim-chip {
    display: flex;
    flex: 0 0 74px;
    min-height: 61px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    border: 1.5px solid #dfe1dd;
    border-radius: 10px;
    background: #fff;
    color: #202326;
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.tyre-rim-chip:hover { border-color: #bbb; color:#111; transform:translateY(-1px); }
.tyre-rim-chip strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
}
.tyre-rim-chip span { margin-top:4px; color:#959a9c; font-size:.56rem; font-weight:800; }
.tyre-rim-chip.active {
    border-color: var(--ah-yellow);
    background: #fff9d7;
    box-shadow: inset 0 0 0 1px var(--ah-yellow);
}
.tyre-rim-chip.active span { color:#7a6800; }
.tyre-size-builder {
    display: grid;
    grid-template-columns: 110px minmax(130px,1fr) 18px minmax(130px,1fr) 54px auto;
    gap: 8px;
    align-items: end;
    margin-top: 10px;
    padding: 12px;
    border-radius: 11px;
    background: #f5f6f2;
}
.tyre-selected-rim {
    display: flex;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #17191b;
    color: #fff;
}
.tyre-selected-rim span { color:#b8bcbe; font-size:.54rem; font-weight:750; text-transform:uppercase; }
.tyre-selected-rim strong { color:var(--ah-yellow); font-family:"Barlow Condensed",sans-serif; font-size:1.35rem; line-height:1; }
.tyre-builder-field label {
    display: block;
    margin-bottom: 4px;
    color: #747a7d;
    font-size: .6rem;
    font-weight: 850;
    text-transform: uppercase;
}
.tyre-builder-field select {
    width: 100%;
    height: 48px;
    border: 1px solid #dfe1dd;
    border-radius: 8px;
    padding: 0 10px;
    background: #fff;
    color: #191b1d;
    font-size: .83rem;
    font-weight: 700;
}
.tyre-builder-field select:disabled { background:#eaebe8; color:#a1a5a7; }
.tyre-size-slash, .tyre-size-rim-mark {
    display: grid;
    place-items: center;
    height: 48px;
    color: #777d80;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
}
.tyre-size-rim-mark { color:#17191b; }
.tyre-builder-submit { min-height:48px; white-space:nowrap; font-size:.76rem; }
.tyre-size-preview {
    display: flex;
    align-items: baseline;
    gap: 8px 12px;
    margin-top: 8px;
    padding: 0 2px;
    color: #8a8f91;
    font-size: .65rem;
}
.tyre-size-preview strong { color:#17191b; font-size:.78rem; }
.tyre-size-preview small { margin-left:auto; }
.tyre-finder-hint {
    margin-top: 7px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fffbea;
    color: #6d6650;
    font-size: .68rem;
}
.tyre-finder-hint i { margin-right:4px; color:#a78b00; }

@media (max-width: 991.98px) {
    .tyre-size-builder { grid-template-columns: 92px 1fr 14px 1fr 45px; }
    .tyre-builder-submit { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
    .tyre-size-finder { margin:0 -2px 9px; padding:12px 10px; border-radius:10px; }
    .tyre-size-finder-head { gap:10px; }
    .tyre-size-finder h2 { font-size:1.35rem; }
    .tyre-size-finder-head p { font-size:.68rem; }
    .tyre-size-reset { padding:6px 7px; font-size:.59rem; }
    .tyre-finder-steps { margin:10px 0 7px; }
    .tyre-finder-steps span { font-size:.59rem; }
    .tyre-rim-scroller { gap:6px; margin-right:-10px; padding-right:10px; }
    .tyre-rim-chip { flex-basis:62px; min-height:54px; border-radius:8px; }
    .tyre-rim-chip strong { font-size:1.15rem; }
    .tyre-size-builder {
        grid-template-columns: 68px minmax(0,1fr) 10px minmax(0,1fr) 34px;
        gap:5px;
        padding:8px;
        border-radius:8px;
    }
    .tyre-selected-rim { height:43px; }
    .tyre-selected-rim strong { font-size:1.15rem; }
    .tyre-builder-field label { font-size:.52rem; }
    .tyre-builder-field select { height:43px; padding:0 6px; font-size:.68rem; }
    .tyre-size-slash, .tyre-size-rim-mark { height:43px; font-size:.9rem; }
    .tyre-builder-submit { min-height:42px; margin-top:2px; font-size:.68rem; }
    .tyre-size-preview { flex-wrap:wrap; gap:3px 8px; font-size:.58rem; }
    .tyre-size-preview small { width:100%; margin-left:0; }
}

/* =========================================================
   Homepage mobile compact cards — services + promotions
   Aug 2026
   ========================================================= */
@media (max-width: 767.98px) {
    /* Reduce vertical bulk around both homepage sections. */
    .service-showcase,
    .promo-showcase {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .service-showcase .mb-4,
    .service-showcase .mb-lg-5,
    .promo-showcase .mb-5 {
        margin-bottom: 20px !important;
    }

    .service-showcase .section-title,
    .promo-showcase .section-title {
        max-width: 330px;
        font-size: 2.25rem;
        line-height: .98;
    }

    .service-showcase .section-subtitle,
    .promo-showcase .section-subtitle {
        margin-top: .6rem;
        font-size: .78rem;
        line-height: 1.55;
    }

    .service-showcase .eyebrow,
    .promo-showcase .eyebrow {
        font-size: .62rem;
    }

    .service-showcase .btn-outline-dark.align-self-start,
    .promo-showcase .btn-outline-dark.align-self-start {
        padding: .48rem .75rem;
        font-size: .7rem;
    }

    /* Two compact service cards per row on phones. */
    .service-showcase .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 0;
    }

    .service-showcase .row.g-4 > [class*="col-"] {
        width: auto;
        max-width: none;
        padding: 0;
    }

    .service-card-human {
        border-radius: 14px;
        box-shadow: none;
    }

    .service-card-human:hover {
        transform: none;
    }

    .service-photo-wrap {
        height: 116px;
    }

    .service-photo-wrap .service-number {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        border-radius: 8px;
        font-size: .58rem;
    }

    .service-card-body {
        padding: 11px;
    }

    .service-card-human h3 {
        display: -webkit-box;
        min-height: 38px;
        margin: 0 0 .35rem;
        overflow: hidden;
        font-size: 1.12rem;
        line-height: 1.05;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .service-card-human .service-card-body > p {
        display: -webkit-box;
        min-height: 34px;
        margin-bottom: .55rem;
        overflow: hidden;
        font-size: .64rem;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .service-card-human .mt-auto.pt-2 {
        padding-top: 2px !important;
    }

    .service-card-human .mt-auto.pt-2 > small.text-secondary {
        margin-bottom: 1px !important;
        font-size: .57rem;
    }

    .service-card-human .price {
        font-size: 1.45rem;
    }

    .service-time {
        gap: .2rem;
        font-size: .58rem;
    }

    .service-card-human .d-flex.align-items-end.justify-content-between {
        align-items: center !important;
        gap: 5px !important;
    }

    .service-card-human .d-grid.gap-2.mt-3 {
        gap: 5px !important;
        margin-top: 8px !important;
    }

    .service-card-human .d-grid .btn {
        min-height: 31px;
        padding: .36rem .25rem;
        border-radius: 8px;
        font-size: .65rem;
    }

    /* Promotions: ecommerce-like two-column cards instead of full-width blocks. */
    .promo-showcase .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 0;
    }

    .promo-showcase .row.g-4 > [class*="col-"] {
        width: auto;
        max-width: none;
        padding: 0;
    }

    .promo-card-human {
        border-radius: 14px;
        box-shadow: none;
    }

    .promo-card-human:hover {
        transform: none;
    }

    .promo-card-human .promo-image {
        height: 116px;
        object-fit: cover;
    }

    .promo-card-human .promo-badge {
        top: 8px;
        left: 8px;
        padding: .28rem .42rem;
        font-size: .52rem;
        letter-spacing: .035em;
    }

    .promo-card-human .p-4 {
        padding: 11px !important;
    }

    .promo-card-human h3.fs-2 {
        display: -webkit-box;
        min-height: 38px;
        margin-bottom: .35rem;
        overflow: hidden;
        font-size: 1.12rem !important;
        line-height: 1.05;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .promo-card-human p.text-secondary {
        display: -webkit-box;
        min-height: 34px;
        margin-bottom: .55rem;
        overflow: hidden;
        font-size: .64rem;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .promo-card-human .old-price {
        font-size: .56rem !important;
    }

    .promo-card-human .price {
        margin-top: 1px;
        font-size: 1.4rem;
    }

    .promo-card-human .saving-chip {
        padding: .25rem .35rem;
        font-size: .54rem;
        line-height: 1.15;
        text-align: center;
    }

    .promo-card-human .d-flex.align-items-end.justify-content-between {
        align-items: center !important;
        gap: 5px !important;
    }

    .promo-card-human .d-grid.gap-2.mt-4 {
        gap: 5px !important;
        margin-top: 8px !important;
    }

    .promo-card-human .d-grid .btn {
        min-height: 31px;
        padding: .36rem .25rem;
        border-radius: 8px;
        font-size: .65rem;
    }
}

/* Extremely narrow legacy phones can fall back to one column. */
@media (max-width: 339.98px) {
    .service-showcase .row.g-4,
    .promo-showcase .row.g-4 {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   Homepage problem diagnosis — Option B / isometric workshop
   Visually distinct from service and promotion card sections.
   ========================================================= */
.diagnosis-workshop-section {
    background: linear-gradient(180deg, #f3f4ef 0%, #fff 100%);
}
.diagnosis-workshop-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}
.diagnosis-head-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 360px;
    padding: 13px 15px;
    border: 1px solid #e0e3dc;
    border-radius: 14px;
    background: rgba(255,255,255,.78);
    color: #686f74;
    font-size: .74rem;
    line-height: 1.5;
}
.diagnosis-head-note i {
    margin-top: 1px;
    color: #16804c;
    font-size: 1rem;
}
.diagnosis-workshop-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    overflow: hidden;
    border: 1px solid #dde0d9;
    border-radius: 28px;
    background: #0b0d0f;
    box-shadow: 0 24px 65px rgba(11,13,15,.13);
}
.diagnosis-workshop-visual {
    position: relative;
    display: grid;
    min-height: 535px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 46%, rgba(255,212,0,.12), transparent 34%),
        linear-gradient(145deg, #f8f9f6 0%, #ecefe9 100%);
}
.diagnosis-workshop-visual::before {
    position: absolute;
    right: -95px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    border: 54px solid rgba(255,212,0,.72);
    border-radius: 50%;
    content: "";
}
.diagnosis-workshop-visual > img {
    position: relative;
    z-index: 1;
    width: min(84%, 620px);
    max-height: 410px;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(11,13,15,.14));
}
.diagnosis-visual-kicker {
    position: absolute;
    z-index: 3;
    top: 22px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff;
    color: #34393d;
    box-shadow: 0 7px 22px rgba(11,13,15,.08);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.diagnosis-visual-kicker span {
    width: 20px;
    height: 3px;
    border-radius: 99px;
    background: var(--ah-yellow);
}
.diagnosis-zone {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(11,13,15,.11);
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #17191b;
    box-shadow: 0 8px 22px rgba(11,13,15,.09);
    font-size: .66rem;
    font-weight: 850;
    backdrop-filter: blur(8px);
}
.diagnosis-zone i { color: #b28f00; }
.diagnosis-zone-engine { top: 28%; left: 6%; }
.diagnosis-zone-brake { top: 25%; right: 6%; }
.diagnosis-zone-electrical { bottom: 27%; left: 7%; }
.diagnosis-zone-under { right: 8%; bottom: 25%; }
.diagnosis-visual-caption {
    position: absolute;
    z-index: 4;
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    background: rgba(11,13,15,.88);
    color: #fff;
    backdrop-filter: blur(12px);
}
.diagnosis-caption-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 11px;
    background: var(--ah-yellow);
    color: var(--ah-black);
}
.diagnosis-visual-caption strong { display: block; font-size: .78rem; }
.diagnosis-visual-caption small { display: block; margin-top: 2px; color: rgba(255,255,255,.65); font-size: .63rem; line-height: 1.4; }

.diagnosis-problem-panel {
    padding: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255,212,0,.13), transparent 26%),
        #0b0d0f;
}
.diagnosis-panel-kicker {
    color: var(--ah-yellow);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.diagnosis-problem-panel > h3 {
    margin: 7px 0 20px;
    color: #fff;
    font-size: 2rem;
}
.diagnosis-problem-grid {
    display: grid;
    gap: 8px;
}
.diagnosis-problem-link {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0,1fr) auto 18px;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    color: #fff;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.diagnosis-problem-link:hover {
    border-color: var(--ah-yellow);
    background: var(--ah-yellow);
    color: #111;
    transform: translateX(4px);
}
.diagnosis-problem-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,212,0,.13);
    color: var(--ah-yellow);
    font-size: 1rem;
}
.diagnosis-problem-link:hover .diagnosis-problem-icon {
    background: #111;
    color: var(--ah-yellow);
}
.diagnosis-problem-copy { min-width: 0; }
.diagnosis-problem-copy strong { display: block; font-size: .76rem; line-height: 1.25; }
.diagnosis-problem-copy small {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: rgba(255,255,255,.53);
    font-size: .6rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.diagnosis-problem-link:hover .diagnosis-problem-copy small { color: rgba(0,0,0,.6); }
.diagnosis-problem-no {
    color: rgba(255,255,255,.35);
    font-family: "Barlow Condensed", sans-serif;
    font-size: .68rem;
    font-weight: 900;
}
.diagnosis-problem-link:hover .diagnosis-problem-no { color: rgba(0,0,0,.5); }
.diagnosis-problem-arrow { color: rgba(255,255,255,.55); font-size: .8rem; }
.diagnosis-problem-link:hover .diagnosis-problem-arrow { color: #111; }
.diagnosis-other-problem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.11);
}
.diagnosis-other-problem strong { display: block; font-size: .73rem; }
.diagnosis-other-problem small { display: block; max-width: 240px; margin-top: 2px; color: rgba(255,255,255,.5); font-size: .59rem; line-height: 1.4; }
.diagnosis-other-problem .btn { flex: 0 0 auto; font-size: .7rem; }

@media (max-width: 991.98px) {
    .diagnosis-workshop-head { align-items: flex-start; flex-direction: column; margin-bottom: 24px; }
    .diagnosis-head-note { max-width: 100%; }
    .diagnosis-workshop-shell { grid-template-columns: 1fr; }
    .diagnosis-workshop-visual { min-height: 430px; }
    .diagnosis-workshop-visual > img { width: min(78%, 570px); max-height: 330px; }
    .diagnosis-problem-panel { padding: 28px; }
    .diagnosis-problem-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .diagnosis-problem-link { grid-template-columns: 34px minmax(0,1fr) 16px; min-height: 64px; }
    .diagnosis-problem-no { display: none; }
}

@media (max-width: 575.98px) {
    .diagnosis-workshop-section { padding-top: 46px; padding-bottom: 48px; }
    .diagnosis-workshop-head { gap: 12px; margin-bottom: 16px; }
    .diagnosis-workshop-head .section-title { font-size: 2.35rem; }
    .diagnosis-workshop-head .section-subtitle { font-size: .75rem; line-height: 1.5; }
    .diagnosis-head-note { padding: 10px 11px; border-radius: 10px; font-size: .65rem; }
    .diagnosis-workshop-shell { border-radius: 18px; }
    .diagnosis-workshop-visual { min-height: 285px; }
    .diagnosis-workshop-visual > img { width: 92%; max-height: 220px; transform: translateY(-4px); }
    .diagnosis-visual-kicker { top: 10px; left: 10px; padding: 6px 8px; font-size: .54rem; }
    .diagnosis-zone { padding: 5px 7px; font-size: .54rem; box-shadow: 0 5px 14px rgba(11,13,15,.08); }
    .diagnosis-zone-engine { top: 24%; left: 3%; }
    .diagnosis-zone-brake { top: 22%; right: 3%; }
    .diagnosis-zone-electrical { bottom: 24%; left: 4%; }
    .diagnosis-zone-under { right: 4%; bottom: 23%; }
    .diagnosis-visual-caption { right: 9px; bottom: 9px; left: 9px; gap: 8px; padding: 9px 10px; border-radius: 10px; }
    .diagnosis-caption-icon { width: 30px; height: 30px; flex-basis: 30px; border-radius: 8px; font-size: .8rem; }
    .diagnosis-visual-caption strong { font-size: .63rem; }
    .diagnosis-visual-caption small { display: none; }
    .diagnosis-problem-panel { padding: 18px 12px 14px; }
    .diagnosis-panel-kicker { font-size: .55rem; }
    .diagnosis-problem-panel > h3 { margin: 5px 0 12px; font-size: 1.5rem; }
    .diagnosis-problem-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px; }
    .diagnosis-problem-link {
        grid-template-columns: 31px minmax(0,1fr) 13px;
        gap: 7px;
        min-height: 58px;
        padding: 7px;
        border-radius: 9px;
    }
    .diagnosis-problem-link:hover { transform: none; }
    .diagnosis-problem-icon { width: 30px; height: 30px; border-radius: 8px; font-size: .82rem; }
    .diagnosis-problem-copy strong { display: -webkit-box; overflow: hidden; font-size: .65rem; line-height: 1.2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
    .diagnosis-problem-copy small { display: none; }
    .diagnosis-problem-arrow { font-size: .65rem; }
    .diagnosis-other-problem { align-items: stretch; flex-direction: column; gap: 8px; margin-top: 12px; padding-top: 12px; }
    .diagnosis-other-problem small { max-width: none; }
    .diagnosis-other-problem .btn { width: 100%; min-height: 38px; }
}


/* =========================================================
   Homepage problem story V2
   "Dengar • Rasa • Nampak" interactive symptom explainer
   ========================================================= */
.problem-story-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 94% 7%, rgba(255,212,0,.11), transparent 21%),
        #f3f4ef;
}
.problem-story-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 22px;
}
.problem-story-heading .section-subtitle strong { color: #151719; }

.problem-story-help {
    display: flex;
    width: min(330px,100%);
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid #dfe2da;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(11,13,15,.05);
}
.problem-story-help-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 11px;
    background: var(--ah-yellow);
    color: #111;
}
.problem-story-help strong,
.problem-story-help small { display: block; }
.problem-story-help strong { color: #16191b; font-size: .72rem; line-height: 1.25; }
.problem-story-help small { margin-top: 2px; color: #747a7d; font-size: .6rem; line-height: 1.4; }

.problem-sense-tabs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}
.problem-sense-tabs::-webkit-scrollbar { display: none; }
.problem-sense-tab {
    display: inline-flex;
    min-height: 40px;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border: 1px solid #d8dcd3;
    border-radius: 999px;
    background: rgba(255,255,255,.76);
    color: #5d6468;
    font-size: .67rem;
    font-weight: 850;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}
.problem-sense-tab:hover {
    border-color: #bbbfb7;
    background: #fff;
    color: #111;
    transform: translateY(-1px);
}
.problem-sense-tab.is-active {
    border-color: #111;
    background: #111;
    color: #fff;
}
.problem-sense-tab.is-active i { color: var(--ah-yellow); }

.problem-story-shell {
    display: grid;
    grid-template-columns: minmax(0,1.12fr) minmax(390px,.88fr);
    overflow: hidden;
    border: 1px solid #dce0d7;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(11,13,15,.11);
}

.problem-story-visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #dfe2dc;
}
.problem-story-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: opacity .18s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.problem-story-visual:hover > img { transform: scale(1.04); }
.problem-story-visual > img.is-changing {
    opacity: .35;
    transform: scale(1.06);
}
.problem-story-photo-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.18), transparent 34%),
        linear-gradient(0deg, rgba(0,0,0,.82), transparent 55%);
}
.problem-story-photo-top {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.problem-story-photo-category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: rgba(11,13,15,.66);
    color: #fff;
    font-size: .59rem;
    font-weight: 850;
    letter-spacing: .04em;
    backdrop-filter: blur(10px);
}
.problem-story-photo-category i { color: var(--ah-yellow); }
.problem-story-photo-index {
    color: rgba(255,255,255,.80);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .04em;
}
.problem-story-photo-index > span {
    color: var(--ah-yellow);
    font-size: .92rem;
}
.problem-story-photo-copy {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    color: #fff;
}
.problem-story-photo-copy > span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.63);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.problem-story-photo-copy strong {
    display: block;
    max-width: 92%;
    font-family: var(--font-heading);
    font-size: clamp(2rem,3vw,3.35rem);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.025em;
}
.problem-story-photo-copy small {
    display: block;
    max-width: 500px;
    margin-top: 9px;
    color: rgba(255,255,255,.74);
    font-size: .72rem;
    line-height: 1.5;
}

.problem-story-content {
    display: flex;
    flex-direction: column;
    padding: 29px;
}
.problem-story-mini-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #736200;
    font-size: .57rem;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.problem-story-mini-kicker i {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
    background: #fff6bd;
    color: #111;
}
.problem-story-content-head h3 {
    margin: 9px 0 4px;
    font-size: clamp(2rem,3vw,2.9rem);
    line-height: .96;
}
.problem-story-content-head > p {
    margin: 0;
    color: #737a7e;
    font-size: .73rem;
    line-height: 1.5;
}

.problem-story-block {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e2e5de;
    border-radius: 15px;
    background: #fafbf8;
}
.problem-story-block-title {
    display: flex;
    align-items: center;
    gap: 9px;
}
.problem-story-block-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    background: #111;
    color: var(--ah-yellow);
}
.problem-story-block-title strong,
.problem-story-block-title small { display: block; }
.problem-story-block-title strong { font-size: .69rem; }
.problem-story-block-title small { margin-top: 1px; color: #8a9093; font-size: .52rem; }
.problem-story-experience-list {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}
.problem-story-experience-list li {
    display: grid;
    grid-template-columns: 20px minmax(0,1fr);
    align-items: start;
    gap: 6px;
    color: #4f565a;
    font-size: .65rem;
    line-height: 1.42;
}
.problem-story-experience-list i {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,212,0,.22);
    color: #111;
    font-size: .61rem;
}

.problem-story-related {
    margin-top: 15px;
}
.problem-story-related-label {
    display: block;
    margin-bottom: 7px;
    color: #858b8e;
    font-size: .52rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.problem-story-related-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.problem-story-related-chips > span {
    padding: 6px 8px;
    border: 1px solid #dedfd9;
    border-radius: 8px;
    background: #fff;
    color: #4f5559;
    font-size: .56rem;
    font-weight: 750;
}

.problem-story-alert {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 15px;
    padding: 11px 12px;
    border: 1px solid #e2dfca;
    border-radius: 12px;
    background: #fffbea;
}
.problem-story-alert-icon {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 9px;
    background: #111;
    color: var(--ah-yellow);
}
.problem-story-alert strong,
.problem-story-alert small { display: block; }
.problem-story-alert strong { color: #25282a; font-size: .63rem; }
.problem-story-alert small { margin-top: 2px; color: #72787b; font-size: .55rem; line-height: 1.4; }
.problem-story-alert.is-urgent {
    border-color: #ecd0cd;
    background: #fff4f2;
}
.problem-story-alert.is-urgent .problem-story-alert-icon {
    background: #a52c22;
    color: #fff;
}
.problem-story-alert.is-safety {
    border-color: #eadfc1;
    background: #fff8e5;
}
.problem-story-alert.is-comfort {
    border-color: #d6e4ea;
    background: #f1f9fc;
}

.problem-story-actions {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 17px;
}
.problem-story-actions .btn {
    min-height: 44px;
    padding: 9px 11px;
    font-size: .64rem;
}

.problem-story-selector-wrap {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid #dfe2da;
    border-radius: 17px;
    background: rgba(255,255,255,.78);
}
.problem-story-selector-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.problem-story-selector-label > span {
    color: #2f3436;
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.problem-story-selector-label > small { color: #909699; font-size: .5rem; }
.problem-story-selector {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}
.problem-story-selector::-webkit-scrollbar { display: none; }
.problem-story-choice {
    display: grid;
    grid-template-columns: 32px minmax(100px,1fr) 18px;
    min-width: 170px;
    max-width: 215px;
    flex: 1 0 170px;
    align-items: center;
    gap: 7px;
    padding: 7px;
    border: 1px solid #e1e3dc;
    border-radius: 11px;
    background: #fff;
    color: #303537;
    text-align: left;
    scroll-snap-align: start;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.problem-story-choice:hover {
    border-color: #c3c7be;
    transform: translateY(-1px);
}
.problem-story-choice.is-active {
    border-color: #111;
    background: #111;
    color: #fff;
}
.problem-story-choice[hidden] { display: none !important; }
.problem-story-choice-icon {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: #fff4a5;
    color: #111;
    font-size: .76rem;
}
.problem-story-choice.is-active .problem-story-choice-icon {
    background: var(--ah-yellow);
}
.problem-story-choice-copy { min-width: 0; }
.problem-story-choice-copy small {
    display: block;
    color: #969b9d;
    font-size: .45rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.problem-story-choice-copy strong {
    display: block;
    margin-top: 1px;
    overflow: hidden;
    font-size: .59rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.problem-story-choice.is-active .problem-story-choice-copy small { color: rgba(255,255,255,.49); }
.problem-story-choice-arrow { color: #a0a5a7; font-size: .62rem; }
.problem-story-choice.is-active .problem-story-choice-arrow { color: var(--ah-yellow); }

.problem-story-other {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 12px;
    padding: 13px 15px;
    border-radius: 14px;
    background: #e8eae5;
}
.problem-story-other > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}
.problem-story-other-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    color: #111;
}
.problem-story-other strong,
.problem-story-other small { display: block; }
.problem-story-other strong { color: #2f3436; font-size: .65rem; }
.problem-story-other small { margin-top: 1px; color: #777e81; font-size: .54rem; line-height: 1.4; }
.problem-story-other .btn {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: .59rem;
}

@media (max-width: 991.98px) {
    .problem-story-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
    .problem-story-help { width: 100%; max-width: none; }
    .problem-story-shell { grid-template-columns: 1fr; }
    .problem-story-visual { min-height: 430px; }
    .problem-story-content { padding: 24px; }
    .problem-story-actions { margin-top: 18px; }
}

@media (max-width: 575.98px) {
    .problem-story-section {
        padding-top: 43px;
        padding-bottom: 46px;
    }
    .problem-story-heading { margin-bottom: 13px; }
    .problem-story-heading .section-title {
        font-size: 2.25rem;
        line-height: .96;
    }
    .problem-story-heading .section-subtitle {
        font-size: .72rem;
        line-height: 1.48;
    }
    .problem-story-help {
        gap: 8px;
        padding: 8px 9px;
        border-radius: 10px;
    }
    .problem-story-help-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
        border-radius: 8px;
        font-size: .76rem;
    }
    .problem-story-help strong { font-size: .61rem; }
    .problem-story-help small { font-size: .51rem; }

    .problem-sense-tabs {
        gap: 5px;
        margin-bottom: 9px;
        padding-bottom: 1px;
    }
    .problem-sense-tab {
        min-height: 34px;
        gap: 5px;
        padding: 6px 10px;
        font-size: .58rem;
    }

    .problem-story-shell { border-radius: 17px; }
    .problem-story-visual { min-height: 280px; }
    .problem-story-photo-top {
        top: 9px;
        right: 9px;
        left: 9px;
    }
    .problem-story-photo-category {
        gap: 5px;
        padding: 5px 7px;
        font-size: .49rem;
    }
    .problem-story-photo-index { font-size: .47rem; }
    .problem-story-photo-index > span { font-size: .72rem; }
    .problem-story-photo-copy {
        right: 13px;
        bottom: 13px;
        left: 13px;
    }
    .problem-story-photo-copy > span { margin-bottom: 2px; font-size: .47rem; }
    .problem-story-photo-copy strong {
        max-width: 100%;
        font-size: 2rem;
    }
    .problem-story-photo-copy small {
        max-width: 94%;
        margin-top: 5px;
        font-size: .59rem;
        line-height: 1.4;
    }

    .problem-story-content { padding: 15px 12px 12px; }
    .problem-story-mini-kicker { gap: 5px; font-size: .48rem; }
    .problem-story-mini-kicker i {
        width: 25px;
        height: 25px;
        border-radius: 7px;
        font-size: .67rem;
    }
    .problem-story-content-head h3 {
        margin: 7px 0 3px;
        font-size: 1.9rem;
    }
    .problem-story-content-head > p {
        font-size: .61rem;
        line-height: 1.43;
    }

    .problem-story-block {
        margin-top: 12px;
        padding: 10px;
        border-radius: 11px;
    }
    .problem-story-block-title { gap: 7px; }
    .problem-story-block-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
        border-radius: 8px;
        font-size: .73rem;
    }
    .problem-story-block-title strong { font-size: .59rem; }
    .problem-story-block-title small { font-size: .47rem; }
    .problem-story-experience-list {
        gap: 6px;
        margin-top: 8px;
    }
    .problem-story-experience-list li {
        grid-template-columns: 17px minmax(0,1fr);
        gap: 5px;
        font-size: .56rem;
    }
    .problem-story-experience-list i {
        width: 16px;
        height: 16px;
        font-size: .52rem;
    }

    .problem-story-related { margin-top: 10px; }
    .problem-story-related-label { margin-bottom: 5px; font-size: .46rem; }
    .problem-story-related-chips { gap: 4px; }
    .problem-story-related-chips > span {
        padding: 5px 6px;
        border-radius: 6px;
        font-size: .49rem;
    }

    .problem-story-alert {
        gap: 7px;
        margin-top: 10px;
        padding: 8px;
        border-radius: 9px;
    }
    .problem-story-alert-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        border-radius: 7px;
        font-size: .7rem;
    }
    .problem-story-alert strong { font-size: .55rem; }
    .problem-story-alert small { font-size: .49rem; }

    .problem-story-actions {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-top: 12px;
        padding-top: 0;
    }
    .problem-story-actions .btn {
        min-height: 38px;
        padding: 7px 5px;
        font-size: .53rem;
    }

    .problem-story-selector-wrap {
        margin-top: 8px;
        padding: 8px;
        border-radius: 11px;
    }
    .problem-story-selector-label { margin-bottom: 6px; }
    .problem-story-selector-label > span { font-size: .49rem; }
    .problem-story-selector-label > small { font-size: .44rem; }
    .problem-story-selector { gap: 5px; }
    .problem-story-choice {
        grid-template-columns: 28px minmax(82px,1fr) 13px;
        min-width: 142px;
        max-width: 165px;
        flex-basis: 142px;
        gap: 5px;
        padding: 5px;
        border-radius: 8px;
    }
    .problem-story-choice-icon {
        width: 27px;
        height: 27px;
        border-radius: 7px;
        font-size: .65rem;
    }
    .problem-story-choice-copy small { font-size: .4rem; }
    .problem-story-choice-copy strong { font-size: .51rem; }
    .problem-story-choice-arrow { font-size: .53rem; }

    .problem-story-other {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
        padding: 9px;
        border-radius: 10px;
    }
    .problem-story-other-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
        border-radius: 8px;
        font-size: .7rem;
    }
    .problem-story-other strong { font-size: .57rem; }
    .problem-story-other small { font-size: .49rem; }
    .problem-story-other .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .problem-story-visual > img {
        transition: none !important;
    }
}
