/* ==========================================================================
   01 — FONTS
   ========================================================================== */

@font-face { font-family: 'Poppins'; src: url('/assets/fonts/Poppins-Light.woff2') format('woff2'), url('/assets/fonts/Poppins-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/assets/fonts/Poppins-Regular.woff2') format('woff2'), url('/assets/fonts/Poppins-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/assets/fonts/Poppins-SemiBold.woff2') format('woff2'), url('/assets/fonts/Poppins-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/assets/fonts/Poppins-Bold.woff2') format('woff2'), url('/assets/fonts/Poppins-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face {
    font-family: 'NumberPlate';
    src: url('/assets/fonts/Number-Plate.woff2') format('woff2'),
         url('/assets/fonts/Number-Plate.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   02 — DESIGN TOKENS
   ========================================================================== */

:root {
    /* Brand colours */
    --yh-navy:        #1B274D;
    --yh-navy-dark:   #141e3c;
    --yh-navy-mid:    #243060;
    --yh-gold:        #ffb634;
    --yh-gold-dark:   #e09f1e;
    --yh-amber:       #ed9d1e;
    --yh-white:       #ffffff;
    --yh-ink:         #111a3a;
    --yh-grey-light:  #f5f6fa;
    --yh-grey-mid:    #e8e8e8;
    --yh-grey-text:   #6b7280;
    --yh-green:       #22c55e;
    --yh-red:         #ef4444;

    /* Typography */
    --yh-font:        'Poppins', sans-serif;
    --yh-font-plate:  'NumberPlate', sans-serif;

    /* Layout */
    --yh-max:         1300px;
    --yh-radius:      12px;

    /* Shadows + interactive states */
    --yh-line:        rgba(17,26,58,.12);
    --yh-shadow:      0 12px 30px rgba(0,0,0,.10);
    --yh-focus:       rgba(255,182,52,.40);
    --yh-hover:       rgba(17,26,58,.06);

    /* Backwards-compatibility aliases */
    --yh-bg:          var(--yh-navy);
    --yh-accent:      var(--yh-gold);

    /* Legacy footer / global tokens */
    --gold:           #ffb800;
    --white:          #ffffff;
    --text:           #ffffff;
    --gap:            1.5rem;
    --maxw:           1350px;
    --brand-width:    250px;
    --buy-width:      150px;
    --help-width:     150px;
    --support-width:  100px;
}

/* ==========================================================================
   03 — RESET + BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
    background-color: #ffffff;
    color: var(--yh-ink);
    font-family: var(--yh-font);
    font-weight: 300;
}

a { color: var(--yh-gold); text-decoration: none; }
a:hover { color: var(--yh-gold-dark); }

/* ==========================================================================
   04 — UTILITIES
   ========================================================================== */

/* Screen-reader only */
.sr-only,
.yh-sr {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
    white-space: nowrap;
}

/* ==========================================================================
   05 — TRUST STRIP — shared component (.yh-trust)
   ========================================================================== */

/* Dark navy variant — used on the homepage and any dark-background page */
.yh-trust {
    background: var(--yh-navy-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 1.5rem;
}

.yh-trust__inner {
    max-width: var(--yh-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2.25rem;
}

.yh-trust__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--yh-font);
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.82);
    white-space: nowrap;
}

.yh-trust__tick {
    color: var(--yh-gold);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
}

/* ==========================================================================
   06 — REVIEW CARD — shared component (.yh-review-card)
   ========================================================================== */

.yh-review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--yh-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Tighter + fixed-width in horizontal-scroll context (homepage) */
.hp-reviews__row .yh-review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: 16px;
}

.yh-review-card__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yh-review-card__tick {
    flex-shrink: 0;
    display: flex;
}

.yh-review-card__name {
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yh-ink);
    line-height: 1.3;
}

.yh-review-card__stars {
    display: flex;
    gap: 2px;
    font-size: 1rem;
    line-height: 1;
}

.yh-review-card__text {
    font-family: var(--yh-font);
    font-weight: 300;
    font-size: 0.88rem;
    color: #374151;
    margin: 0;
    line-height: 1.65;
    flex: 1;
}

.yh-review-card__date {
    font-family: var(--yh-font);
    font-weight: 300;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: auto;
}

/* Star ratings — shared by .yh-star and legacy .hp-star */
.yh-star,
.hp-star { display: inline-block; }

.yh-star--full,
.hp-star--full { color: var(--yh-gold); }

.yh-star--half,
.hp-star--half { color: var(--yh-gold); }

.yh-star--empty,
.hp-star--empty { color: #d1d5db; }

/* ==========================================================================
   07 — PROMO BANNER
   ========================================================================== */

.promotional-message-strip {
    position: relative;
    z-index: 1200;
}

.slider {
    width: 100vw;
    height: 37px;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 200vw;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 37px;
    font-family: var(--yh-font);
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    background-color: #111;
}

.slide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin-right: 0.5rem;
}
.slide-icon svg { width: 100%; height: 100%; fill: #fff; }

.slide-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff !important;
}

.slide-img img,
.slide-logo img { display: block; height: 100%; margin-right: 0.5rem; }
.slide-img img  { height: 20px; width: auto; }
.slide-logo img { height: 15px; width: auto; }
.underline { text-decoration: underline; }

/* ==========================================================================
   08 — HEADER
   ========================================================================== */

/* Skip link */
.yh-skip {
    position: absolute;
    left: -9999px;
    top: 10px;
    background: var(--yh-white);
    color: var(--yh-ink);
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(17,26,58,.2);
    box-shadow: var(--yh-shadow);
    z-index: 9999;
}
.yh-skip:focus { left: 10px; }

/* Shell */
.yh-header {
    position: fixed;
    background: var(--yh-navy);
    padding: 10px 16px;
    overflow: visible !important;
    z-index: 1600;
}

.page-home .yh-header { background: #ed9d1e; }
.page-home .yh-link { color: var(--yh-navy); }
.page-home .yh-link:hover,
.page-home .yh-link:focus { background: rgba(0,0,0,0.1); color: var(--yh-navy); }
.yh-header * { box-sizing: border-box; }
.yh-header a { color: inherit; text-decoration: none; }

.yh-inner {
    max-width: var(--yh-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: visible !important;
    position: relative;
}

.yh-logo img { display: block; height: auto; }

/* Nav font */
.yh-nav,
.yh-mnav { font-family: var(--yh-font); }

/* Desktop nav */
.yh-nav { flex: 1; }

.yh-nav__list {
    margin: 0;
    padding: 0;
    margin-top: 10px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.yh-link {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.92);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--yh-font);
}
.yh-link:hover  { background: var(--yh-gold); }
.yh-link:focus  { background: var(--yh-gold); }
.yh-link:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--yh-focus); }

.yh-caret { opacity: .75; margin-left: 6px; }

/* Desktop dropdowns */
.yh-item { position: relative; }

.yh-sub {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 320px;
    background: var(--yh-white);
    border: 1px solid var(--yh-line);
    border-radius: var(--yh-radius);
    box-shadow: var(--yh-shadow);
    padding: 8px;
    display: none;
    z-index: 1700;
}
.yh-item.is-open > .yh-sub { display: block; }

.yh-sub a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    color: rgba(17,26,58,.92);
}
.yh-sub a:hover { background: var(--yh-hover); }

/* Icon pill (right side) */
.yh-pill {
    margin-left: auto;
    display: flex;
    gap: 0;
    padding: 8px 10px;
    background: var(--yh-white);
    border: 1px solid var(--yh-line);
    border-radius: var(--yh-radius);
    box-shadow: var(--yh-shadow);
}

.yh-ico {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    line-height: 0;
    border-radius: 10px;
    color: var(--yh-navy);
}

/* Full button reset — kills all browser defaults */
.yh-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    font: inherit;
    outline: none;
}

/* Search button in pill — force size and icon alignment */
.yh-pill [data-yh-search-btn] {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    margin: 0;
}
.yh-pill [data-yh-search-btn] svg {
    width: 22px;
    height: 22px;
    fill: var(--yh-navy) !important;
}

/* Force all pill icons to navy — overrides inline fill="currentColor" and inheritance */
.yh-pill .yh-ico { color: var(--yh-navy); }
.yh-pill .yh-ico svg { display: block; width: 22px; height: 22px; fill: var(--yh-navy) !important; }
.yh-pill .yh-ico:hover { background: var(--yh-gold); }
.yh-pill .yh-ico:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--yh-focus); }

/* Fallback for .yh-ico outside the pill */
.yh-ico svg { display: block; width: 22px; height: 22px; fill: var(--yh-navy); }
.yh-ico:hover { background: var(--yh-gold); }
.yh-ico:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--yh-focus); }

/* Favourites + Cart — hidden by default, JS shows them */
[data-fav][hidden],
[data-cart][hidden] { display: none !important; }
[data-fav] { position: relative; }
[data-fav].has-favs svg { fill: var(--yh-gold) !important; }
.yh-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    background: var(--yh-red, #ef4444);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    padding: 0 4px;
    pointer-events: none;
}

.yh-hide { display: none; }

/* Mobile menu button — completely hidden on desktop, no space, not clickable */
[data-yh-mobile-btn] {
    display: none !important;
    visibility: hidden;
    width: 0;
    height: 0;
    padding: 0 !important;
    overflow: hidden;
    pointer-events: none;
}

/* Overlay panels */
.yh-panel {
    max-width: var(--yh-max);
    padding: 0 16px;
}

#yh-mobileMenu.yh-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    margin: 0;
}

#yh-search.yh-panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    width: min(560px, calc(100vw - 32px));
    margin: 0;
    padding: 0;
    z-index: 1550;
}

#yh-mobileMenu.yh-panel { z-index: 1550; }

.yh-panel__inner {
    background: #E5E5E5;
    border: 1px solid #C5C5C5;
    border-radius: 0.1em;
    box-shadow: var(--yh-shadow);
    padding: 12px;
    max-height: min(80vh, 640px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Panel animation */
#yh-search.yh-panel[hidden],
#yh-mobileMenu.yh-panel[hidden] {
    display: block;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}
#yh-search.yh-panel.is-open,
#yh-mobileMenu.yh-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .18s ease, transform .18s ease;
}
#yh-search.yh-panel:not(.is-open),
#yh-mobileMenu.yh-panel:not(.is-open) {
    transition: opacity .14s ease, transform .14s ease;
}

/* Search form in panel */
.yh-search { display: flex; gap: 10px; align-items: center; }
.yh-search input {
    flex: 1;
    height: 44px;
    border: 1px solid var(--yh-line);
    border-radius: 10px;
    padding: 0 12px;
    font-size: 16px;
}
.yh-search button {
    height: 56px;
    padding: 0 14px;
    border: 1px solid var(--yh-line);
    border-radius: 10px;
    background: var(--yh-white);
    cursor: pointer;
}
.yh-search button:hover { background: var(--yh-hover); }

/* Mobile */
@media (max-width: 980px) {
    .yh-nav { display: none; }

    /* Restore mobile menu button on small screens */
    [data-yh-mobile-btn] {
        display: grid !important;
        visibility: visible;
        width: 40px;
        height: 40px;
        padding: 0 !important;
        overflow: visible;
        pointer-events: auto;
    }

    .yh-mobileBackdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.25);
        z-index: 1400;
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease;
    }
    .yh-mobileBackdrop.is-on {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Mobile accordion nav */
.yh-mnav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.yh-mtop {
    width: 100%;
    border: 0;
    background: rgba(17,26,58,.04);
    color: rgba(17,26,58,.92);
    padding: 12px 12px;
    border-radius: 10px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: var(--yh-font);
    font-size: 14px;
    margin-top: 5px;
}
.yh-mitem:first-child .yh-mtop { margin-top: 0; }
.yh-mtop:hover { background: rgba(17,26,58,.07); color: rgba(17,26,58,.92); }

.yh-msub { padding: 6px 4px 2px; }
.yh-msub a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 14px;
}
.yh-msub a:hover { background: var(--yh-hover); }

@media (prefers-reduced-motion: reduce) {
    #yh-search.yh-panel,
    #yh-mobileMenu.yh-panel,
    .yh-mobileBackdrop { transition: none !important; }
}

/* Power plate search in header panel — matches homepage search bar */
#yh-search .yw-power-form { width: 100%; max-width: 100%; margin: 0; }

#yh-search .yw-power-field {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    align-items: stretch;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

#yh-search .yw-power-input {
    min-width: 0;
    box-sizing: border-box;
    height: clamp(52px, 10vw, 66px);
    border: 0;
    outline: none;
    background: #fff;
    padding: 0 1rem;
    font-family: var(--yh-font-plate), var(--yh-font);
    font-size: clamp(1.3rem, 4vw, 2rem);
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: var(--yh-ink);
    width: 100%;
}
#yh-search .yw-power-input::placeholder {
    color: rgba(17,26,58,0.3);
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 1px;
}

#yh-search .yw-power-btn {
    border: 0;
    background: var(--yh-amber);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
    min-width: 58px;
    color: var(--yh-navy);
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: background 0.15s ease;
}
#yh-search .yw-power-btn:hover { background: #d68a0f; }

#yh-search .yw-power-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--yh-navy);
    display: block;
    flex-shrink: 0;
}

#yh-search .yw-tip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    background: var(--yh-navy);
    color: #fff;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    width: max-content;
    max-width: 240px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
    z-index: 9999;
}
#yh-search .yw-tip.is-on { opacity: 1; }
#yh-search .yw-tip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent var(--yh-navy) transparent;
}

/* ==========================================================================
   09 — FOOTER
   ========================================================================== */

.yw_site-footer {
    background-color: var(--yh-navy);
    color: var(--text);
    padding: var(--gap);
    padding-top: 60px;
    font-family: var(--yh-font);
    font-weight: 200;
}

.footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.yw_site-footer img { display: block; width: auto; height: auto; }

/* Brand */
.footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.footer__brand .logo { max-width: 180px; width: 100%; margin: 0 0 -10px; }
.footer__brand p { margin: 0; }
.footer__brand strong a { text-decoration: none; }
.ft-social__heading { font-size: 1.125rem; color: var(--white); text-decoration: none; }
.ft-social__sub { font-size: 0.875rem; }

/* Social */
.footer__social { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; align-items: center; justify-content: flex-start; }
.footer__social li { display: block; }
.footer__social a { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; }
.footer__social svg { width: 100%; height: 100%; fill: var(--white); }

/* Payment logos */
.footer__payments { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; padding-bottom: 40px; }
.payment { width: auto; height: auto; object-fit: contain; }
.payment--visa       { max-height: 30px; }
.payment--mastercard { max-height: 20px; }
.payment--paypal     { max-height: 12px; }
.payment--gpay       { max-height: 18px; }
.payment--applepay   { max-height: 15px; filter: invert(1) brightness(1.2); }
.payment--ssl        { max-height: 30px; }
.payment--pci        { max-height: 46px; }

@media (max-width: 767px) {
    .footer__brand  { align-items: center; }
    .footer__social { justify-content: center; }
    .payment--visa       { max-height: 30px; }
    .payment--mastercard { max-height: 15px; }
    .payment--paypal     { max-height: 10px; }
    .payment--gpay       { max-height: 15px; }
    .payment--applepay   { max-height: 12px; }
    .payment--ssl        { max-height: 25px; }
    .payment--pci        { max-height: 38px; }
}

/* Nav columns */
.footer__nav { display: flex; flex-direction: column; gap: var(--gap); }
.nav-section { flex: 1 1 auto; }
.nav-section h3 { margin: 1rem 0 0.5rem; color: var(--gold); font-size: .95rem; text-transform: uppercase; }
.footer__nav-subheading { margin: 1.5rem 0 0.5rem; }
.nav-section h3 a { color: var(--gold) !important; text-decoration: none; }
.nav-section ul { list-style: none; margin: 0; padding: 0; }
.nav-section li + li { margin-top: 0.15em; }
.nav-section a { color: var(--white); text-decoration: none; font-size: .9rem; line-height: 1.8; }
.nav-section a:hover { text-decoration: underline; }

.footer__legal { font-size: .75rem; color: #ffffff; text-align: center; margin-top: var(--gap); line-height: 1.4; padding-top: 60px; }

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer__brand        { flex: 1 1 var(--brand-width); padding: 0 20px 0 0; }
    .footer__nav          { flex: 3 1 600px; flex-direction: row; }
    .nav-section--buy     { flex: 1 1 var(--buy-width); }
    .nav-section--help    { flex: 1 1 var(--help-width); }
    .nav-section--support { flex: 1 1 var(--support-width); }
}

@media (max-width: 767px) {
    .footer__brand img { align-items: center; text-align: center; }
    .footer__social    { justify-content: center; }
    .footer__payments  { justify-content: center; }
    .footer__inner     { align-items: center; text-align: center; }
    .footer__nav       { width: 100%; align-items: center; }
    .nav-section       { width: 100%; }
    .nav-section--buy     { padding-bottom: 30px; }
    .nav-section--help    { padding-bottom: 30px; }
    .nav-section--support { padding-bottom: 20px; }
}

/* ==========================================================================
   10 — HOMEPAGE
   ========================================================================== */

/* Hero
   ========================================================================== */

/* === HOMEPAGE HERO === */
.hp-hero {
    background: var(--yh-amber);
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

.hp-hero__wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-end;
    position: relative;
    min-height: 420px;
}

.hp-hero__card {
    background: var(--yh-navy);
    border-radius: 14px;
    padding: 20px 40px 40px;
    max-width: 620px;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin: 40px 0;
    box-shadow: 3px 3px 8px 0 rgba(0,0,0,0.75);
}

.hp-hero__h1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hp-hero__h1-light {
    font-size: 1.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    font-family: var(--yh-font);
}

.hp-hero__h1-bold {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--yh-font);
}

.hp-hero__sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.6;
    font-family: var(--yh-font);
}

/* Car — absolutely positioned, right side, bottom-aligned */
.hp-hero__car {
    position: absolute;
    right: -150px;
    bottom: 0;
    width: 80%;
    max-width: 820px;
    z-index: 1;
    pointer-events: none;
}

.hp-hero__car-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
}

/* Search bar — white input, readable on navy card */
.hp-hero__form {
    width: 100%;
    margin: 0 0 0;
}

.hp-hero__field {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hp-hero__input {
    border: 0;
    outline: none;
    background: #fff;
    font-family: var(--yh-font-plate), var(--yh-font);
    font-size: clamp(1.3rem, 4vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: 0 1rem;
    height: clamp(52px, 10vw, 66px);
    width: 100%;
    min-width: 0;
    color: var(--yh-ink);
}

.hp-hero__input::placeholder {
    color: rgba(17,26,58,0.3);
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 1px;
}

.hp-hero__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--yh-amber);
    border: 0;
    cursor: pointer;
    padding: 0 1.25rem;
    color: var(--yh-navy);
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: background 0.15s ease;
    min-width: 58px;
}
.hp-hero__btn:hover { background: #d68a0f; }
.hp-hero__btn svg { width: 20px; height: 20px; fill: var(--yh-navy); flex-shrink: 0; }
.hp-hero__btn-text { display: none; }

@media (min-width: 480px) {
    .hp-hero__btn-text { display: inline; }
    .hp-hero__btn { padding: 0 2rem; }
}

.hp-hero__error {
    font-family: var(--yh-font);
    font-size: 0.85rem;
    color: var(--yh-gold);
    margin: 0.5rem 0 0;
    text-align: left;
}

/* Suggestion chips — inside navy card */
.hp-hero__chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    margin-top: 10px;
}

.hp-hero__chips-label {
    font-family: var(--yh-font);
    font-weight: 400;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-right: 0.1rem;
}

.hp-chip {
    appearance: none;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    font-family: var(--yh-font-plate), var(--yh-font);
    font-size: 0.82rem;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
    min-height: 28px;
}
.hp-chip:hover {
    background: var(--yh-gold);
    border-color: var(--yh-gold);
    color: var(--yh-ink);
}

/* Tablet */
@media (max-width: 1024px) {
    .hp-hero__car { width: 100%; right: -220px; }
    .hp-hero__card { max-width: 440px; padding: 32px 32px; }
    .hp-hero__h1-bold { font-size: 2.2rem; }
    .hp-hero__h1-light { font-size: 1.6rem; }
}

/* Tablet portrait — stack layout, car below card */
@media (max-width: 900px) {
    .hp-hero__wrap {
        flex-direction: column;
        align-items: stretch;
        min-height: unset;
        padding-bottom: 0;
    }
    .hp-hero__card {
        max-width: 95%;
        margin: 24px 0 0;
        border-radius: 12px;
    }
    .hp-hero__car {
        position: relative;
        right: -125px;
        margin-top: -100px;
        bottom: auto;
        z-index: 9;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hp-hero__wrap { padding: 0 16px; }
    .hp-hero__card { padding: 24px 20px; margin: 20px 0 0; }
    .hp-hero__h1-bold { font-size: 1.8rem; }
    .hp-hero__h1-light { font-size: 1.4rem; }
    .hp-hero__car {
        position: relative;
        right: -125px;
        margin-top: -50px;
        bottom: auto;
        z-index: 9;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    .hp-hero__car-img { width: 400px; }
    .hp-hero__chips { justify-content: center; }
}

/* Feature cards
   ========================================================================== */

.hp-features {
    background: var(--yh-grey-light);
    padding: 4.5rem 1.5rem;
}

.hp-features__inner {
    max-width: var(--yh-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) { .hp-features__inner { grid-template-columns: repeat(3, 1fr); } }

.hp-feat-card {
    background: #fff;
    border-radius: var(--yh-radius);
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(17,26,58,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hp-feat-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(27,39,77,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yh-navy);
    flex-shrink: 0;
    margin-bottom: 0.35rem;
}
.hp-feat-card__icon svg { width: 26px; height: 26px; }

.hp-feat-card__h { font-family: var(--yh-font); font-weight: 700; font-size: 1.1rem; color: var(--yh-ink); margin: 0; }
.hp-feat-card__p { font-family: var(--yh-font); font-weight: 300; font-size: 0.9rem; color: #4a5568; margin: 0; line-height: 1.65; }

/* Browse by style
   ========================================================================== */

.hp-styles { background: #fff; padding: 4.5rem 1.5rem; }
.hp-styles__inner { max-width: var(--yh-max); margin: 0 auto; }

.hp-styles__h {
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--yh-ink);
    text-align: center;
    margin: 0 0 0.5rem;
}

.hp-styles__sub {
    font-family: var(--yh-font);
    font-weight: 300;
    font-size: 1rem;
    color: var(--yh-grey-text);
    text-align: center;
    margin: 0 0 2.5rem;
}

.hp-styles__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .hp-styles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .hp-styles__grid { grid-template-columns: repeat(4, 1fr); } }

/* Plate graphic */
.hp-plate {
    font-family: var(--yh-font-plate);
    font-size: clamp(1.3rem, 3vw, 1.65rem);
    letter-spacing: 2px;
    text-align: center;
    padding: 1.35rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    min-height: 72px;
    border-bottom: 3px solid #333;
}
.hp-plate--front { background: #fff;    border: 2.5px solid #333; border-bottom: 3px solid #333; }
.hp-plate--rear  { background: #ffd500; border: 2.5px solid #333; border-bottom: 3px solid #333; }

.hp-style-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--yh-radius);
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    color: inherit;
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.hp-style-card:hover {
    box-shadow: 0 8px 30px rgba(17,26,58,0.13);
    border-color: var(--yh-gold);
    transform: translateY(-3px);
    color: inherit;
}

.hp-style-card__body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.hp-style-card__h { font-family: var(--yh-font); font-weight: 700; font-size: 1rem; color: var(--yh-ink); margin: 0; }
.hp-style-card__p { font-family: var(--yh-font); font-weight: 300; font-size: 0.82rem; color: var(--yh-grey-text); margin: 0; line-height: 1.55; flex: 1; }

.hp-style-card__cta {
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--yh-navy);
    display: inline-block;
    margin-top: 0.25rem;
    transition: color 0.15s;
}
.hp-style-card:hover .hp-style-card__cta { color: #b07d00; }

/* === HOMEPAGE DUAL CTA === */
.hp-cta { background: var(--yh-gold); padding: 80px 0; }
.hp-cta__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; }
.hp-cta__buy { padding: 48px 60px 48px 0; }
.hp-cta__sell { padding: 48px 0 48px 60px; }
.hp-cta__divider { width: 1px; background: rgba(27,39,77,0.2); align-self: stretch; margin: 0 20px; }
.hp-cta__heading { color: var(--yh-navy); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.hp-cta__sub { color: rgba(27,39,77,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.hp-cta__btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.15s; }
.hp-cta__btn--buy { background: var(--yh-navy); color: #fff; }
.hp-cta__btn--buy:hover { background: var(--yh-navy-dark); }
.hp-cta__btn--sell { background: transparent; color: var(--yh-navy); border: 2px solid rgba(27,39,77,0.4); }
.hp-cta__btn--sell:hover { border-color: var(--yh-navy); background: rgba(27,39,77,0.05); }
@media (max-width: 768px) {
    .hp-cta__inner { grid-template-columns: 1fr; }
    .hp-cta__divider { width: 100%; height: 1px; margin: 0; align-self: auto; background: rgba(27,39,77,0.2); }
    .hp-cta__buy { padding: 0 0 40px 0; }
    .hp-cta__sell { padding: 40px 0 0 0; }
}

/* === HOMEPAGE HOW IT WORKS === */
.hp-how { background: var(--yh-navy); padding: 80px 20px; }
.hp-how__heading { color: #fff; font-family: var(--yh-font); font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.hp-how__sub { color: rgba(255,255,255,0.6); font-family: var(--yh-font); font-size: 0.875rem; margin-bottom: 12px; }
.hp-how__desc { color: rgba(255,255,255,0.8); font-family: var(--yh-font); font-size: 0.95rem; line-height: 1.7; max-width: 700px; margin-bottom: 12px; }
.hp-how__link { color: var(--yh-gold); font-family: var(--yh-font); font-size: 0.875rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 48px; }
.hp-how__link:hover { text-decoration: underline; }
.hp-how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hp-how__card { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 28px 24px 24px; display: flex; flex-direction: column; }
.hp-how__step { font-family: var(--yh-font); font-size: 0.75rem; font-weight: 700; color: var(--yh-gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.hp-how__title { color: #fff; font-family: var(--yh-font); font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.hp-how__body { color: rgba(255,255,255,0.7); font-family: var(--yh-font); font-size: 0.875rem; line-height: 1.7; flex: 1; margin-bottom: 24px; }
.hp-how__btn { display: block; background: var(--yh-gold); color: var(--yh-navy); font-family: var(--yh-font); font-weight: 700; font-size: 0.875rem; padding: 12px 16px; border-radius: 8px; text-align: center; text-decoration: none; transition: background 0.15s; margin-top: auto; }
.hp-how__btn:hover { background: #d68a0f; }
@media (max-width: 900px) { .hp-how__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hp-how__grid { grid-template-columns: 1fr; } .hp-how__heading { font-size: 1.6rem; } }

/* === HOMEPAGE PITCH (amber) === */
.hp-pitch { background: var(--yh-amber); padding: 80px 20px; overflow: hidden; }
.hp-pitch__inner { display: flex; align-items: center; gap: 40px; }
.hp-pitch__content { flex: 1; }
.hp-pitch__heading { font-family: var(--yh-font); font-size: 2rem; font-weight: 800; color: var(--yh-navy); margin-bottom: 20px; line-height: 1.2; }
.hp-pitch__body { color: var(--yh-navy); font-family: var(--yh-font); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; opacity: 0.85; }
.hp-pitch__body strong { opacity: 1; font-weight: 700; }
.hp-pitch__image { flex: 1; display: flex; justify-content: flex-end; align-items: flex-end; }
.hp-pitch__image img { max-width: 100%; height: auto; }
@media (max-width: 768px) { .hp-pitch__inner { flex-direction: column; } .hp-pitch__image { width: 100%; } .hp-pitch__heading { font-size: 1.6rem; } }

/* === HOMEPAGE NEWS === */
.hp-news { background: var(--yh-navy); padding: 80px 20px; }
.hp-news__heading { color: #fff; font-family: var(--yh-font); font-size: 2rem; font-weight: 800; margin-bottom: 40px; }
.hp-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.hp-news__card { text-decoration: none; display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.05); transition: transform 0.15s; }
.hp-news__card:hover { transform: translateY(-3px); }
.hp-news__image { position: relative; height: 200px; overflow: hidden; background: rgba(255,255,255,0.03); }
.hp-news__image img { width: 100%; height: 100%; object-fit: cover; }
.hp-news__image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); }
.hp-news__logo { position: absolute; bottom: 10px; left: 12px; opacity: 0.9; }
.hp-news__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.hp-news__title { color: #fff; font-family: var(--yh-font); font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.hp-news__excerpt { color: rgba(255,255,255,0.6); font-family: var(--yh-font); font-size: 0.875rem; line-height: 1.6; margin-bottom: 12px; flex: 1; }
.hp-news__cta { color: var(--yh-gold); font-family: var(--yh-font); font-size: 0.875rem; font-weight: 700; }
.hp-news__all { color: var(--yh-gold); font-family: var(--yh-font); font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.hp-news__all:hover { text-decoration: underline; }
@media (max-width: 768px) { .hp-news__grid { grid-template-columns: 1fr; } .hp-news__heading { font-size: 1.6rem; } }

/* Reviews section
   ========================================================================== */

.hp-reviews { background: #ffffff; padding: 60px 20px; }
.hp-reviews__inner { max-width: var(--yh-max); margin: 0 auto; }

.hp-reviews__header { display: flex; justify-content: center; margin-bottom: 1.5rem; }

.hp-reviews__badge { display: flex; align-items: center; gap: 14px; }
.hp-reviews__badge-text { display: flex; flex-direction: column; gap: 2px; }
.hp-reviews__badge-line1 { display: flex; align-items: center; gap: 6px; }

.hp-reviews__badge-label { font-family: var(--yh-font); font-weight: 600; font-size: 1rem; color: var(--yh-ink); line-height: 1.2; }
.hp-reviews__badge-stars { font-size: 1.3rem; color: var(--yh-gold); letter-spacing: 2px; line-height: 1; }

.hp-reviews__badge-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--yh-font);
    font-weight: 300;
    font-size: 0.75rem;
    color: var(--yh-grey-text);
    line-height: 1.2;
}

.hp-reviews__h {
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--yh-ink);
    text-align: center;
    margin: 0 0 2rem;
    line-height: 1.2;
}

/* Horizontal scroll row */
.hp-reviews__row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scrollbar-width: none;
}
.hp-reviews__row::-webkit-scrollbar { display: none; }

.hp-reviews__footer { text-align: center; margin-top: 1.75rem; }

.hp-reviews__all {
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--yh-ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.15s;
}
.hp-reviews__all:hover { color: var(--yh-ink); gap: 0.7rem; }
.hp-reviews__arrow { color: var(--yh-gold); font-size: 1.1rem; }

/* ==========================================================================
   11 — STATIC PAGES — sp- layout system
   ========================================================================== */

/* Body wrapper
   ========================================================================== */

.sp-body { background: #f8f8f8; padding: 56px 24px; }
.sp-body--light { background: #fff; }
.sp-body__inner { max-width: var(--yh-max); margin: 0 auto; }
.sp-body__inner--wide   { max-width: 1200px; }
.sp-body__inner--narrow { max-width: 740px; }

.sp-lead { font-family: var(--yh-font); font-size: 1.08rem; font-weight: 400; line-height: 1.75; color: var(--yh-ink); margin-bottom: 2rem; }

.sp-body h2 { font-family: var(--yh-font); font-weight: 700; font-size: 1.5rem; color: var(--yh-ink); margin: 2.5rem 0 0.75rem; }
.sp-body h2:first-child,
.sp-body__inner > h2:first-child { margin-top: 0; }

.sp-body p { font-family: var(--yh-font); font-size: 0.97rem; line-height: 1.75; color: #374151; margin: 0 0 1rem; }
.sp-body a { color: var(--yh-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.sp-body a:hover { color: var(--yh-gold); }

/* Delivery notes
   ========================================================================== */

.sp-list { margin: 0; padding: 0 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.sp-list li { font-family: var(--yh-font); font-size: 0.95rem; line-height: 1.65; color: #374151; }

/* FAQ
   ========================================================================== */

/* Reviews grid (reviews page)
   ========================================================================== */

.sp-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    padding: 8px 18px 8px 10px;
    margin-bottom: 1.5rem;
}
.sp-reviews-badge__line1 { display: flex; align-items: center; gap: 6px; }
.sp-reviews-badge__label { font-family: var(--yh-font); font-weight: 600; font-size: 0.9rem; color: #fff; }
.sp-reviews-badge__stars { font-size: 1rem; color: var(--yh-gold); letter-spacing: 1px; }
.sp-reviews-badge__verified { display: flex; align-items: center; gap: 4px; font-family: var(--yh-font); font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

.sp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .sp-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sp-reviews-grid { grid-template-columns: 1fr; } }

.sp-empty { font-family: var(--yh-font); font-size: 1rem; color: #9ca3af; text-align: center; padding: 3rem 0; }

.sp-reviews-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2rem; }
@media (max-width: 700px) { .sp-reviews-cta-row { grid-template-columns: 1fr; } }

.sp-reviews-cta-box,
.sp-reviews-leave-box { background: var(--yh-navy); border-radius: var(--yh-radius); padding: 32px; }

.sp-reviews-cta-box h2,
.sp-reviews-leave-box h2 { font-family: var(--yh-font); font-weight: 700; font-size: 1.2rem; color: var(--yh-white); margin: 0 0 0.5rem; }

.sp-reviews-cta-box p,
.sp-reviews-leave-box p { font-family: var(--yh-font); font-size: 0.92rem; color: rgba(255,255,255,0.72); margin: 0 0 1.25rem; line-height: 1.65; }

.sp-cta-box__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Contact grid
   ========================================================================== */

.sp-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .sp-contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sp-contact-grid { grid-template-columns: 1fr; } }

.sp-contact-card { background: #fff; border: 1px solid #e8e8e8; border-radius: var(--yh-radius); padding: 24px 20px; display: flex; flex-direction: column; gap: 6px; }
.sp-contact-card__icon { width: 40px; height: 40px; background: rgba(255,182,52,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; color: var(--yh-gold); fill: var(--yh-gold); }
.sp-contact-card__h { font-family: var(--yh-font); font-weight: 700; font-size: 1rem; color: var(--yh-ink); margin: 0; }
.sp-contact-card__p { font-family: var(--yh-font); font-size: 0.82rem; color: var(--yh-grey-text); margin: 0; }
.sp-contact-card__link { font-family: var(--yh-font); font-weight: 600; font-size: 0.95rem; color: var(--yh-ink); text-decoration: none; margin-top: auto; word-break: break-all; }
.sp-contact-card__link:hover { color: var(--yh-gold); }
.sp-contact-card__address { font-family: var(--yh-font); font-size: 0.9rem; line-height: 1.65; color: var(--yh-ink); font-style: normal; }

.sp-contact-social { border-top: 1px solid #e8e8e8; padding-top: 2.5rem; text-align: center; }
.sp-contact-social__h { font-family: var(--yh-font); font-weight: 700; font-size: 1.3rem; color: var(--yh-ink); margin: 0 0 0.4rem; }
.sp-contact-social__p { font-family: var(--yh-font); font-size: 0.95rem; color: var(--yh-grey-text); margin: 0 0 1.25rem; }
.sp-contact-social__links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.sp-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yh-ink);
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px 18px;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}
.sp-social-btn:hover { border-color: var(--yh-gold); color: var(--yh-ink); }

/* About us grids
   ========================================================================== */

.sp-mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 1.5rem 0 2rem; }
@media (max-width: 700px) { .sp-mission-grid { grid-template-columns: 1fr; } }

.sp-mission-card { background: #fff; border: 1px solid #e8e8e8; border-radius: var(--yh-radius); padding: 24px; }
.sp-mission-card h3 { font-family: var(--yh-font); font-weight: 700; font-size: 1rem; color: var(--yh-ink); margin: 0 0 0.5rem; }
.sp-mission-card p  { font-family: var(--yh-font); font-size: 0.9rem; line-height: 1.65; color: #374151; margin: 0; }

.sp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 1.5rem 0 2rem; }
@media (max-width: 900px) { .sp-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sp-why-grid { grid-template-columns: 1fr; } }

.sp-why-item { display: flex; flex-direction: column; gap: 8px; padding: 20px; background: #fff; border-radius: var(--yh-radius); border: 1px solid #e8e8e8; }
.sp-why-item__icon { width: 36px; height: 36px; color: var(--yh-gold); }
.sp-why-item h3 { font-family: var(--yh-font); font-weight: 700; font-size: 0.97rem; color: var(--yh-ink); margin: 0; }
.sp-why-item p  { font-family: var(--yh-font); font-size: 0.88rem; line-height: 1.6; color: #374151; margin: 0; }

.sp-cta-box { background: var(--yh-navy); border-radius: var(--yh-radius); padding: 40px 36px; margin: 2.5rem 0; }
.sp-cta-box h2 { font-family: var(--yh-font); font-weight: 700; font-size: 1.5rem; color: var(--yh-gold); margin: 0 0 0.75rem; }
.sp-cta-box p  { font-family: var(--yh-font); font-size: 0.97rem; line-height: 1.7; color: rgba(255,255,255,0.8); margin: 0 0 0.5rem; }

/* Shared buttons
   ========================================================================== */

.sp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
    line-height: 1;
}
.sp-btn--primary { background: var(--yh-gold); color: var(--yh-ink); }
.sp-btn--primary:hover { opacity: 0.88; }
.sp-btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.sp-btn--outline:hover { border-color: rgba(255,255,255,0.9); color: #fff; }

/* Legal note
   ========================================================================== */

.sp-legal-note { font-family: var(--yh-font); font-size: 0.75rem; line-height: 1.6; color: rgba(255,255,255,0.5); margin: 0; }
.sp-body .sp-legal-note { color: #9ca3af; font-size: 0.8rem; padding-top: 1.5rem; border-top: 1px solid #e8e8e8; margin-top: 2rem; }

/* Legal document (terms/privacy/modern slavery)
   ========================================================================== */

.sp-legal-doc h2 {
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--yh-ink);
    margin: 2.5rem 0 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e8e8e8;
}
.sp-legal-doc h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.sp-legal-doc h3 { font-family: var(--yh-font); font-weight: 700; font-size: 1.05rem; color: var(--yh-ink); margin: 1.75rem 0 0.5rem; }
.sp-legal-doc h4 { font-family: var(--yh-font); font-weight: 600; font-size: 0.97rem; color: var(--yh-ink); margin: 1.25rem 0 0.4rem; }
.sp-legal-doc p  { font-family: var(--yh-font); font-size: 0.95rem; line-height: 1.8; color: #374151; margin: 0 0 1rem; }
.sp-legal-doc a  { color: var(--yh-ink); font-weight: 600; text-underline-offset: 2px; }
.sp-legal-doc a:hover { color: var(--yh-gold); }
.sp-legal-doc ul,
.sp-legal-doc ol { margin: 0.5rem 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; }
.sp-legal-doc li { font-family: var(--yh-font); font-size: 0.95rem; line-height: 1.75; color: #374151; }

/* Cookies table
   ========================================================================== */

.sp-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border-radius: var(--yh-radius); border: 1px solid #e8e8e8; }
.sp-table { width: 100%; border-collapse: collapse; font-family: var(--yh-font); font-size: 0.88rem; }
.sp-table thead { background: var(--yh-navy); }
.sp-table th { font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.85); text-align: left; padding: 11px 16px; letter-spacing: 0.03em; }
.sp-table td { padding: 11px 16px; color: #374151; border-top: 1px solid #f0f0f0; line-height: 1.55; vertical-align: top; }
.sp-table tr:nth-child(even) td { background: #fafafa; }

/* ==========================================================================
   12 — SEARCH RESULTS — full rewrite
   ========================================================================== */

/* ── Hero ── */
.sr-hero {
    background: var(--yh-navy);
    padding: 48px 20px 40px;
}
.sr-hero__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.sr-hero__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--yh-white);
    line-height: 1.15;
    margin-bottom: 10px;
}
.sr-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
}
.sr-hero__sub-link {
    color: var(--yh-white);
    text-decoration: underline;
    text-decoration-color: var(--yh-gold);
    text-underline-offset: 3px;
    font-weight: 500;
}
.sr-hero__sub-link:hover { color: var(--yh-gold); }
.sr-hero__help-btn {
    background: var(--yh-gold);
    color: var(--yh-navy);
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.sr-hero__help-btn:hover { background: var(--yh-gold-dark); }

/* Search bar */
.sr-search__form { width: 100%; }
.sr-search__inner {
    display: flex;
    background: var(--yh-white);
    border-radius: 12px;
    overflow: hidden;
    height: 68px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.sr-search__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 28px;
    font-family: var(--yh-font-plate);
    font-size: 2rem;
    color: var(--yh-navy);
    background: transparent;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.sr-search__input::placeholder {
    font-family: var(--yh-font);
    font-size: 1rem;
    color: var(--yh-grey-text);
    letter-spacing: 0;
    text-transform: none;
}
.sr-search__btn {
    background: var(--yh-navy-dark);
    color: var(--yh-white);
    border: none;
    padding: 0 32px;
    font-family: var(--yh-font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.sr-search__btn:hover { background: var(--yh-gold); color: var(--yh-navy); }

/* ── Trust strip ── */
.sr-trust {
    background: var(--yh-white);
    border-bottom: 1px solid var(--yh-grey-mid);
    padding: 20px 0;
}
.sr-trust__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    justify-content: center;
}
.sr-trust__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--yh-navy);
}
.sr-trust__item svg { color: #34A853; flex-shrink: 0; }
.sr-trust__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sr-trust__rating-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sr-trust__rated {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yh-navy);
}
.sr-trust__stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.sr-trust__verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--yh-grey-text);
}

/* ── Results sections ── */
.sr-results { padding: 40px 20px; }
.sr-results--white { background: var(--yh-white); }
.sr-results--grey { background: var(--yh-grey-light); }

.sr-results__heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sr-results__star { font-size: 1rem; }
.sr-results__list {
    display: flex;
    flex-direction: column;
}

/* ── Plate row ── */
.sr-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--yh-grey-mid);
}
.sr-row:last-child { border-bottom: none; }

.sr-row__plate {
    flex-shrink: 0;
    width: 220px;
}
.sr-row__plate .yw-pl__plate {
    font-size: 2.5rem;
    line-height: 1em;
    padding: 8px 12px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}

.sr-row__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--yh-navy);
    min-width: 120px;
    flex-shrink: 0;
}

.sr-row__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.sr-row__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.sr-row__btn--paylater {
    background: #0070E0;
    color: var(--yh-white);
}
.sr-row__btn--paylater:hover { background: #005bb5; }
.sr-row__btn--buy {
    background: var(--yh-gold);
    color: var(--yh-navy);
}
.sr-row__btn--buy:hover { background: var(--yh-gold-dark); }

.sr-row__heart {
    background: none;
    border: 1.5px solid var(--yh-grey-mid);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--yh-grey-text);
    transition: all 0.2s;
    flex-shrink: 0;
}
.sr-row__heart:hover,
.sr-row__heart.saved {
    border-color: var(--yh-gold);
    color: var(--yh-gold);
}
.sr-row__heart.saved svg { fill: var(--yh-gold); }

.sr-row__plate-link { text-decoration: none; display: block; }
.sr-row__plate-link:hover .yw-pl__plate {
    background: var(--yh-gold);
    border-color: #c88a00;
    color: var(--yh-navy);
}
.sr-row__price-link {
    text-decoration: none;
    color: var(--yh-navy);
    font-weight: 700;
    font-size: 1.15rem;
}
.sr-row__price-link:hover { color: var(--yh-gold-dark); }

/* ── No results ── */
.sr-no-results {
    text-align: center;
    padding: 60px 20px;
}
.sr-no-results__heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin-bottom: 12px;
}
.sr-no-results__sub {
    color: var(--yh-grey-text);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}
.sr-no-results__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.sr-no-results__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.sr-no-results__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.sr-no-results__btn--outline {
    border: 2px solid var(--yh-navy);
    color: var(--yh-navy);
    background: transparent;
}
.sr-no-results__btn--outline:hover {
    background: var(--yh-navy);
    color: var(--yh-white);
}
.sr-no-results__btn--gold {
    background: var(--yh-gold);
    color: var(--yh-navy);
    border: 2px solid var(--yh-gold);
}
.sr-no-results__btn--gold:hover { background: var(--yh-gold-dark); border-color: var(--yh-gold-dark); }

/* ── Breadcrumb ── */
.sr-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.sr-hero__bc-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}
.sr-hero__bc-link:hover { color: var(--yh-gold); }
.sr-hero__bc-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}
.sr-hero__bc-current {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ── Advanced search ── */
.sr-advanced {
    background: var(--yh-grey-light);
    padding: 56px 0;
}
.sr-advanced__heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--yh-navy);
    text-align: center;
    margin-bottom: 36px;
}
.sr-advanced__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sr-advanced__card {
    background: var(--yh-white);
    border-radius: var(--yh-radius);
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(27,39,77,0.06);
}
.sr-advanced__card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin-bottom: 16px;
}
.sr-advanced__steps {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.sr-advanced__step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--yh-grey-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sr-advanced__inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sr-adv-input {
    border: 1.5px solid var(--yh-grey-mid);
    border-radius: 8px;
    padding: 10px 12px;
    font-family: var(--yh-font-plate);
    font-size: 1.1rem;
    color: var(--yh-navy);
    text-align: center;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s;
}
.sr-adv-input:focus { border-color: var(--yh-navy); }
.sr-adv-input--xs { width: 52px; }
.sr-adv-input--sm { width: 68px; }
.sr-adv-input--md { width: 88px; }
.sr-adv-select {
    border: 1.5px solid var(--yh-grey-mid);
    border-radius: 8px;
    padding: 10px 8px;
    font-family: var(--yh-font);
    font-size: 0.875rem;
    color: var(--yh-navy);
    background: var(--yh-white);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    max-width: 90px;
}
.sr-adv-select:focus { border-color: var(--yh-navy); }
.sr-adv-btn {
    background: var(--yh-navy);
    color: var(--yh-white);
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.sr-adv-btn:hover { background: var(--yh-gold); color: var(--yh-navy); }

/* Mobile */
@media (max-width: 768px) {
    .sr-hero__inner { flex-direction: column; }
    .sr-hero__help-btn { display: none !important; }
    .sr-search__input { font-size: 1.3rem; padding: 0 16px; }
    .sr-search__btn { padding: 0 20px; font-size: 0; }
    .sr-advanced__grid { grid-template-columns: 1fr; padding: 0 20px; }
    .sr-trust__items { display: none; }
    .sr-row {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 10px 12px;
    }
    .sr-row__plate {
        width: 120px;
        flex: 0 0 120px;
    }
    .sr-row__plate .yw-pl__plate {
        width: 100%;
        aspect-ratio: 520 / 111;
        font-size: 1.3rem;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sr-row__price {
        min-width: unset;
        font-size: 0.85rem;
        flex: 1;
        text-align: right;
    }
    .sr-row__actions { width: auto; gap: 6px; }
    .sr-row__btn--paylater { display: none; }
    .sr-row__btn--buy {
        font-size: 0;
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .sr-row__btn--buy::before {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") no-repeat center / contain;
    }
    .sr-row__heart {
        width: 32px;
        height: 32px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .sr-row__plate {
        width: 220px;
        flex: 0 0 220px;
    }
    .sr-row__plate .yw-pl__plate {
        width: 100%;
        aspect-ratio: 520 / 111;
        font-size: 1.6rem;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sr-row__btn--paylater { display: none; }
}

/* ── Advanced search forms ── */
.sr-adv-form-wrap { width: 100%; }

.sr-adv-grid {
    width: 100%;
}

/* Current style: 7 cols */
.sr-adv-grid--current .sr-adv-steps,
.sr-adv-grid--current .sr-adv-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.9fr 1fr 1fr 1fr 1fr;
    column-gap: clamp(6px, 0.8vw, 8px);
}

/* Prefix style: 6 cols */
.sr-adv-grid--prefix .sr-adv-steps,
.sr-adv-grid--prefix .sr-adv-row {
    display: grid;
    grid-template-columns: 1fr 1.9fr 1fr 1fr 1fr 1fr;
    column-gap: clamp(6px, 0.8vw, 8px);
}

.sr-adv-steps {
    align-items: end;
    margin-bottom: clamp(10px, 2vw, 14px);
}

.sr-adv-step {
    font-weight: 500;
    color: var(--yh-navy);
    font-size: clamp(9px, 1.5vw, 13px);
    line-height: 1.1;
    white-space: nowrap;
    font-family: var(--yh-font);
}

/* Current: step 1 spans cols 1-2, step 2 col 3 centred, step 3 cols 4-6 centred */
.sr-adv-grid--current .sr-adv-step:nth-child(1) { grid-column: 1 / span 2; }
.sr-adv-grid--current .sr-adv-step:nth-child(2) { grid-column: 3; text-align: center; }
.sr-adv-grid--current .sr-adv-step:nth-child(3) { grid-column: 4 / span 3; text-align: center; }

/* Prefix: step 1 col 1, step 2 col 2 centred, step 3 cols 3-5 centred */
.sr-adv-grid--prefix .sr-adv-step:nth-child(1) { grid-column: 1; }
.sr-adv-grid--prefix .sr-adv-step:nth-child(2) { grid-column: 2; text-align: center; }
.sr-adv-grid--prefix .sr-adv-step:nth-child(3) { grid-column: 3 / span 3; text-align: center; }

.sr-adv-row { align-items: center; }

.sr-adv-field { position: relative; }

.sr-adv-box,
.sr-adv-submit {
    height: clamp(54px, 9vw, 68px);
    border-radius: 6px;
}

.sr-adv-box {
    width: 100%;
    border: 1.5px solid var(--yh-navy);
    font-size: clamp(20px, 4vw, 38px);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--yh-font-plate);
    outline: none;
    background: var(--yh-white);
    color: var(--yh-navy);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sr-adv-box:focus {
    border-color: var(--yh-gold);
    box-shadow: 0 0 0 3px rgba(255,182,52,0.2);
}

.sr-adv-select {
    width: 100%;
    max-width: 100%;
    height: clamp(54px, 9vw, 68px);
    border: 1.5px solid var(--yh-navy);
    border-radius: 6px;
    font-size: clamp(18px, 3.5vw, 32px);
    font-family: var(--yh-font-plate);
    color: var(--yh-navy);
    background: var(--yh-white);
    padding: 0 clamp(12px, 3vw, 20px);
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--yh-navy) 50%),
        linear-gradient(135deg, var(--yh-navy) 50%, transparent 50%);
    background-position:
        calc(100% - 14px) 50%,
        calc(100% - 8px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    outline: none;
    cursor: pointer;
}
.sr-adv-select:focus {
    border-color: var(--yh-gold);
    box-shadow: 0 0 0 3px rgba(255,182,52,0.2);
}
.sr-adv-select option { font-size: 16px; font-family: sans-serif; }

.sr-adv-submit {
    width: 100%;
    border: none;
    background: var(--yh-navy);
    color: var(--yh-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.sr-adv-submit:hover { background: var(--yh-gold); color: var(--yh-navy); }
.sr-adv-submit svg { width: clamp(18px, 3vw, 26px); height: clamp(18px, 3vw, 26px); fill: currentColor; }

/* Tooltip */
.sr-adv-tip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 8px);
    background: var(--yh-navy);
    color: var(--yh-white);
    font-size: 11px;
    font-family: var(--yh-font);
    padding: 7px 10px;
    border-radius: 8px;
    width: max-content;
    max-width: 200px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 10;
    white-space: normal;
}
.sr-adv-tip.is-on { opacity: 1; }
.sr-adv-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--yh-navy) transparent transparent;
}

@media (max-width: 600px) {
    .sr-adv-grid--current .sr-adv-steps,
    .sr-adv-grid--current .sr-adv-row {
        grid-template-columns: 1fr 1fr 1.6fr 1fr 1fr 1fr 1fr;
        column-gap: 4px;
    }
    .sr-adv-grid--prefix .sr-adv-steps,
    .sr-adv-grid--prefix .sr-adv-row {
        grid-template-columns: 1fr 1.6fr 1fr 1fr 1fr 1fr;
        column-gap: 4px;
    }
    .sr-adv-box,
    .sr-adv-submit,
    .sr-adv-select { height: 52px; }
    .sr-adv-box { font-size: clamp(16px, 6vw, 28px); }
    .sr-adv-select { font-size: clamp(14px, 5vw, 24px); }
}

/* ── Search help section ── */
.sr-help {
    background: var(--yh-navy);
    padding: 60px 20px;
}
.sr-help__inner {
    max-width: 760px;
    margin: 0 auto;
}
.sr-help__heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--yh-white);
    margin-bottom: 10px;
}
.sr-help__sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.6;
}
.sr-help__sub strong { color: var(--yh-gold); }
.sr-help__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sr-help__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 18px 20px;
}
.sr-help__step-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1.3;
}
.sr-help__step strong {
    display: block;
    color: var(--yh-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.sr-help__step p {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}
.sr-help__footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sr-help__guide-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--yh-gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(255,182,52,0.4);
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.sr-help__guide-link:hover { color: var(--yh-white); }
.sr-help__guide-link svg { flex-shrink: 0; color: var(--yh-gold); }
.sr-help__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yh-gold);
    color: var(--yh-navy);
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    width: fit-content;
    transition: background 0.2s;
}
.sr-help__contact-btn:hover { background: var(--yh-gold-dark); }

/* ── Why Yellowhite (search results) ── */
.sr-why {
    background: var(--yh-grey-light);
    padding: 60px 20px;
}
.sr-why__heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--yh-navy);
    text-align: center;
    margin-bottom: 36px;
}
.sr-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sr-why__card {
    background: var(--yh-white);
    border-radius: var(--yh-radius);
    padding: 24px;
    box-shadow: 0 2px 10px rgba(27,39,77,0.06);
}
.sr-why__icon {
    display: block;
    margin-bottom: 10px;
    color: var(--yh-gold);
}
.sr-why__icon svg { width: 28px; height: 28px; stroke: var(--yh-gold); fill: none; }
.sr-why__card strong {
    display: block;
    color: var(--yh-navy);
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.sr-why__card p {
    color: var(--yh-grey-text);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .sr-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sr-why__grid { grid-template-columns: 1fr; }
    .sr-help__step { flex-direction: column; gap: 10px; }
}

/* ==========================================================================
   14 — GLOBAL UTILITIES — yh-section, yh-container, yh-btn
   ========================================================================== */

/* Missing design tokens — supplement to :root */
:root {
    --yh-text-2xl:   1.5rem;
    --yh-text-base:  1rem;
    --yh-text-sm:    0.875rem;
    --yh-radius:     12px;
    --yh-space-xl:   25px;
    --yh-space-lg:   2rem;
    --yh-space-sm:   0.5rem;
    --yh-transition: 0.15s ease;
}

/* Section + container wrappers */
.yh-section {
    padding: 4rem 1.5rem;
}
.yh-section--grey { background: var(--yh-grey-light); }
.yh-text-center { text-align: center; }

.yh-container {
    max-width: var(--yh-max);
    margin: 0 auto;
}

/* Shared button — mirrors .sp-btn but globally namespaced */
.yh-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: background var(--yh-transition), color var(--yh-transition), transform var(--yh-transition);
    white-space: nowrap;
}

.yh-btn--navy {
    background: var(--yh-navy);
    color: #fff;
    box-shadow: 0 4px 16px rgba(17,26,58,0.22);
}
.yh-btn--navy:hover { background: #0e1830; color: #fff; transform: translateY(-2px); }

.yh-btn--gold {
    background: var(--yh-gold);
    color: var(--yh-ink);
}
.yh-btn--gold:hover { background: var(--yh-gold-dark); color: var(--yh-ink); transform: translateY(-2px); }

.yh-btn--primary {
    background: var(--yh-gold);
    color: var(--yh-ink);
    box-shadow: 0 4px 16px rgba(255,182,52,0.35);
}
.yh-btn--primary:hover { background: var(--yh-gold-dark); color: var(--yh-ink); transform: translateY(-2px); }

.yh-btn--lg {
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
}

/* ==========================================================================
   15 — PLATE LISTING GRID — yw-pl- component
   ========================================================================== */

/* Section title */
.yw-pl__title {
    font-family: var(--yh-font);
    font-size: var(--yh-text-2xl);
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 var(--yh-space-lg);
    line-height: 1.2;
}

/* Grid
   min-width: 0 on items is the canonical fix for grid content blowout  */
.yw-pl__grid {
    display: grid;
    column-gap: 24px;
    row-gap: 28px;
    width: 100%;
}

.yw-pl__grid--4 { grid-template-columns: repeat(4, 1fr); }
.yw-pl__grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Plate item card */
.yw-pl__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    min-width: 0;
}

/* The plate graphic
   Fixed height per breakpoint so font size is locked — no aspect-ratio.
   width: 100% fills the column; overflow: hidden clips any long text.   */
.yw-pl__plate {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--yh-font-plate);
    font-size: 50px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    color: #000;
    background: linear-gradient(160deg, #f5f9ff 0%, #eef3fb 100%);
    border: 2px solid #333;
    border-radius: 4px;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.22);
    white-space: nowrap;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.yw-pl__item:hover .yw-pl__plate,
.yw-pl__item:focus .yw-pl__plate {
    background: linear-gradient(160deg, #FFB634 0%, #f0a820 100%);
    border-color: #c88a00;
    color: var(--yh-navy);
}

/* Price + CTA row */
.yw-pl__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2px;
}

.yw-pl__price {
    font-family: var(--yh-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--yh-navy);
}

.yw-pl__cta {
    font-family: var(--yh-font);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--yh-navy);
    transition: color 0.15s ease;
}

.yw-pl__chevron {
    width: 6px;
    height: 10px;
    flex-shrink: 0;
    color: var(--yh-grey-text);
    transition: color 0.15s ease;
}

.yw-pl__item:hover .yw-pl__cta,
.yw-pl__item:hover .yw-pl__chevron,
.yw-pl__item:focus .yw-pl__cta,
.yw-pl__item:focus .yw-pl__chevron {
    color: var(--yh-gold-dark);
}

/* Empty state */
.yw-pl__empty {
    font-family: var(--yh-font);
    color: var(--yh-grey-text);
    font-size: 14px;
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 0;
}

/* Tablet — 3 columns
   1024px breakpoint: largest affected column ~315px wide, plate 54px tall  */
@media (max-width: 1024px) {
    .yw-pl__grid--4 {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 20px;
        row-gap: 24px;
    }
    .yw-pl__plate { height: 54px; font-size: 40px; }
}

/* Mobile — 2 columns
   768px breakpoint: at 360px viewport columns are ~149px, plate 44px tall  */
@media (max-width: 767px) {
    .yw-pl__grid--3,
    .yw-pl__grid--4 {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 14px;
        row-gap: 20px;
    }
    .yw-pl__plate   { height: 44px; font-size: 30px; padding: 0 6px; }
    .yw-pl__price   { font-size: 12px; }
    .yw-pl__cta     { font-size: 11px; gap: 3px; }
    .yw-pl__chevron { width: 5px; height: 8px; }
}

/* ==========================================================================
   16 — HERO MODULE — yw-mod-hero
   ========================================================================== */

/* Full-width navy wrapper */
.yw-mod-hero-wrap {
    background: var(--yh-navy);
    width: 100%;
    padding: var(--yh-space-xl);
}

/* Inner grid — constrained to site max-width */
.yw-mod-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    max-width: var(--yh-max);
    margin: 0 auto;
    overflow: hidden;
}

/* No-image state — single column, full width */
.yw-mod-hero--no-image {
    grid-template-columns: 1fr;
}

.yw-mod-hero--no-image .yw-mod-hero__left {
    max-width: 720px;
}

/* Left — navy content panel */
.yw-mod-hero__left {
    background: var(--yh-navy);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 0 20px 0;
    min-height: 380px;
}

/* Spacer — pushes content to bottom */
.yw-mod-hero__spacer {
    flex: 1;
}

/* Breadcrumb — single line, horizontal scroll only, no body overflow */
.yw-mod-hero__breadcrumb {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
}
.yw-mod-hero__breadcrumb::-webkit-scrollbar { display: none; }

.yw-mod-hero__breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    min-width: min-content;
}

.yw-mod-hero__breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.yw-mod-hero__breadcrumb-link {
    color: rgba(255,255,255,0.7);
    font-size: var(--yh-text-sm);
    text-decoration: none;
    transition: color var(--yh-transition);
    display: flex;
    align-items: center;
}
.yw-mod-hero__breadcrumb-link:hover { color: var(--yh-gold); }

.yw-mod-hero__breadcrumb-sep {
    color: rgba(255,255,255,0.4);
    font-size: var(--yh-text-sm);
    line-height: 1;
}

.yw-mod-hero__breadcrumb-current {
    color: var(--yh-white);
    font-size: var(--yh-text-sm);
    font-weight: 600;
}

/* Content */
.yw-mod-hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yw-mod-hero__heading {
    font-family: var(--yh-font);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--yh-white);
    line-height: 1.15;
    margin: 0;
}

.yw-mod-hero__sub {
    font-family: var(--yh-font);
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.yw-mod-hero__cta {
    align-self: flex-start;
}

/* Right — image panel */
.yw-mod-hero__right {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border: none;
    outline: none;
}

.yw-mod-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tablet and below — stack, border-radius on left panel */
@media (max-width: 1024px) {
    .yw-mod-hero {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .yw-mod-hero__left {
        order: 0;
        padding: 20px 0 30px;
        border-radius: 0 0 20px 20px;
        min-height: 0;
    }

    .yw-mod-hero__heading {
        margin: 50px 0 0 0;
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .yw-mod-hero__right {
        order: 1;
        min-height: 240px;
        border-radius: 0;
        margin-top: -1px;
    }

    .yw-mod-hero--no-image .yw-mod-hero__left {
        border-radius: 0 0 20px 20px;
    }
}

/* ==========================================================================
   17 — STEPS MODULE — yw-mod-steps
   ========================================================================== */

/* ── yw-mod-steps ── */
.yw-mod-steps {
    background: var(--yh-grey-light);
    padding: var(--yh-space-xl);
}

.yw-mod-steps__header {
    margin-bottom: 40px;
}

.yw-mod-steps__heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--yh-navy);
    margin-bottom: 8px;
}

.yw-mod-steps__sub {
    font-size: 1rem;
    color: var(--yh-grey-text);
}

.yw-mod-steps__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.yw-mod-steps__step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.yw-mod-steps__num {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--yh-gold);
    line-height: 1;
    min-width: 72px;
    text-align: right;
    flex-shrink: 0;
    opacity: 0.9;
}

.yw-mod-steps__divider {
    width: 2px;
    background: var(--yh-grey-mid);
    align-self: stretch;
    flex-shrink: 0;
    margin-top: 6px;
}

.yw-mod-steps__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin-bottom: 6px;
    margin-top: 4px;
}

.yw-mod-steps__text {
    font-size: 0.9rem;
    color: var(--yh-grey-text);
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .yw-mod-steps__num {
        min-width: 40px;
    }
}

/* ==========================================================================
   18 — CARDS MODULE — yw-mod-cards
   ========================================================================== */

/* ── yw-mod-cards ── */
.yw-mod-cards {
    background: var(--yh-grey-light);
    padding: var(--yh-space-xl);
}

.yw-mod-cards__header {
    margin-bottom: 40px;
}

.yw-mod-cards__heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--yh-navy);
    margin-bottom: 8px;
}

.yw-mod-cards__sub {
    font-size: 1rem;
    color: var(--yh-grey-text);
}

.yw-mod-cards__grid {
    display: grid;
    gap: 20px;
}
.yw-mod-cards__grid--2 { grid-template-columns: repeat(2, 1fr); }
.yw-mod-cards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.yw-mod-cards__grid--4 { grid-template-columns: repeat(4, 1fr); }

.yw-mod-cards__card {
    background: var(--yh-navy);
    border-radius: var(--yh-radius);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yw-mod-cards__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27,39,77,0.18);
}

.yw-mod-cards__icon {
    width: 44px;
    height: 44px;
    background: rgba(255,182,52,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yw-mod-cards__icon svg {
    width: 22px;
    height: 22px;
    color: var(--yh-gold);
    stroke: var(--yh-gold);
}

.yw-mod-cards__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--yh-white);
    line-height: 1.3;
    margin-bottom: 0;
}

.yw-mod-cards__text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .yw-mod-cards__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .yw-mod-cards__grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .yw-mod-cards__grid--2,
    .yw-mod-cards__grid--3,
    .yw-mod-cards__grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   19 — FAQ MODULE — yw-mod-faq
   ========================================================================== */

/* ── yw-mod-faq ── */
.yw-mod-faq {
    background: var(--yh-gold);
    padding: var(--yh-space-xl);
}

.yw-mod-faq__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* Sticky left heading */
.yw-mod-faq__sticky {
    position: sticky;
    top: 100px;
}

.yw-mod-faq__heading {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--yh-navy);
    line-height: 1.2;
    margin-bottom: 12px;
}

.yw-mod-faq__sub {
    font-size: 0.9rem;
    color: var(--yh-navy-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* Accordion items */
.yw-mod-faq__item {
    border-bottom: 1px solid rgba(27,39,77,0.15);
}
.yw-mod-faq__item:first-child {
    border-top: 1px solid rgba(27,39,77,0.15);
}

.yw-mod-faq__trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    font-family: var(--yh-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--yh-navy);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}
.yw-mod-faq__trigger:hover { color: var(--yh-navy-dark); }
.yw-mod-faq__trigger[aria-expanded="true"] { color: var(--yh-navy-dark); }

.yw-mod-faq__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(27,39,77,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s;
}
.yw-mod-faq__chevron svg {
    width: 10px;
    height: 10px;
    stroke: var(--yh-navy);
}
.yw-mod-faq__trigger[aria-expanded="true"] .yw-mod-faq__chevron {
    background: var(--yh-navy);
    transform: rotate(180deg);
}
.yw-mod-faq__trigger[aria-expanded="true"] .yw-mod-faq__chevron svg {
    stroke: var(--yh-gold);
}

.yw-mod-faq__body {
    display: none;
    padding: 0 0 18px 0;
    margin-top: -20px;
    font-size: 0.875rem;
    color: var(--yh-navy-dark);
    line-height: 1.7;
    opacity: 0.85;
}
.yw-mod-faq__body.open { display: block; }

/* Mobile — stack heading above accordion */
@media (max-width: 768px) {
    .yw-mod-faq__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .yw-mod-faq__sticky {
        position: static;
    }
}

/* ==========================================================================
   20 — CTA MODULE — yw-mod-cta
   ========================================================================== */

/* ── yw-mod-cta ── */
.yw-mod-cta {
    padding: var(--yh-space-xl);
    border-radius: var(--yh-radius);
    margin: 40px auto;
}

.yw-mod-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 740px;
    margin: 0 auto;
}

.yw-mod-cta__heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.yw-mod-cta__sub {
    font-size: 1rem;
    max-width: 520px;
    margin: -8px auto 0;
}

/* Gold variant */
.yw-mod-cta--gold {
    background: var(--yh-gold);
    margin: 40px 20px;
}
.yw-mod-cta--gold .yw-mod-cta__heading { color: var(--yh-navy); }
.yw-mod-cta--gold .yw-mod-cta__sub { color: rgba(27,39,77,0.75); }
.yw-mod-cta--gold .yw-mod-cta__btn {
    background: var(--yh-navy);
    color: var(--yh-white);
}
.yw-mod-cta--gold .yw-mod-cta__btn:hover {
    background: var(--yh-navy-dark);
}

/* Navy variant */
.yw-mod-cta--navy {
    background: var(--yh-navy);
}
.yw-mod-cta--navy .yw-mod-cta__heading { color: var(--yh-gold); }
.yw-mod-cta--navy .yw-mod-cta__sub { color: rgba(255,255,255,0.7); }
.yw-mod-cta--navy .yw-mod-cta__btn {
    background: var(--yh-gold);
    color: var(--yh-navy);
}
.yw-mod-cta--navy .yw-mod-cta__btn:hover {
    background: var(--yh-gold-dark);
}

/* ==========================================================================
   21 — CONTENT MODULE — yw-mod-content
   ========================================================================== */

/* ── yw-mod-content ── */
.yw-mod-content {
    background: var(--yh-white);
    padding: var(--yh-space-xl);
}

.yw-mod-content__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--yh-grey-mid);
}
.yw-mod-content__body h2:first-child { margin-top: 0; }

.yw-mod-content__body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yh-navy);
    margin: 28px 0 10px;
}

.yw-mod-content__body p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 16px;
}

.yw-mod-content__body ul,
.yw-mod-content__body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.yw-mod-content__body ul li,
.yw-mod-content__body ol li {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 6px;
}

.yw-mod-content__body ul li::marker { color: var(--yh-gold); }
.yw-mod-content__body ol li::marker { color: var(--yh-navy); font-weight: 700; }

.yw-mod-content__body .callout {
    background: rgba(255,182,52,0.12);
    border-left: 4px solid var(--yh-gold);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.9rem;
    color: var(--yh-navy);
    line-height: 1.6;
}

.yw-mod-content__body .tip {
    background: rgba(27,39,77,0.05);
    border-left: 4px solid var(--yh-navy);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.9rem;
    color: var(--yh-navy);
    line-height: 1.6;
}

.yw-mod-content__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.yw-mod-content__body table th {
    background: var(--yh-navy);
    color: var(--yh-white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.yw-mod-content__body table td {
    padding: 11px 16px;
    color: #374151;
    border-bottom: 1px solid var(--yh-grey-mid);
}

.yw-mod-content__body table tr:nth-child(even) td {
    background: var(--yh-grey-light);
}

.yw-mod-content__body .highlight {
    background: var(--yh-gold);
    color: var(--yh-navy);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.yw-mod-content__body a {
    color: var(--yh-navy);
    text-decoration: underline;
    text-decoration-color: var(--yh-gold);
    text-underline-offset: 3px;
}
.yw-mod-content__body a:hover { color: var(--yh-gold-dark); }

@media (max-width: 768px) {
    .yw-mod-content__body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ==========================================================================
   22 — PAGINATION
   ========================================================================== */

.yh-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.yh-pagination__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.yh-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--yh-navy);
    background: var(--yh-white);
    border: 1px solid var(--yh-grey-mid);
    text-decoration: none;
    transition: all 0.2s;
}
.yh-pagination__btn:hover {
    background: var(--yh-navy);
    color: var(--yh-white);
    border-color: var(--yh-navy);
}
.yh-pagination__btn--active {
    background: var(--yh-navy);
    color: var(--yh-white);
    border-color: var(--yh-navy);
}
.yh-pagination__btn--prev,
.yh-pagination__btn--next {
    font-size: 1.1rem;
}
.yh-pagination__ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--yh-grey-text);
    font-size: 0.875rem;
}

/* ==========================================================================
   23 — CHEAP PLATES SEARCH
   ========================================================================== */

.cheap-search__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.cheap-search__heading {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 700;
    color: var(--yh-navy);
    margin-bottom: 12px;
}
.cheap-search__sub {
    font-size: 0.95rem;
    color: var(--yh-grey-text);
    line-height: 1.7;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .cheap-search__wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ── Chip light variant (for light backgrounds) ── */
.hp-chip--light {
    background: transparent;
    color: var(--yh-navy);
    border: 1.5px solid var(--yh-grey-mid);
}
.hp-chip--light:hover {
    background: var(--yh-navy);
    color: var(--yh-white);
    border-color: var(--yh-navy);
}

/* ═══════════════════════════════════════════════════════════
   12 — Plate Detail Page  (pd-*)
   ═══════════════════════════════════════════════════════════ */

.pd-nowrap { white-space: nowrap; }

/* ── Layout ── */
.pd-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 80px;
    align-items: start;
    overflow: visible;
}
.pd-main {
    min-width: 0;
    min-height: 100vh;
}

/* ── Sidebar ── */
.pd-sidebar__sticky {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pd-sidebar__plate {
    border-radius: var(--yh-radius);
    padding: 6px 16px;
    text-align: center;
}
.pd-sidebar__plate .yw-pl__plate {
    font-size: 2.2rem;
}

/* ── Price block ── */
.pd-price {
    background: var(--yh-white);
    border: 1px solid #e2e6ee;
    border-radius: var(--yh-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd-price__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--yh-ink);
}
.pd-price__row--main {
    font-size: 1.05rem;
    font-weight: 600;
}
.pd-price__row--total {
    border-top: 2px solid var(--yh-navy);
    padding-top: 10px;
    margin-top: 4px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--yh-navy);
}
.pd-price__value--free {
    color: #16a34a;
    font-weight: 600;
}

/* ── Age notice ── */
.pd-age-notice {
    background: var(--yh-grey-light);
    border: 1px solid var(--yh-grey-mid);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.8rem;
    color: var(--yh-navy);
    display: block;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.5;
}
.pd-age-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
    margin-bottom: -2px;
    color: var(--yh-gold-dark);
}
.pd-age-notice strong {
    color: var(--yh-navy);
    font-weight: 700;
}

/* ── Pay Later ── */
.pd-paylater {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 8px 0 0;
    font-size: 0.8rem;
    color: var(--yh-navy);
    border: none;
    background: none;
    justify-content: center;
}
.pd-paylater strong {
    color: #0070E0;
}
.pd-paylater svg {
    flex-shrink: 0;
}

/* ── CTA buttons ── */
.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--yh-radius);
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
    text-align: center;
}
.pd-btn:hover {
    transform: translateY(-1px);
}
.pd-btn--primary {
    background: var(--yh-gold);
    color: var(--yh-navy);
}
.pd-btn--primary:hover {
    background: #e6a42e;
}
.pd-btn--secondary {
    background: var(--yh-navy);
    color: var(--yh-white);
}
.pd-btn--secondary:hover {
    background: #243566;
}

/* ── Payment badges ── */
.pd-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0 4px;
    flex-wrap: wrap;
}
.pd-badges img {
    opacity: 0.9;
    transition: opacity 0.2s;
}
.pd-badges img:hover {
    opacity: 1;
}
.pd-badges__pci {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94a3b8;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 2px 6px;
}

/* ── Breadcrumb ── */
.pd-breadcrumb {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 8px;
}
.pd-breadcrumb__link {
    color: #64748b;
    text-decoration: none;
}
.pd-breadcrumb__link:hover {
    color: var(--yh-navy);
    text-decoration: underline;
}
.pd-breadcrumb__sep {
    margin: 0 6px;
    color: #94a3b8;
}
.pd-breadcrumb__current {
    color: var(--yh-navy);
    font-weight: 500;
}

/* ── Heading ── */
.pd-heading {
    font-family: var(--yh-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 24px;
    line-height: 1.2;
}

/* ── Car image with plate overlay ── */
.pd-car {
    position: relative;
    margin-bottom: 32px;
    border-radius: var(--yh-radius);
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
}
.pd-car__img {
    width: 700px;
    height: auto;
    display: block;
    border-radius: var(--yh-radius);
}
.pd-car__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 221px;
}
.pd-car__plate-graphic {
    font-size: 42px;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1em;
    color: #000 !important;
    font-family: var(--yh-font-plate) !important;
}

/* ── Intro copy ── */
.pd-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--yh-ink);
    margin-bottom: 32px;
}

/* ── Info block ── */
.pd-info-block {
    background: #f8fafc;
    border: 1px solid #e2e6ee;
    border-radius: var(--yh-radius);
    padding: 28px;
    margin-bottom: 40px;
}
.pd-info-block__heading {
    font-family: var(--yh-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 14px;
}
.pd-info-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--yh-ink);
    margin: 0 0 12px;
}
.pd-info-block p:last-child {
    margin-bottom: 0;
}

/* ── Upsell cards ── */
.pd-upsell {
    margin-bottom: 40px;
}
.pd-upsell__heading {
    font-family: var(--yh-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 16px;
}
.pd-upsell__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pd-upsell__card {
    border-radius: var(--yh-radius);
    padding: 22px;
    color: var(--yh-white);
}
.pd-upsell__card--navy {
    background: var(--yh-navy);
}
.pd-upsell__card--gold {
    background: var(--yh-gold);
    color: var(--yh-navy);
}
.pd-upsell__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.pd-upsell__card-title {
    font-weight: 700;
    font-size: 1rem;
}
.pd-upsell__card-price {
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.85;
}
.pd-upsell__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.7;
}
.pd-upsell__list li::before {
    content: "✓ ";
    font-weight: 700;
}
.pd-upsell__card--gold .pd-upsell__list li::before {
    color: var(--yh-navy);
}

/* ── Reviews ── */
.pd-reviews {
    margin-bottom: 40px;
}
.pd-reviews__heading {
    font-family: var(--yh-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 16px;
}

/* ── FAQ accordion ── */
.pd-faq {
    margin-bottom: 40px;
}
.pd-faq__heading {
    font-family: var(--yh-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 16px;
}
.pd-faq__list {
    border: 1px solid #e2e6ee;
    border-radius: var(--yh-radius);
    overflow: hidden;
}
.pd-faq__item {
    border-bottom: 1px solid #e2e6ee;
}
.pd-faq__item:last-child {
    border-bottom: none;
}
.pd-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--yh-font);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--yh-navy);
    text-align: left;
    gap: 12px;
    transition: background 0.15s;
}
.pd-faq__question:hover {
    background: #f8fafc;
}
.pd-faq__chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.pd-faq__item.is-open .pd-faq__chevron {
    transform: rotate(180deg);
}
.pd-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.pd-faq__answer p {
    padding: 0 20px 16px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

/* ── Related links ── */
.pd-related {
    margin-bottom: 40px;
}
.pd-related__heading {
    font-family: var(--yh-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 16px;
}
.pd-related__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.pd-related__card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid #e2e6ee;
    border-radius: var(--yh-radius);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pd-related__card:hover {
    border-color: var(--yh-gold);
    box-shadow: 0 2px 12px rgba(27, 39, 77, 0.08);
}
.pd-related__card strong {
    font-size: 0.92rem;
    color: var(--yh-navy);
}
.pd-related__card span {
    font-size: 0.78rem;
    color: #64748b;
}

/* ── Related plates ── */
.pd-related-plates {
    margin-bottom: 40px;
}
.pd-related-plates__heading {
    font-family: var(--yh-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 16px;
}
.pd-related-plates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pd-related-plates__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: var(--yh-white);
    border: 1px solid #e2e6ee;
    border-radius: var(--yh-radius);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
}
.pd-related-plates__item:hover {
    border-color: var(--yh-gold);
    transform: translateY(-2px);
}
.pd-related-plates__item .yw-pl__plate {
    font-size: 1.2rem;
}
.pd-related-plates__price {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--yh-navy);
}

/* ── Help CTA ── */
.pd-help-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--yh-navy);
    color: var(--yh-white);
    border-radius: var(--yh-radius);
    padding: 28px 32px;
    margin-bottom: 40px;
}
.pd-help-cta__text strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}
.pd-help-cta__text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}
.pd-help-cta__btn {
    flex-shrink: 0;
    width: auto;
    padding: 12px 28px;
}

/* ── Mobile sticky bar ── */
.pd-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--yh-white);
    border-top: 1px solid #e2e6ee;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 16px;
    align-items: center;
    gap: 12px;
}
.pd-mobile-bar__plate {
    font-size: 0.9rem;
    flex-shrink: 0;
}
.pd-mobile-bar__price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--yh-navy);
    white-space: nowrap;
}
.pd-mobile-bar__btn {
    flex: 1;
    width: auto;
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* ── Tablet breakpoint ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .pd-wrap {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }
    .pd-heading {
        font-size: 1.6rem;
    }
    .pd-upsell__grid {
        grid-template-columns: 1fr;
    }
    .pd-related__grid {
        grid-template-columns: 1fr 1fr;
    }
    .pd-related-plates__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pd-car__overlay {
        padding-bottom: 210px;
    }
}

/* ── Mobile breakpoint ── */
@media (max-width: 768px) {
    .pd-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 16px 20px 100px 20px;
    }
    .pd-sidebar__sticky {
        position: static;
    }
    .pd-sidebar {
        order: -1;
    }
    .pd-heading {
        font-size: 1.4rem;
    }
    .pd-car__overlay {
        padding-bottom: 109px;
    }
    .pd-car__plate-graphic {
        font-size: 24px;
    }
    .pd-car__img {
        width: 350px;
    }
    .pd-mobile-bar__plate {
        font-size: 2.2rem;
    }
    .pd-upsell__grid {
        grid-template-columns: 1fr;
    }
    .pd-related__grid {
        grid-template-columns: 1fr;
    }
    .pd-related-plates__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pd-help-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .pd-help-cta__btn {
        width: 100%;
    }
    .pd-mobile-bar {
        display: flex;
    }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
    .pd-heading {
        font-size: 1.2rem;
    }
    .pd-sidebar__plate .yw-pl__plate {
        font-size: 1.6rem;
    }
    .pd-info-block {
        padding: 20px;
    }
    .pd-upsell__card {
        padding: 18px;
    }
    .pd-related-plates__grid {
        grid-template-columns: 1fr;
    }
    .pd-faq__question {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    .pd-faq__answer p {
        padding: 0 16px 14px;
        font-size: 0.85rem;
    }
}

/* ── Enquiry modal ── */
.pd-enquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.pd-enquiry-modal.is-open {
    display: flex;
}
.pd-enquiry-modal__box {
    background: #fff;
    border-radius: var(--yh-radius, 12px);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
}
.pd-enquiry-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--yh-navy, #1B274D);
    padding: 0;
}
.pd-enquiry-modal__close:hover { opacity: 0.7; }
.pd-enquiry-modal__title {
    font-family: var(--yh-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yh-navy, #1B274D);
    margin: 0 0 8px;
}
.pd-enquiry-modal__sub {
    font-family: var(--yh-font);
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 24px;
    line-height: 1.6;
}
.pd-enquiry-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}
.pd-enquiry-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 480px) {
    .pd-enquiry-name-row { grid-template-columns: 1fr; }
}
.pd-enquiry-field {
    margin-bottom: 16px;
}
.pd-enquiry-field label {
    display: block;
    font-family: var(--yh-font);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--yh-navy, #1B274D);
    margin-bottom: 4px;
}
.pd-enquiry-field input[type="text"],
.pd-enquiry-field input[type="email"],
.pd-enquiry-field input[type="tel"],
.pd-enquiry-field input[type="number"],
.pd-enquiry-field textarea {
    width: 100%;
    border: 1px solid var(--yh-grey-mid, #d1d5db);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-family: var(--yh-font);
    color: var(--yh-ink, #111a3a);
    box-sizing: border-box;
    transition: border-color 0.15s;
}
.pd-enquiry-field input:focus,
.pd-enquiry-field textarea:focus {
    outline: none;
    border-color: var(--yh-accent, #ffb634);
}
.pd-enquiry-field textarea { resize: vertical; }
.pd-enquiry-offer-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-enquiry-currency {
    font-family: var(--yh-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--yh-navy, #1B274D);
    flex-shrink: 0;
}
.pd-enquiry-offer-row input[type="number"] {
    flex: 1;
}
.pd-enquiry-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
    line-height: 1.5;
}
.pd-enquiry-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}
.pd-enquiry-submit {
    width: 100%;
    margin-top: 8px;
}

/* Flash message */
.yh-flash {
    border-radius: 8px;
    padding: 14px 18px;
    margin: 16px 0;
    font-family: var(--yh-font);
    font-size: 0.95rem;
    animation: yhFlashIn 0.3s ease;
}
.yh-flash--success {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    color: #15803d;
}
@keyframes yhFlashIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   13 — Sell Page  (sp-dashboard, sp-verify, sp-sell-form)
   ═══════════════════════════════════════════════════════════ */

/* ── Dashboard section ── */
.sp-dashboard {
    background: var(--yh-white);
    padding: 80px 0;
}
.sp-dashboard__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sp-dashboard__text h2 {
    color: var(--yh-navy);
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 0 16px;
    line-height: 1.2;
}
.sp-dashboard__text p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--yh-ink);
    margin: 0 0 12px;
}
.sp-dashboard__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sp-dashboard__list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--yh-grey-text);
    font-size: 0.9rem;
}
.sp-dashboard__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yh-gold);
    font-weight: 700;
}
.sp-dashboard__img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* ── Verify section ── */
.sp-verify {
    background: var(--yh-grey-light);
    padding: 80px 0;
}
.sp-verify__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.sp-verify__need h2,
.sp-verify__why h2 {
    color: var(--yh-navy);
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 16px;
    line-height: 1.2;
}
.sp-verify__need p,
.sp-verify__why p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 12px;
}
.sp-verify__need ul,
.sp-verify__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sp-verify__need ul li,
.sp-verify__list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--yh-grey-text);
    font-size: 0.9rem;
}
.sp-verify__need ul li::before,
.sp-verify__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yh-gold);
    font-weight: 700;
}
.sp-verify__why {
    background: var(--yh-gold);
    padding: 32px;
    border-radius: 12px;
}
.sp-verify__why h2 {
    color: var(--yh-navy);
}
.sp-verify__why p {
    color: var(--yh-navy);
}

/* ── Sell form section ── */
.sp-sell-form {
    background: var(--yh-white);
    padding: 80px 0;
}
.sp-sell-form__wrap {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.sp-sell-form__heading {
    color: var(--yh-navy);
    font-family: var(--yh-font);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.sp-sell-form__sub {
    color: #64748b;
    font-size: 1rem;
    margin: 0 0 40px;
}

/* Stage indicators */
.sp-sell-form .sell-stages {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}
.sp-sell-form .sell-stages__step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: opacity 0.2s;
}
.sp-sell-form .sell-stages__step--active,
.sp-sell-form .sell-stages__step--done {
    opacity: 1;
}
.sp-sell-form .sell-stages__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--yh-navy);
    color: var(--yh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.sp-sell-form .sell-stages__step--done .sell-stages__number {
    background: #22c55e;
}
.sp-sell-form .sell-stages__label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yh-navy);
}

/* Message box */
.sp-sell-form .sell-page__message {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: left;
}

/* Form styling */
.sp-sell-form .sell-form {
    background: var(--yh-grey-light);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
}
.sp-sell-form .sell-form__intro {
    font-size: 0.95rem;
    color: var(--yh-ink);
    margin: 0 0 24px;
}
.sp-sell-form .sell-form__field {
    margin-bottom: 20px;
}
.sp-sell-form .sell-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.sp-sell-form label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--yh-navy);
    margin-bottom: 6px;
}
.sp-sell-form input[type="text"],
.sp-sell-form input[type="email"],
.sp-sell-form input[type="tel"],
.sp-sell-form input[type="number"],
.sp-sell-form input[type="date"],
.sp-sell-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--yh-grey-mid);
    border-radius: 8px;
    font-family: var(--yh-font);
    font-size: 1rem;
    color: var(--yh-navy);
    background: var(--yh-white);
    transition: border-color 0.2s;
}
.sp-sell-form input:focus,
.sp-sell-form select:focus {
    outline: none;
    border-color: var(--yh-gold);
}
.sp-sell-form .yh-btn--primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 8px;
}
.sp-sell-form .yh-btn--ghost {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    margin-top: 8px;
    background: transparent;
    color: var(--yh-navy);
    border: 1.5px solid var(--yh-grey-mid);
}
.sp-sell-form .yh-btn--ghost:hover {
    border-color: var(--yh-navy);
}

/* Success notice */
.sp-sell-form .notice--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}
.sp-sell-form .notice--success h2 {
    color: #166534;
    font-size: 1.2rem;
    margin: 0 0 12px;
}
.sp-sell-form .notice--success p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #15803d;
    margin: 0 0 8px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .sp-dashboard__wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sp-dashboard__text h2 {
        font-size: 1.4rem;
    }
    .sp-verify__wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sp-sell-form__heading {
        font-size: 1.5rem;
    }
    .sp-sell-form .sell-form {
        padding: 28px 20px;
    }
    .sp-sell-form .sell-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sp-dashboard,
    .sp-verify,
    .sp-sell-form {
        padding: 48px 0;
    }
}


/* ==========================================================================
   14 · SELLER DASHBOARD  (sd-)
   ========================================================================== */

.sd-wrap {
    background: var(--yh-grey-light);
    min-height: calc(100vh - 200px);
    padding: 48px 0 80px;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.sd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.sd-header__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 4px;
}
.sd-header__sub {
    color: var(--yh-grey-text);
    font-size: 0.9rem;
    margin: 0;
}
.sd-header__actions {
    display: flex;
    gap: 12px;
}

/* ── Notification bar ──────────────────────────────────────────────────────── */
.sd-notice {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.sd-notice--success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.sd-notice--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.sd-notice--info {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #bae6fd;
}

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.sd-card {
    background: #fff;
    border-radius: var(--yh-radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sd-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 24px;
}

/* ── Add form ──────────────────────────────────────────────────────────────── */
.sd-add-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}
.sd-add-form__fields--cert {
    margin-top: 16px;
    grid-template-columns: 1fr 1fr;
}
.sd-add-form__field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yh-navy);
    margin-bottom: 6px;
}
.sd-add-form__field label small {
    font-weight: 400;
    color: var(--yh-grey-text);
}

/* ── Inputs ────────────────────────────────────────────────────────────────── */
.sd-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--yh-grey-mid);
    border-radius: 8px;
    font-family: var(--yh-font);
    font-size: 0.95rem;
    color: var(--yh-navy);
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.sd-input:focus {
    outline: none;
    border-color: var(--yh-gold);
}
.sd-input--reg {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ── Empty state ───────────────────────────────────────────────────────────── */
.sd-empty {
    color: var(--yh-grey-text);
    text-align: center;
    padding: 40px 0;
    font-size: 0.95rem;
}

/* ── Table ─────────────────────────────────────────────────────────────────── */
.sd-table-wrap {
    overflow-x: auto;
    margin: -8px -8px 0;
    padding: 8px;
}
.sd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.sd-table thead tr {
    background: var(--yh-navy);
    color: #fff;
}
.sd-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.sd-table thead th:first-child {
    border-radius: 8px 0 0 0;
}
.sd-table thead th:last-child {
    border-radius: 0 8px 0 0;
}
.sd-table tbody tr {
    border-bottom: 1px solid var(--yh-grey-mid);
    transition: background 0.15s;
}
.sd-table tbody tr:hover {
    background: var(--yh-grey-light);
}
.sd-table td {
    padding: 14px 16px;
    color: var(--yh-navy);
    vertical-align: middle;
}
.sd-table__reg {
    white-space: nowrap;
}
.sd-plate {
    font-size: 0.85rem !important;
    padding: 2px 8px !important;
    display: inline-block;
}

/* ── Badges ────────────────────────────────────────────────────────────────── */
.sd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}
.sd-badge--pending   { background: #fef3c7; color: #92400e; }
.sd-badge--active,
.sd-badge--approved  { background: #dcfce7; color: #166534; }
.sd-badge--sold      { background: #dbeafe; color: #1e40af; }
.sd-badge--rejected,
.sd-badge--rejected_cost { background: #fef2f2; color: #991b1b; }
.sd-badge--submitted { background: #dbeafe; color: #1e40af; }
.sd-badge--unverified { background: #f3f4f6; color: #6b7280; }
.sd-badge--verified  { background: #dcfce7; color: #166534; }

/* ── Table actions ─────────────────────────────────────────────────────────── */
.sd-table__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.sd-action-link {
    font-family: var(--yh-font);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    transition: color 0.15s;
}
.sd-action-link--edit { color: var(--yh-navy); }
.sd-action-link--edit:hover { color: var(--yh-gold-dark); }
.sd-action-link--delete { color: #dc2626; }
.sd-action-link--delete:hover { color: #991b1b; }
.sd-action-link--upload { color: var(--yh-gold-dark); }
.sd-action-link--upload:hover { color: var(--yh-navy); }

/* ── Inline expand rows ────────────────────────────────────────────────────── */
.sd-table__expand-row td {
    background: #f9fafb;
    padding: 20px 16px;
}
.sd-inline-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
}
.sd-inline-form__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

/* ── Button variants (global additions) ────────────────────────────────────── */
.yh-btn--sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}
.yh-btn--outline {
    background: transparent;
    border: 1.5px solid var(--yh-navy);
    color: var(--yh-navy);
}
.yh-btn--outline:hover {
    background: var(--yh-navy);
    color: #fff;
}
.yh-btn--ghost {
    background: transparent;
    border: 1.5px solid var(--yh-grey-mid);
    color: var(--yh-grey-text);
}
.yh-btn--ghost:hover {
    border-color: var(--yh-navy);
    color: var(--yh-navy);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sd-wrap {
        padding: 32px 0 60px;
    }
    .sd-card {
        padding: 24px 20px;
    }
    .sd-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .sd-add-form__fields {
        grid-template-columns: 1fr 1fr;
    }
    .sd-add-form__submit {
        grid-column: span 2;
    }
    .sd-inline-form__fields {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .sd-add-form__fields {
        grid-template-columns: 1fr;
    }
    .sd-add-form__submit {
        grid-column: span 1;
    }
    .sd-header__title {
        font-size: 1.3rem;
    }
}


/* ==========================================================================
   15 · SELLER LOGIN  (sl-)
   ========================================================================== */

.sl-wrap {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yh-grey-light);
    padding: 60px 20px;
}
.sl-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.sl-card__logo {
    text-align: center;
    margin-bottom: 32px;
}
.sl-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yh-navy);
    text-align: center;
    margin: 0 0 8px;
}
.sl-card__sub {
    color: var(--yh-grey-text);
    text-align: center;
    margin: 0 0 28px;
    font-size: 0.9rem;
}

/* Tabs */
.sl-tabs {
    display: flex;
    border-bottom: 2px solid var(--yh-grey-mid);
    margin-bottom: 28px;
    gap: 0;
}
.sl-tab {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    font-family: var(--yh-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yh-grey-text);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}
.sl-tab--active {
    color: var(--yh-navy);
    border-bottom-color: var(--yh-gold);
}
.sl-tab-panel--hidden {
    display: none;
}

/* Notices */
.sl-notice {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.5;
}
.sl-notice--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.sl-notice--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.sl-notice--info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* Hint */
.sl-hint {
    font-size: 0.875rem;
    color: var(--yh-grey-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Form fields */
.sl-field {
    margin-bottom: 16px;
}
.sl-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yh-navy);
    margin-bottom: 6px;
}
.sl-card input[type="email"],
.sl-card input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--yh-grey-mid);
    border-radius: 8px;
    font-family: var(--yh-font);
    font-size: 1rem;
    color: var(--yh-navy);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.sl-card input:focus {
    outline: none;
    border-color: var(--yh-gold);
}
.sl-card .yh-btn--primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    justify-content: center;
}

/* Footer */
.sl-card__footer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--yh-grey-text);
    margin-top: 24px;
}
.sl-card__footer a {
    color: var(--yh-navy);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 520px) {
    .sl-card {
        padding: 36px 24px;
    }
}


/* ==========================================================================
   16 · BLOG INDEX & CARDS  (blog-)
   ========================================================================== */

.blog-index {
    padding: 0 0 60px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 60px 0;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.blog-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--yh-navy);
    display: block;
}
.blog-card__img--placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--yh-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__date {
    font-size: 0.78rem;
    color: var(--yh-grey-text);
    margin-bottom: 8px;
    display: block;
}
.blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 10px;
    line-height: 1.4;
}
.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--yh-grey-text);
    line-height: 1.6;
    flex: 1;
    margin: 0 0 16px;
}
.blog-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--yh-gold-dark);
    text-decoration: none;
}
.blog-card__link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   17 · BLOG ARTICLE  (ba-)
   ========================================================================== */

.ba-wrap {
    padding: 60px 0 80px;
}
.ba-inner {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 20px;
}
.ba-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--yh-navy);
    line-height: 1.25;
    margin: 0 0 20px;
}
.ba-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.ba-meta__date {
    font-size: 0.85rem;
    color: var(--yh-grey-text);
}
.ba-meta__author {
    font-size: 0.85rem;
    color: var(--yh-grey-text);
}
.ba-meta__cat {
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--yh-gold);
    color: var(--yh-navy);
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Prose content */
.ba-content {
    font-family: var(--yh-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3748;
}
.ba-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 40px 0 16px;
}
.ba-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 32px 0 12px;
}
.ba-content p {
    margin-bottom: 20px;
}
.ba-content a {
    color: var(--yh-gold-dark);
    font-weight: 600;
}
.ba-content a:hover {
    text-decoration: underline;
}
.ba-content ul,
.ba-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.ba-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.ba-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}
.ba-content blockquote {
    border-left: 4px solid var(--yh-gold);
    margin: 24px 0;
    padding: 12px 20px;
    background: var(--yh-grey-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--yh-navy);
}

/* Back link */
.ba-back {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--yh-grey-mid);
}
.ba-back a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yh-navy);
    text-decoration: none;
}
.ba-back a:hover {
    color: var(--yh-gold-dark);
}

/* Breadcrumb */
.ba-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--yh-grey-text); margin-bottom: 24px; flex-wrap: wrap; }
.ba-breadcrumb a { color: var(--yh-grey-text); text-decoration: none; }
.ba-breadcrumb a:hover { color: var(--yh-navy); }
.ba-breadcrumb__sep { opacity: 0.4; }

/* Empty state */
.ba-empty { text-align: center; padding: 60px 20px; color: var(--yh-grey-text); font-size: 1rem; }

/* Featured image on article page */
.ba-featured-img__wrap {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: var(--yh-radius);
    overflow: hidden;
}
.ba-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: var(--yh-radius);
}


/* ==========================================================================
   18 · THANK YOU PAGE  (ty-)
   ========================================================================== */

.ty-wrap {
    padding: 80px 0;
    background: var(--yh-grey-light);
    min-height: calc(100vh - 200px);
}
.ty-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    text-align: center;
}
.ty-icon {
    width: 72px;
    height: 72px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.ty-icon svg {
    color: #16a34a;
}
.ty-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 8px;
}
.ty-ref {
    font-size: 0.9rem;
    color: var(--yh-grey-text);
    margin-bottom: 32px;
}
.ty-ref strong {
    color: var(--yh-navy);
}
.ty-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 32px;
}
.ty-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--yh-grey-mid);
    font-size: 0.9rem;
    color: var(--yh-navy);
}
.ty-table td:last-child {
    text-align: right;
    font-weight: 600;
}
.ty-table tr:last-child td {
    border-bottom: none;
    font-size: 1rem;
    font-weight: 700;
}
.ty-steps {
    background: var(--yh-grey-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}
.ty-steps__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--yh-navy);
    margin: 0 0 16px;
    text-align: center;
}
.ty-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.875rem;
    color: var(--yh-navy);
    line-height: 1.5;
}
.ty-step:last-child {
    margin-bottom: 0;
}
.ty-step__num {
    width: 24px;
    height: 24px;
    background: var(--yh-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    color: var(--yh-navy);
}
.ty-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 520px) {
    .ty-card {
        padding: 36px 24px;
    }
    .ty-heading {
        font-size: 1.4rem;
    }
}


/* ==========================================================================
   19 · VEHICLE AGE CHECKER  (age-checker)
   ========================================================================== */

.age-checker { max-width: 560px; }
.age-checker__label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--yh-navy); margin-bottom: 10px; }
.age-checker__row { display: flex; gap: 12px; align-items: stretch; }
.age-checker__input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid var(--yh-grey-mid);
    border-radius: 8px;
    font-size: 1.4rem !important;
    font-family: var(--yh-font-plate) !important;
    color: #000 !important;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: border-color 0.2s;
    min-width: 0;
}
.age-checker__input:focus { outline: none; border-color: var(--yh-gold); }
.age-checker__btn { white-space: nowrap; flex-shrink: 0; }
.age-checker__result {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--yh-navy);
}
.age-checker__result p { margin: 0; }
.age-checker__result strong { font-weight: 700; }
.age-checker__result--info         { background: #eff6ff; border: 1.5px solid #bfdbfe; }
.age-checker__result--compatible   { background: #f0fdf4; border: 1.5px solid #86efac; }
.age-checker__result--incompatible { background: #fef2f2; border: 1.5px solid #fca5a5; }
.age-checker__result--unknown      { background: #fffbeb; border: 1.5px solid #fcd34d; }
.age-checker__result--error        { background: #fef2f2; border: 1.5px solid #fca5a5; }

/* Standalone page */
.age-checker-page__heading { font-size: 1.5rem; font-weight: 700; color: var(--yh-navy); margin-bottom: 8px; }
.age-checker-page__intro { margin-bottom: 20px; color: #374151; }

/* Plate detail context */
.pd-age-checker-wrap { margin: 32px 0; padding: 24px; background: var(--yh-grey-light); border-radius: var(--yh-radius); }
.pd-age-checker-wrap__heading { font-size: 1rem; font-weight: 700; color: var(--yh-navy); margin: 0 0 6px; }
.pd-age-checker-wrap__sub { font-size: 0.875rem; color: var(--yh-grey-text); margin: 0 0 20px; }

@media (max-width: 480px) {
    .age-checker__row { flex-direction: column; }
    .age-checker__input { font-size: 1.1rem !important; }
}


/* ==========================================================================
   20 · CHECKOUT
   ========================================================================== */

/* ── Checkout header ── */
.ck-header {
    background: var(--yh-navy);
    padding: 14px 0;
}
.ck-header__inner {
    max-width: var(--yh-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ck-header__logo img { display: block; height: 36px; width: auto; }
.ck-header__badge { flex: 0 0 auto; }
.ck-header__badge .hp-reviews__badge-label,
.ck-header__badge .hp-reviews__badge-stars { color: #fff; }
.ck-header__badge .hp-reviews__badge-verified { color: rgba(255,255,255,0.7); }
.ck-header__badge .hp-reviews__header { margin-bottom: 0; }

.ck-header__contact-wrap { position: relative; }
.ck-header__contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yh-gold);
    color: var(--yh-navy);
    font-family: var(--yh-font);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.ck-header__contact:hover { background: var(--yh-gold-dark); }
.ck-header__contact svg { flex-shrink: 0; }
.ck-header__contact-chevron { transition: transform 0.2s; }
.ck-header__contact[aria-expanded="true"] .ck-header__contact-chevron { transform: rotate(180deg); }
.ck-header__contact-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1B274D;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    min-width: 220px;
    z-index: 100;
    overflow: hidden;
}
.ck-header__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    color: #fff;
    font-family: var(--yh-font);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.ck-header__contact-item:hover { background: rgba(255,255,255,0.08); color: var(--yh-gold); }
.ck-header__contact-item + .ck-header__contact-item { border-top: 1px solid rgba(255,255,255,0.07); }

@media (max-width: 768px) {
    .ck-header__inner {
        flex-wrap: wrap;
        gap: 10px;
    }
    .ck-header__logo { order: 1; }
    .ck-header__contact-wrap { order: 2; margin-left: auto; }
    .ck-header__contact { padding: 8px 14px; font-size: 0; }
    .ck-header__contact svg { width: 20px; height: 20px; }
    .ck-header__contact-text { display: none; }
    .ck-header__contact-chevron { display: none; }
    .ck-header__contact-panel { right: 0; min-width: 200px; }
    .ck-header__badge { order: 3; width: 100%; display: flex; justify-content: center; padding-top: 6px; }
}

/* ── Checkout footer ── */
.ck-footer {
    background: var(--yh-navy);
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
    text-align: center;
    font-family: var(--yh-font);
    font-size: 0.85rem;
    line-height: 1.7;
}
.ck-footer__inner {
    max-width: var(--yh-max);
    margin: 0 auto;
    padding: 0 24px;
}
.ck-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 24px;
}
.ck-footer__links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.15s;
}
.ck-footer__links a:hover { color: var(--yh-gold); }
.ck-footer__copy p { margin: 0 0 12px; }
.ck-footer__copy p:first-child { color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: 16px; }
.ck-footer__copy p:last-child { margin-bottom: 0; }

/* Layout */
.ck-wrap { background: var(--yh-grey-light); min-height: 100vh; padding: 48px 0 80px; }
.ck-inner { max-width: var(--yh-max); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.ck-main { min-width: 0; min-height: 100vh; }
.ck-title { font-size: 1.8rem; font-weight: 700; color: var(--yh-navy); margin: 0 0 24px; }
.ck-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }

/* Error banner */
.ck-error-banner { background: #fff0f0; border: 1px solid #e88; border-radius: 8px; padding: .75rem 1rem; color: #c00; font-size: .88rem; margin-bottom: 16px; }

/* Validation errors */
.ck-field--error input, .ck-field--error select { border-color: #dc2626 !important; }
.ck-error-msg { color: #dc2626; font-size: 0.78rem; margin-top: 4px; }

/* Steps */
.ck-step { background: #fff; border-radius: var(--yh-radius); margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden; }
.ck-step__head { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; user-select: none; }
.ck-step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--yh-grey-mid); color: var(--yh-grey-text); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.ck-step--active .ck-step__num { background: var(--yh-navy); color: #fff; }
.ck-step--done .ck-step__num { background: #16a34a; color: #fff; }
.ck-step__label { font-weight: 700; color: var(--yh-navy); font-size: 1rem; flex: 1; }
.ck-step__check { color: #16a34a; font-weight: 700; font-size: 1.1rem; }
.ck-step__body { padding: 0 24px 24px; }
.ck-section-label { font-size: 0.78rem; font-weight: 700; color: var(--yh-grey-text); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; }
.ck-step__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--yh-grey-mid); }
.ck-back-btn { background: none; border: none; color: var(--yh-grey-text); font-size: 0.875rem; cursor: pointer; padding: 0; font-weight: 600; }
.ck-back-btn:hover { color: var(--yh-navy); }

/* Form fields */
.ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ck-field { margin-bottom: 16px; }
.ck-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--yh-navy); margin-bottom: 2px; padding: 0 5px; }
.ck-field input[type=text],
.ck-field input[type=email] { width: 100%; padding: 11px 14px; border: 1.5px solid var(--yh-grey-mid); border-radius: 8px; font-size: 0.95rem; color: var(--yh-navy); background: #fff; transition: border-color 0.2s; box-sizing: border-box; }
.ck-field input:focus { outline: none; border-color: var(--yh-gold); }
.ck-field--narrow { max-width: 180px; }

/* Ship-to toggle */
.ck-ship-toggle-wrap { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--yh-grey-mid); }
.ck-ship-toggle { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; color: var(--yh-navy); }
.ck-ship-toggle input { width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.ck-ship-section { margin-top: 20px; }

/* Who buying for */
.ck-buyer { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.ck-buyer__opt { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border: 2px solid var(--yh-grey-mid); border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--yh-navy); transition: all 0.2s; }
.ck-buyer__opt input { display: none; }
.ck-buyer__opt:has(input:checked) { border-color: var(--yh-navy); background: var(--yh-navy); color: #fff; }

/* Vehicle suitability */
.ck-suitability { background: var(--yh-grey-light); border-radius: 10px; padding: 16px 20px; margin-bottom: 8px; }
.ck-suitability label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 0.875rem; color: var(--yh-navy); line-height: 1.5; }
.ck-suitability input[type=checkbox] { margin-top: 2px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--yh-navy); }

/* Bundle cards */
.ck-bundles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.ck-bundle { cursor: pointer; display: block; }
.ck-bundle__radio { display: none; }
.ck-bundle__card { border: 2px solid var(--yh-grey-mid); border-radius: 10px; padding: 16px; height: 100%; transition: all 0.2s; background: #fff; box-sizing: border-box; }
.ck-bundle:has(.ck-bundle__radio:checked) .ck-bundle__card { border-color: var(--yh-navy); background: #f0f4ff; box-shadow: 0 0 0 3px rgba(27,39,77,0.08); }
.ck-bundle__top { margin-bottom: 12px; }
.ck-bundle__name { font-weight: 700; color: var(--yh-navy); font-size: 0.95rem; margin-bottom: 4px; }
.ck-bundle__price { font-size: 1.2rem; font-weight: 700; color: var(--yh-gold-dark); }
.ck-bundle__badge { display: inline-block; background: var(--yh-gold); color: var(--yh-navy); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; text-transform: uppercase; margin-top: 4px; }
.ck-bundle__features { list-style: none; padding: 0; margin: 0; }
.ck-bundle__features li { font-size: 0.8rem; color: var(--yh-grey-text); padding: 3px 0; padding-left: 16px; position: relative; }
.ck-bundle__features li::before { content: '✓'; position: absolute; left: 0; color: var(--yh-gold-dark); font-weight: 700; }
.ck-bundle__features a { color: var(--yh-navy); font-weight: 600; text-decoration: underline; }

/* Hosted Fields */
.hf-label { font-size: 0.82rem; font-weight: 600; color: var(--yh-navy); display: block; margin-bottom: 6px; }
.hf-field { border: 1.5px solid var(--yh-grey-mid); border-radius: 8px; height: 44px; width: 100%; box-sizing: border-box; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; padding: 0; font-size: 0.95rem; }
.hf-field.hf-focus { border-color: var(--yh-gold); box-shadow: 0 0 0 3px rgba(255,182,52,0.2); }
.hf-field.hf-invalid { border-color: #c00; }
.hf-row { display: grid; grid-template-columns: 1fr 100px; gap: 12px; margin-top: 12px; }

/* Voucher */
.voucher-msg { font-size: 0.82rem; margin-top: 8px; }
.voucher-msg--ok { color: #16a34a; }
.voucher-msg--err { color: #c00; }

/* Payment tabs */
.ck-pay-tabs { display: flex; border-bottom: 2px solid var(--yh-grey-mid); margin-bottom: 24px; flex-wrap: wrap; gap: 2px; }
.ck-pay-tab { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; font-weight: 600; font-size: 0.875rem; color: var(--yh-grey-text); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.ck-pay-tab svg { flex-shrink: 0; }
.ck-pay-tab img { max-height: 18px; width: auto; flex-shrink: 0; }
.ck-pay-tab--active { color: var(--yh-navy); border-bottom-color: var(--yh-gold); }
@media (max-width: 640px) {
    .ck-pay-tab { padding: 8px 10px; font-size: 0.8rem; }
}
.ck-pay-panel { display: none; }
.ck-pay-panel--active { display: block; }

/* Alternative payment method panels */
.ck-altpay-container { padding: 16px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.ck-altpay-note { font-size: 0.8rem; color: var(--yh-grey-text); margin: 0; }
.ck-apple-pay-btn { display: inline-flex; align-items: center; justify-content: center; background: #000; color: #fff; border: none; border-radius: 8px; padding: 12px 32px; cursor: pointer; transition: opacity 0.2s; min-width: 200px; }
.ck-apple-pay-btn:hover { opacity: 0.85; }
.ck-apple-pay-btn svg { pointer-events: none; }
#gpay-container { min-width: 200px; }
#gpay-container .gpay-button-fill { min-width: 200px; }
#paypal-button-container { min-width: 200px; max-width: 400px; }

/* Bank transfer */
.ck-bank { background: var(--yh-grey-light); border-radius: 10px; padding: 20px 24px; }
.ck-bank__heading { font-weight: 700; color: var(--yh-navy); margin: 0 0 12px; font-size: 0.95rem; }
.ck-bank__table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.ck-bank__table td { padding: 6px 0; color: var(--yh-navy); }
.ck-bank__table td:first-child { color: var(--yh-grey-text); width: 40%; }
.ck-bank__ref { margin-top: 12px; padding: 10px 14px; background: #fff; border-radius: 8px; font-size: 0.875rem; color: var(--yh-navy); border: 1.5px solid var(--yh-grey-mid); }
.ck-bank__ref strong { color: var(--yh-gold-dark); font-size: 1rem; }
.ck-bank__note { margin-top: 12px; font-size: 0.8rem; color: var(--yh-grey-text); line-height: 1.5; }

/* Pay button */
.ck-pay-btn { width: 100%; padding: 18px; font-size: 1.1rem; margin-top: 16px; text-align: center; }
.ck-secure-note { text-align: center; font-size: 0.75rem; color: var(--yh-grey-text); margin-top: 8px; }

/* Order summary */
.ck-summary { background: #fff; border-radius: var(--yh-radius); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.ck-summary__plate { font-size: 1.1rem !important; padding: 4px 12px !important; display: block !important; margin-bottom: 20px; height: auto !important; }
.ck-summary__table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.ck-summary__table td { padding: 8px 0; border-bottom: 1px solid var(--yh-grey-mid); color: var(--yh-navy); }
.ck-summary__table td:last-child { text-align: right; font-weight: 600; }
.ck-summary__table tr:last-child td { border-bottom: none; }
.ck-summary__total td { font-size: 1.05rem; font-weight: 700; padding-top: 12px; }
.ck-summary__discount td { color: #16a34a; }
.ck-summary__note { font-size: 0.75rem; color: var(--yh-grey-text); margin: 12px 0 0; line-height: 1.5; }

/* Promo code */
.ck-promo { background: #fff; border-radius: var(--yh-radius); padding: 16px 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.ck-promo__toggle { background: none; border: none; cursor: pointer; font-size: 0.875rem; color: var(--yh-navy); font-weight: 600; width: 100%; text-align: left; padding: 0; }
.ck-promo__toggle span { color: var(--yh-gold-dark); text-decoration: underline; }
.ck-promo__form { margin-top: 14px; gap: 8px; display: none; }
.ck-promo__form:not([hidden]) { display: flex; }
.ck-promo__form input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--yh-grey-mid); border-radius: 8px; font-size: 0.875rem; min-width: 0; }
.ck-promo__form input:focus { outline: none; border-color: var(--yh-gold); }

/* Trust badges */
.ck-trust { background: #fff; border-radius: var(--yh-radius); padding: 16px 20px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-around; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.ck-trust img { opacity: 0.8; }

/* Plate builder modal */
#plate-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1000; overflow-y: auto; }
#plate-modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; padding: 3rem 1rem; }
.plate-modal { background: #fff; border-radius: 10px; max-width: 620px; width: 100%; padding: 2rem; position: relative; }
.plate-modal__close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #666; line-height: 1; }
.plate-modal h3 { margin: 0 0 1.25rem; font-size: 1.1rem; }
/* Plate builder preview */
.pb-preview { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 24px; }
.pb-plate { display: flex; flex-direction: row; align-items: stretch; border-radius: 6px; box-shadow: 2px 2px 8px rgba(0,0,0,0.25); width: 280px; height: 59px; overflow: hidden; transition: width 0.2s; border: 1px solid #F4F4F4; }
.pb-plate--front { background: #fff; color: #000; }
.pb-plate--rear  { background: #F3B933; color: #000; }
.pb-plate__flag { width: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.5rem; font-weight: 700; text-align: center; line-height: 1.2; padding: 4px 3px; border-radius: 4px 0 0 4px; }
.pb-plate__inner { flex: 1; padding: 0 6px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.pb-plate__text { font-family: var(--yh-font-plate); font-size: 3.2em; line-height: 1; font-weight: 700; text-align: center; color: #000; letter-spacing: 0.03em; margin-bottom: -3px; margin-top: 5px; }
.pb-plate__info { display: flex; justify-content: flex-end; gap: 95px; font-size: 0.2rem; color: #333; line-height: 1; padding-right: 4px; width: 100%; }
.pb-plate--front .pb-plate__info { background: none; position: relative; z-index: 1; padding: 0 4px 2px; }
.pb-plate--rear .pb-plate__info { background: none; position: relative; z-index: 1; padding: 0 4px 2px; }
.pb-plate--front .pb-plate__info span { background: #fff; padding: 0 2px; }
.pb-plate--rear .pb-plate__info span { background: #F3B933; padding: 0 2px; }
/* Size variants */
.pb-plate--square { width: 175px; height: 135px; }
.pb-plate--square .pb-plate__text { font-size: 3.4rem; margin-bottom: 8px; margin-top: 12px; }
.pb-plate--square .pb-plate__info { gap: 37px; }
.pb-plate--oblong { width: 293px; height: 83px; }
.pb-plate--oblong .pb-plate__text { margin-bottom: 8px; margin-top: 17px; }
/* Border variant */
.pb-plate--border .pb-plate__inner { box-shadow: inset 0 0 0 2px #000; border-radius: 3px; margin: 3px; }
/* 4D font variant */
.pb-plate--4d .pb-plate__text { text-shadow: 1px 1px 0 #727272, 1px 2px 0 #867d7d, 1px 3px 1px rgba(0,0,0,0.2); }
.np-options { display: grid; gap: .85rem; }
.np-options label { font-size: .82rem; font-weight: 600; color: #555; display: block; margin-bottom: .25rem; }
.np-options select { width: 100%; padding: .5rem .65rem; border: 1px solid #ccc; border-radius: 4px; font-size: .9rem; }
.np-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.plate-modal__actions { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.5rem; }

/* 3DS overlay */
#yw-3ds-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9999; align-items: center; justify-content: center; }
#yw-3ds-overlay.active { display: flex; }
#yw-3ds-overlay p { color: #fff; font-size: 1.05rem; }
#yw-3ds-iframe { max-width: 480px; width: 100%; margin: 0 auto; }

/* Checkout responsive */
@media (max-width: 900px) {
    .ck-inner { grid-template-columns: 1fr; }
    .ck-sidebar { position: static; }
}
@media (max-width: 600px) {
    .ck-bundles { grid-template-columns: 1fr; }
    .ck-row { grid-template-columns: 1fr; }
    .ck-wrap { padding: 24px 0 60px; }
}

/* ==========================================================================
   FAVOURITES PAGE
   ========================================================================== */

.fav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.fav-header__count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--yh-ink);
}
.fav-header__clear {
    background: none;
    border: 1.5px solid var(--yh-grey-mid);
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--yh-grey-text);
    cursor: pointer;
    transition: all 0.2s;
}
.fav-header__clear:hover {
    border-color: var(--yh-red);
    color: var(--yh-red);
}

.fav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.fav-card {
    background: #fff;
    border: 1px solid var(--yh-grey-mid);
    border-radius: var(--yh-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.fav-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.fav-card__plate-link {
    text-decoration: none;
    display: block;
}
.fav-card__plate-link:hover .yw-pl__plate {
    background: var(--yh-gold);
    border-color: #c88a00;
}

.fav-card__meta {
    text-align: center;
}
.fav-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yh-ink);
}

.fav-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.fav-card__btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
.fav-card__btn--view {
    background: var(--yh-gold);
    color: var(--yh-ink);
}
.fav-card__btn--view:hover {
    background: var(--yh-gold-dark);
}
.fav-card__btn--remove {
    background: var(--yh-grey-light);
    color: var(--yh-grey-text);
}
.fav-card__btn--remove:hover {
    background: #fee2e2;
    color: var(--yh-red);
}

/* Empty state */
.fav-empty {
    text-align: center;
    padding: 60px 20px;
}
.fav-empty__icon {
    color: var(--yh-grey-mid);
    margin-bottom: 16px;
}
.fav-empty__heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--yh-ink);
    margin: 0 0 8px;
}
.fav-empty__sub {
    color: var(--yh-grey-text);
    margin: 0 0 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.fav-empty__cta {
    display: inline-block;
}

@media (max-width: 480px) {
    .fav-grid {
        grid-template-columns: 1fr;
    }
}

/* === SHORT PLATES === */
.sp-filters { background: #fff; border-radius: var(--yh-radius); padding: 24px 28px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.sp-filters__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; align-items: end; }
.sp-filters__label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--yh-navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.sp-filters__range-wrap { position: relative; height: 24px; margin-bottom: 8px; }
.sp-filters__range-wrap input[type=range] { position: absolute; width: 100%; pointer-events: none; -webkit-appearance: none; background: transparent; }
.sp-filters__range-wrap input[type=range]::-webkit-slider-thumb { pointer-events: auto; -webkit-appearance: none; width: 16px; height: 18px; border-radius: 6px; background: var(--yh-navy); border: 2px solid #fff; box-shadow: 0 0 0 1px #111; cursor: pointer; }
.sp-filters__vals { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--yh-navy); }
.sp-filters__vals input { width: 100px; padding: 6px 10px; border: 1.5px solid var(--yh-grey-mid); border-radius: 8px; font-size: 0.875rem; color: var(--yh-navy); }
.sp-search { width: 100%; padding: 10px 14px; border: 1.5px solid var(--yh-grey-mid); border-radius: 8px; font-size: 0.95rem; color: var(--yh-navy); transition: border-color 0.2s; box-sizing: border-box; }
.sp-search:focus { outline: none; border-color: var(--yh-gold); }
.sp-sort { width: 100%; padding: 10px 14px; border: 1.5px solid var(--yh-grey-mid); border-radius: 8px; font-size: 0.875rem; color: var(--yh-navy); background: #fff; }
.sp-status { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 0.875rem; color: var(--yh-grey-text); }
.sp-status__count { font-weight: 600; color: var(--yh-navy); }
.sp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; min-height: 200px; }
.sp-card { background: #fff; border: 1px solid var(--yh-grey-mid); border-radius: 10px; padding: 14px; text-decoration: none; display: block; transition: transform 0.15s, box-shadow 0.15s; }
.sp-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.sp-card__plate { background: #fff; border: 2px solid #000; border-radius: 4px; width: 100%; height: 44px; display: grid; place-items: center; margin-bottom: 10px; box-shadow: 2px 2px 6px rgba(0,0,0,0.15); }
.sp-card__plate-text { font-family: var(--yh-font-plate); font-size: 1.4rem; font-weight: 700; color: #000; letter-spacing: 0.03em; line-height: 1; }
.sp-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.sp-card__badge { font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border: 1px solid var(--yh-navy); border-radius: 10px; color: var(--yh-navy); white-space: nowrap; }
.sp-card__price { font-weight: 700; font-size: 1rem; color: var(--yh-navy); }
.sp-card__cta { font-size: 0.78rem; font-weight: 700; color: var(--yh-gold-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.sp-pager { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; align-items: center; justify-content: center; }
.sp-page { padding: 7px 12px; border: 1.5px solid var(--yh-navy); border-radius: 6px; background: #fff; color: var(--yh-navy); font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: all 0.15s; }
.sp-page:hover { background: var(--yh-grey-light); }
.sp-page.is-active { background: var(--yh-gold); border-color: var(--yh-navy); color: var(--yh-navy); }
.sp-ellipsis { padding: 0 6px; color: var(--yh-grey-text); }
@media (max-width: 768px) { .sp-filters__grid { grid-template-columns: 1fr; } .sp-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } }

/* === SHORT PLATES — content utilities === */
.sp-content { max-width: 100%; margin: 0 0 48px; }
.sp-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--yh-navy); margin-bottom: 16px; }
.sp-content p { color: var(--yh-grey-text); line-height: 1.75; font-size: 1rem; margin-bottom: 16px; }
.sp-content .sp-anchor { display: inline-block; font-weight: 700; color: var(--yh-gold-dark); text-decoration: none; font-size: 0.95rem; }
.sp-content .sp-anchor:hover { text-decoration: underline; }


/* === NAMES PAGE === */
.nm-az { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 40px; }
.nm-az__link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1.5px solid var(--yh-navy); border-radius: 6px; font-weight: 700; font-size: 0.875rem; color: var(--yh-navy); text-decoration: none; transition: all 0.15s; }
.nm-az__link:hover { background: var(--yh-gold); border-color: var(--yh-navy); }
.nm-group { margin-bottom: 48px; scroll-margin-top: 100px; }
.nm-group__letter { font-size: 1.75rem; font-weight: 800; color: var(--yh-navy); border-bottom: 2px solid var(--yh-gold); padding-bottom: 8px; margin-bottom: 20px; }
.nm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.nm-card { text-decoration: none; display: block; transition: transform 0.15s; }
.nm-card:hover { transform: translateY(-2px); }
.nm-card__plate { background: #fff; border: 2px solid #000; border-radius: 4px; height: 38px; display: grid; place-items: center; box-shadow: 2px 2px 5px rgba(0,0,0,0.15); margin-bottom: 5px; }
.nm-card__text { font-family: var(--yh-font-plate); font-size: 1rem; font-weight: 700; color: #000; letter-spacing: 0.03em; line-height: 1; }
.nm-card__label { font-size: 0.75rem; font-weight: 600; color: var(--yh-grey-text); text-align: center; }
@media (max-width: 768px) { .nm-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); } }

/* === UTILITY — reviews section heading (reusable across static pages) === */
.yh-reviews-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--yh-ink);
    margin-bottom: 24px;
}

/* === UTILITY — image opacity for placeholder logos === */
.hp-news__image-placeholder img { opacity: 0.35; }

/* === UTILITY — margin-top for featured plates CTA === */
.yh-mt-lg { margin-top: var(--yh-space-lg, 2rem); }

/* ==========================================================================
   ADMIN — Media Picker Modal  (yw-media-modal)
   ========================================================================== */

/* Media Picker Modal */
#yw-media-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#yw-media-modal.is-open {
    display: flex;
}
.yw-media-modal__box {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 860px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.yw-media-modal__head {
    background: var(--yh-navy);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}
.yw-media-modal__title {
    font-weight: 600;
    font-size: 1rem;
}
.yw-media-modal__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.yw-media-modal__close:hover {
    color: #fff;
}
.yw-media-modal__body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}
.yw-media-modal__upload {
    border: 2px dashed var(--yh-grey-mid, #c8cdd8);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
}
.yw-media-modal__upload input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.yw-media-modal__upload:hover {
    border-color: var(--yh-gold);
    background: #fffbf0;
}
.yw-media-modal__upload p { font-size: 13px; color: #5a6380; margin: 0; pointer-events: none; }
.yw-media-modal__upload strong { color: #1B274D; }

.yw-media-modal__loading {
    text-align: center;
    padding: 40px;
    color: #9ba3b8;
    font-size: 14px;
}

#yw-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.yw-media-grid__item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background: #f8f9fb;
}
.yw-media-grid__item:hover {
    border-color: var(--yh-gold);
}
.yw-media-grid__item.is-selected {
    border-color: var(--yh-gold);
    background: rgba(255,182,52,0.1);
}
.yw-media-grid__item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.yw-media-grid__item span {
    display: block;
    font-size: 0.7rem;
    padding: 4px 6px;
    color: var(--yh-grey-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yw-media-modal__empty {
    text-align: center;
    padding: 40px;
    color: #9ba3b8;
    font-size: 14px;
}

/* Featured image picker row in blog form */
.fi-picker-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.fi-picker-row .form-control { flex: 1; }
.fi-picker-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    background: #1B274D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.fi-picker-btn:hover { background: #131c38; }

.fi-preview {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 160px;
    display: none;
}
.fi-preview img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    display: block;
}