/* ================================================================
   Preschool Puzzle — Main Stylesheet
   Design: earthy modern · spacious · warm & inviting
   Approach: mobile-first responsive
   All colors/fonts from CSS custom properties (set inline by base.py)
   ================================================================ */

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-text);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-primary); }
ul, ol { list-style: none; }
button, input, select, textarea {
    font-family: inherit; font-size: inherit; color: inherit;
    border: none; outline: none; background: none;
}
button { cursor: pointer; }
address { font-style: normal; }
details summary { cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; content: ''; }

/* ── Screen-reader only ──────────────────────────────────────────── */
.bz-sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Shared Container ────────────────────────────────────────────── */
.pt-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.bz-contain {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ================================================================
   ANNOUNCEMENT STRIP
   ================================================================ */
.pt-top-bar {
    background: var(--color-secondary);
    color: #fff;
    text-align: center;
    padding: .55rem 0;
    font-size: .8rem;
    letter-spacing: .02em;
}
.pt-top-bar-msg { margin: 0; }

/* ================================================================
   HEADER
   ================================================================ */
.pt-header {
    background: var(--color-header-footer);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.pt-header-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
    min-height: 58px;
}
.pt-header-row--simple { justify-content: center; }

/* Logo / Brand */
.pt-brand-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    flex-shrink: 0;
    gap: .5rem;
}
.pt-brand-link:hover { color: #fff; opacity: .92; }
.pt-brand-img { height: auto; max-height: 56px; width: auto; }
.pt-brand-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -.01em;
    white-space: nowrap;
}

/* Header actions */
.pt-header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: auto;
}

/* Hamburger toggle */
.pt-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px;
    z-index: 102;
}
.pt-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}
.pt-mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pt-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.pt-mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Cart icon */
.pt-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 4px;
    transition: color .2s;
}
.pt-cart-link:hover { color: var(--color-accent); }
.pt-cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--color-primary);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

/* ================================================================
   NAVIGATION (mobile sidebar / desktop inline)
   ================================================================ */
.pt-navigation {
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    z-index: 101;
    background: var(--color-header-footer);
    overflow-y: auto;
    transition: left .3s ease;
    padding: 4.5rem 0 2rem;
}
.pt-navigation.open { left: 0; }

.pt-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99;
}
.pt-mobile-overlay.open { display: block; }

.pt-menu-link {
    display: block;
    padding: .75rem 1.5rem;
    color: rgba(255,255,255,.85);
    font-size: .92rem;
    transition: color .15s, background .15s;
}
.pt-menu-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.pt-menu-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pt-menu-static { cursor: default; }
.pt-menu-chevron { margin-left: auto; transition: transform .2s; flex-shrink: 0; }
.pt-menu-group { position: relative; }
.pt-submenu {
    display: none;
    background: rgba(0,0,0,.15);
}
.pt-menu-group.open .pt-submenu { display: block; }
.pt-menu-group.open .pt-menu-chevron { transform: rotate(180deg); }
.pt-submenu-link {
    display: block;
    padding: .6rem 1.5rem .6rem 2.25rem;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    transition: color .15s, background .15s;
}
.pt-submenu-link:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ================================================================
   LANGUAGE PICKER + GEO REDIRECT
   ================================================================ */
.pt-locale-picker { position: relative; }
.pt-locale-toggle {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    padding: .35rem .6rem;
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    transition: background .2s;
}
.pt-locale-toggle:hover { background: rgba(255,255,255,.18); }
.pt-locale-flag { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; }
.pt-locale-label { display: none; }
.pt-locale-chevron { transition: transform .2s; flex-shrink: 0; }
.pt-locale-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    min-width: 180px;
    overflow: hidden;
    z-index: 110;
}
.pt-locale-dropdown.open { display: block; }
.pt-locale-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .9rem;
    color: var(--color-text);
    font-size: .85rem;
    transition: background .15s;
}
.pt-locale-item:hover { background: #f5f5f5; color: var(--color-text); }

/* Country Banner / Geo Redirect — MUST have white bg + dark text */
.country-banner {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 440px;
}
.country-banner.show { display: block; }
.pt-geo-notice {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    color: #222;
}
.pt-geo-flag { width: 32px; height: 24px; border-radius: 3px; object-fit: cover; }
.pt-geo-msg {
    flex: 1;
    font-size: .9rem;
    color: #222;
    min-width: 140px;
    margin: 0;
}
.pt-geo-btns { display: flex; gap: .5rem; width: 100%; }
.pt-geo-btn {
    flex: 1;
    padding: .55rem 1rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    text-align: center;
    transition: opacity .2s;
    color: #222;
    cursor: pointer;
}
.pt-geo-btn:hover { opacity: .85; }
.pt-geo-accept { background: var(--color-primary); color: #fff; }
.pt-geo-dismiss { background: #eee; color: #222; }

/* ================================================================
   MAIN CONTENT AREA
   ================================================================ */
.pt-main { min-height: 50vh; padding-bottom: 2.5rem; }

/* ================================================================
   PRICE DISPLAY (shared across product, category, cart)
   ================================================================ */
.pt-price-group { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.pt-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: .85rem;
}
.pt-price-current {
    font-weight: 700;
    font-size: .95rem;
    color: var(--color-primary);
}

/* ================================================================
   CATEGORY CARDS (shared: home, category, product, 404)
   ================================================================ */
.pt-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f3ef;
    color: var(--color-text);
    transition: transform .25s, box-shadow .25s;
}
.pt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    color: var(--color-text);
}
.pt-card-media {
    aspect-ratio: var(--category-image-ratio);
    overflow: hidden;
    background: #ebe7e0;
}
.pt-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.pt-card:hover .pt-card-media img { transform: scale(1.05); }
.pt-card-media--blank {
    background: linear-gradient(135deg, #e8e4dd 0%, #d6cfc4 100%);
}
.pt-card-title {
    display: block;
    padding: .7rem .85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    text-transform: capitalize;
}
.pt-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.pt-faq-block {
    padding: 3rem 0;
}
.pt-faq-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}
.pt-faq-entry {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    margin-bottom: .6rem;
    overflow: hidden;
    transition: border-color .2s;
    background: #fff;
}
.pt-faq-entry[open] { border-color: var(--color-primary); }
.pt-faq-q {
    padding: 1rem 1.15rem;
    font-weight: 600;
    font-size: .92rem;
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    transition: background .15s;
}
.pt-faq-q:hover { background: rgba(0,0,0,.02); }
.pt-faq-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform .2s;
    flex-shrink: 0;
}
.pt-faq-entry[open] .pt-faq-q::after { content: '\2212'; }
.pt-faq-a {
    padding: 0 1.15rem 1.15rem;
    font-size: .9rem;
    color: #555;
    line-height: 1.65;
}

/* Shipping table */
.pt-shipping-table-wrap { overflow-x: auto; margin-top: .75rem; }
.pt-shipping-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}
.pt-shipping-table th, .pt-shipping-table td {
    padding: .55rem .7rem;
    border: 1px solid rgba(0,0,0,.08);
    text-align: left;
}
.pt-shipping-table th {
    background: rgba(0,0,0,.03);
    font-weight: 600;
    color: var(--color-secondary);
}

/* ================================================================
   FOOTER
   ================================================================ */
.pt-footer {
    background: var(--color-header-footer);
    color: rgba(255,255,255,.8);
    padding: 3rem 0 0;
    margin-top: 3rem;
}
.pt-footer a { color: rgba(255,255,255,.7); }
.pt-footer a:hover { color: #fff; }

.pt-footer-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
.pt-footer-info {}
.pt-footer-brand-link { display: inline-block; margin-bottom: .75rem; }
.pt-footer-logo { max-height: 42px; width: auto; opacity: .9; }
.pt-footer-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.pt-footer-address {
    font-size: .82rem;
    line-height: 1.6;
    margin-bottom: .6rem;
    opacity: .7;
}
.pt-footer-contact {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: .82rem;
    margin-bottom: .5rem;
}
.pt-footer-hours { font-size: .78rem; opacity: .6; }
.pt-footer-social {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
}
.pt-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    transition: background .2s;
}
.pt-social-icon:hover { background: rgba(255,255,255,.2); }
.pt-social-icon svg { width: 16px; height: 16px; }

.pt-footer-nav {}
.pt-footer-title {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .65rem;
}
.pt-footer-links li { margin-bottom: .45rem; }
.pt-footer-links a { font-size: .84rem; }

.pt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1rem 0;
    font-size: .75rem;
    opacity: .6;
    text-align: center;
}

/* ================================================================
   HOMEPAGE — HERO
   ================================================================ */
.bz-hero {
    background: linear-gradient(160deg, var(--color-background) 0%, rgba(0,0,0,.03) 100%);
    padding: 3rem 0;
}
.bz-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.bz-hero-content { max-width: 560px; text-align: center; }
.bz-hero-eco-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(91,124,90,.1);
    color: var(--color-primary);
    padding: .4rem .8rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.bz-hero-h1 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: .75rem;
}
.bz-hero-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.bz-hero-btns { margin-bottom: 1.5rem; }
.bz-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    justify-content: center;
    font-size: .82rem;
    color: #666;
}
.bz-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}
.bz-hero-trust-item svg { color: var(--color-primary); flex-shrink: 0; }
.bz-hero-visual { width: 100%; max-width: 520px; }
.bz-hero-visual img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

/* ── Shared buttons ──────────────────────────────────────────────── */
.bz-btn {
    display: inline-block;
    padding: .75rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-align: center;
}
.bz-btn--accent {
    background: var(--color-primary);
    color: #fff;
}
.bz-btn--accent:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.bz-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.bz-btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}
.bz-btn--sm { padding: .55rem 1.25rem; font-size: .88rem; }
.bz-btn--lg { padding: .9rem 2.5rem; font-size: 1.05rem; }

/* ================================================================
   HOMEPAGE — IMPACT STATS
   ================================================================ */
.bz-impact {
    background: var(--color-secondary);
    color: #fff;
    padding: 1rem 0;
}
.bz-impact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem 1.5rem;
}
.bz-impact-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .15rem;
}
.bz-impact-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}
.bz-impact-lbl {
    font-size: .75rem;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ================================================================
   HOMEPAGE — ABOUT / BRAND STORY
   ================================================================ */
.bz-about { padding: 4rem 0; }
.bz-about-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.bz-about-media { width: 100%; max-width: 520px; }
.bz-about-media img {
    border-radius: 14px;
    width: 100%;
    height: auto;
}
.bz-about-body { max-width: 560px; }
.bz-about-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: .75rem;
}
.bz-about-copy {
    font-size: .95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.bz-about-guarantee {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    background: rgba(91,124,90,.06);
    padding: 1rem 1.15rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}
.bz-about-guarantee svg { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.bz-about-guarantee strong {
    display: block;
    font-size: .9rem;
    color: var(--color-secondary);
    margin-bottom: .25rem;
}
.bz-about-guarantee p {
    font-size: .85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ================================================================
   HOMEPAGE — COLLECTIONS BENTO GRID
   ================================================================ */
.bz-collections { padding: 4rem 0; background: rgba(0,0,0,.02); }
.bz-collections-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.bz-collections-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.bz-collections-sub {
    font-size: .92rem;
    color: #666;
    margin-top: .25rem;
}
.bz-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ================================================================
   HOMEPAGE — VALUE PROPOSITIONS
   ================================================================ */
.bz-values { padding: 4rem 0; }
.bz-values-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
}
.bz-values-trio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}
.bz-value-block {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    transition: box-shadow .25s, transform .25s;
}
.bz-value-block:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transform: translateY(-3px);
}
.bz-value-icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.bz-value-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: .5rem;
}
.bz-value-desc { font-size: .9rem; color: #666; line-height: 1.6; }

/* ================================================================
   HOMEPAGE — TESTIMONIALS
   ================================================================ */
.bz-testimonials { padding: 4rem 0; background: rgba(0,0,0,.02); }
.bz-testimonials-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.bz-testimonials-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.bz-testimonials-sub {
    font-size: .92rem;
    color: #666;
    margin-top: .25rem;
}
.bz-testimonials-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .2rem;
}
.bz-testimonials-stars {
    color: var(--color-accent);
    font-size: 1.15rem;
    letter-spacing: 2px;
}
.bz-testimonials-count {
    font-size: .8rem;
    color: #888;
}

.bz-review-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .75rem;
    max-width: 100%;
}
.bz-review-card {
    flex: 0 0 285px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    padding: 1.5rem;
    transition: box-shadow .2s;
}
.bz-review-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.bz-review-stars {
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: .6rem;
}
.bz-review-quote {
    font-size: .9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: .85rem;
    font-style: italic;
}
.bz-review-footer {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    font-size: .82rem;
}
.bz-review-name {
    font-weight: 600;
    color: var(--color-secondary);
    font-style: normal;
}
.bz-review-verified {
    color: #2a9d3e;
    font-size: .78rem;
}

/* ================================================================
   HOMEPAGE — SWITCH CTA
   ================================================================ */
.bz-switch-cta {
    background: var(--color-primary);
    color: #fff;
    padding: 3.5rem 1.25rem;
    text-align: center;
}
.bz-switch-inner { max-width: 600px; margin: 0 auto; }
.bz-switch-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .6rem;
}
.bz-switch-sub {
    font-size: .95rem;
    opacity: .9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.bz-switch-cta .bz-btn--accent {
    background: #fff;
    color: var(--color-primary);
}
.bz-switch-cta .bz-btn--accent:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* ================================================================
   CATEGORY PAGES — BREADCRUMBS (pz- prefix)
   ================================================================ */
.pz-crumbs {
    padding: .85rem 0;
    font-size: .82rem;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem;
}
.pz-crumbs a { color: #888; transition: color .2s; }
.pz-crumbs a:hover { color: var(--color-primary); }
.pz-crumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem;
}
.pz-crumbs__item { display: inline; }
.pz-crumbs__item::before { content: '/'; margin-right: .35rem; color: #ccc; }
.pz-crumbs__item:first-child::before { content: ''; margin: 0; }
.pz-crumbs__item--active { color: var(--color-secondary); font-weight: 500; }
.pz-bc-arrow { color: #ccc; margin: 0 .15rem; }

/* ================================================================
   CATEGORY PAGES — COLLECTION INTRO
   ================================================================ */
.pz-collection-intro {
    padding: 1.5rem 0 .5rem;
}
.pz-collection-intro__title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: .25rem;
}
.pz-collection-intro__count {
    font-size: .88rem;
    color: #888;
}

/* Category mosaic grid */
.pz-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 0 2rem;
}
.pz-mosaic--two-col { grid-template-columns: repeat(2, 1fr); }

/* ================================================================
   CATEGORY PAGES — HERO BANNER
   ================================================================ */
.pz-hero-banner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}
.pz-hero-banner__overlay {
    background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 100%);
    width: 100%;
    padding: 2rem 1.5rem;
    color: #fff;
}
.pz-hero-banner__heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .4rem;
}
.pz-hero-banner__desc {
    font-size: .9rem;
    line-height: 1.6;
    opacity: .9;
}
.pz-hero-banner--plain {
    background: rgba(0,0,0,.03);
    min-height: auto;
    padding: 2rem 1.5rem;
    align-items: flex-start;
}
.pz-hero-banner--plain .pz-hero-banner__heading { color: var(--color-secondary); }
.pz-hero-banner--plain .pz-hero-banner__desc { color: #555; opacity: 1; }

/* ================================================================
   CATEGORY PAGES — ASSURANCE STRIP
   ================================================================ */
.pz-assurance-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.5rem;
    justify-content: center;
    padding: 1rem 0;
    font-size: .82rem;
    color: #666;
    border-bottom: 1px solid rgba(0,0,0,.06);
    margin-bottom: 2rem;
}
.pz-assurance-strip__badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.pz-assurance-strip__icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ================================================================
   CATEGORY PAGES — SUBCOLLECTIONS
   ================================================================ */
.pz-subcollections { padding: 1.5rem 0; }
.pz-subcollections__heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}
.pz-subcollections__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ================================================================
   CATEGORY PAGES — PRODUCT LISTING GRID
   ================================================================ */
.pz-product-listing { padding: 1.5rem 0; }
.pz-product-listing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Puzzle Card */
.pz-puzzle-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.pz-puzzle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.pz-puzzle-card__link {
    display: block;
    color: var(--color-text);
    flex: 1;
}
.pz-puzzle-card__link:hover { color: var(--color-text); }
.pz-puzzle-card__image-wrap {
    position: relative;
    aspect-ratio: var(--image-ratio);
    overflow: hidden;
    background: #f3efe9;
}
.pz-puzzle-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.pz-puzzle-card:hover .pz-puzzle-card__image-wrap img { transform: scale(1.05); }
.pz-puzzle-card__tag {
    position: absolute;
    top: .6rem;
    left: .6rem;
    background: var(--color-accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.pz-puzzle-card__body { padding: .85rem; }
.pz-puzzle-card__title {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: .3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pz-puzzle-card__excerpt {
    font-size: .78rem;
    color: #777;
    line-height: 1.45;
    margin-bottom: .4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pz-puzzle-card__stars {
    color: var(--color-accent);
    font-size: .85rem;
    letter-spacing: 1.5px;
    margin-bottom: .3rem;
}
.pz-puzzle-card__shipping {
    display: block;
    font-size: .72rem;
    color: #2a9d3e;
    margin-top: .35rem;
}
.pz-puzzle-card__cart-btn {
    display: block;
    width: 100%;
    padding: .65rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    text-align: center;
    border: none;
    transition: background .2s;
    cursor: pointer;
}
.pz-puzzle-card__cart-btn:hover { background: var(--color-secondary); }

/* Related collections */
.pz-related-collections { padding: 2rem 0; border-top: 1px solid rgba(0,0,0,.06); }
.pz-related-collections__heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: .75rem;
}
.pz-related-collections__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.pz-related-collections__tag {
    display: inline-block;
    padding: .4rem .9rem;
    background: rgba(91,124,90,.08);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 500;
    transition: background .2s;
}
.pz-related-collections__tag:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.pz-product-layout {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 1rem 0;
}
.pz-product-visuals { width: 100%; }
.pz-hero-frame { margin: 0; }
.pz-hero-frame img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* Thumbnail row */
.pz-thumb-row {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
    overflow-x: auto;
    padding-bottom: .25rem;
}
.pz-thumb-btn {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    transition: border-color .2s;
    background: #f3efe9;
}
.pz-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pz-thumb--selected { border-color: var(--color-primary); }
.pz-thumb-btn:hover { border-color: var(--color-accent); }

/* Product info panel */
.pz-product-info { width: 100%; }

/* Badges */
.pz-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .75rem;
}
.pz-badge {
    display: inline-block;
    padding: .35rem .75rem;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.pz-badge--age {
    background: rgba(91,124,90,.1);
    color: var(--color-primary);
}
.pz-badge--sm {
    padding: .2rem .5rem;
    font-size: .7rem;
}

/* Difficulty badge colors */
.pz-diff--easy { background: #e8f5e9; color: #2e7d32; }
.pz-diff--medium { background: #fff3e0; color: #ef6c00; }
.pz-diff--hard { background: #fce4ec; color: #c62828; }
.pz-diff--expert { background: #ede7f6; color: #6a1b9a; }

.pz-product-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.25;
    margin-bottom: .6rem;
}
.pz-stock-line {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    color: #2a9d3e;
    margin-bottom: .6rem;
}
.pz-stock-line svg { color: #2a9d3e; }

.pz-price-block { margin-bottom: .85rem; }
.pz-price-block .pt-price-current { font-size: 1.4rem; }
.pz-price-block .pt-price-old { font-size: .95rem; }

.pz-short-desc {
    font-size: .92rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Add to cart */
.pz-cart-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .12s;
}
.pz-cart-btn:hover { background: var(--color-secondary); transform: translateY(-1px); }
.pz-cart-btn:active { transform: translateY(0); }
.pz-cart-feedback {
    text-align: center;
    font-size: .85rem;
    color: #2a9d3e;
    font-weight: 600;
    min-height: 1.5em;
    margin-top: .25rem;
}

/* Perks list */
.pz-perks {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.pz-perks li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: #555;
}
.pz-perks svg { color: var(--color-primary); flex-shrink: 0; }

/* Eco strip */
.pz-eco-strip {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: #666;
    padding: .75rem 0;
    border-top: 1px solid rgba(0,0,0,.06);
    flex-wrap: wrap;
}
.pz-eco-strip svg { color: var(--color-primary); flex-shrink: 0; }
.pz-eco-divider { color: #ccc; }

/* Assurance bar */
.pz-assurance-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    justify-content: center;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
    margin: 1rem 0;
}
.pz-assurance-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    color: #555;
}
.pz-assurance-item svg { color: var(--color-primary); flex-shrink: 0; }

/* Detail columns */
.pz-detail-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 0;
}
.pz-detail-main { flex: 1; }
.pz-detail-sidebar {}

.pz-detail-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: .75rem;
}

/* Expandable section (How It Works) */
.pz-expandable {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}
.pz-expandable[open] { border-color: var(--color-primary); }
.pz-expandable-trigger {
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--color-secondary);
    transition: background .15s;
}
.pz-expandable-trigger:hover { background: rgba(0,0,0,.02); }
.pz-expandable-trigger svg { color: var(--color-primary); flex-shrink: 0; }
.pz-expandable-body {
    padding: 0 1.15rem 1.15rem;
    font-size: .9rem;
    color: #555;
    line-height: 1.65;
}
.pz-rich-text { line-height: 1.65; }
.pz-rich-text p { margin-bottom: .6rem; }

/* Care notice */
.pz-care-notice {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    background: rgba(200,131,74,.06);
    padding: 1.15rem;
    border-radius: 10px;
}
.pz-care-notice svg { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.pz-care-notice strong {
    display: block;
    font-size: .88rem;
    color: var(--color-secondary);
    margin-bottom: .25rem;
}
.pz-care-notice p {
    font-size: .82rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* Specs panel */
.pz-specs-panel { margin-top: 1rem; }
.pz-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}
.pz-specs-table td {
    padding: .55rem .7rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.pz-specs-table td:first-child {
    font-weight: 600;
    color: var(--color-secondary);
    width: 40%;
}

/* Lifestyle sections */
.pz-story-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,.06);
}
.pz-story-visual { flex: 1; }
.pz-story-visual img { border-radius: 12px; width: 100%; height: auto; }
.pz-story-copy { flex: 1; }
.pz-story-copy .pz-rich-text {
    font-size: .92rem;
    color: #555;
}

/* Challenge section (cross-sell) */
.pz-challenge-section { padding: 2.5rem 0; }
.pz-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}
.pz-challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.pz-challenge-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    overflow: hidden;
    color: var(--color-text);
    transition: transform .25s, box-shadow .25s;
}
.pz-challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    color: var(--color-text);
}
.pz-challenge-img-wrap {
    position: relative;
    aspect-ratio: var(--image-ratio);
    overflow: hidden;
    background: #f3efe9;
}
.pz-challenge-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.pz-challenge-card:hover .pz-challenge-img-wrap img { transform: scale(1.05); }
.pz-challenge-img-wrap .pz-badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
}
.pz-challenge-detail { padding: .85rem; }
.pz-challenge-name {
    font-family: var(--font-heading);
    font-size: .88rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: .25rem;
}

/* Subcats & also-like on product page */
.pz-subcats { padding: 2rem 0; }
.pz-subcats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.pz-also-like {
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,.06);
}

/* ================================================================
   CART PAGE
   ================================================================ */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.15rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.06);
    align-items: center;
}
.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}
.cart-item-details { flex: 1; }
.cart-item-details h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.cart-item-attr {
    font-size: .85rem;
    color: #777;
    margin-bottom: 4px;
}
.cart-item-price {
    font-weight: 600;
    color: var(--color-accent);
}
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.qty-btn {
    background: rgba(0,0,0,.04);
    border: none;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.qty-btn:hover { background: rgba(0,0,0,.08); }
.qty-value {
    width: 38px;
    text-align: center;
    font-weight: 600;
    font-size: .95rem;
}
.cart-item-line-total {
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-secondary);
}
.cart-remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: .85rem;
    text-decoration: underline;
}
.cart-remove-btn:hover { color: #c0392b; }
.cart-summary {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.06);
    max-width: 400px;
    margin-left: auto;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 1rem;
}
.cart-total-row {
    border-top: 2px solid rgba(0,0,0,.08);
    padding-top: 12px;
    margin-top: 8px;
    font-size: 1.15rem;
}
.cart-discount-row { color: var(--color-accent); font-weight: 600; }
.checkout-discount-row { color: var(--color-accent); font-weight: 600; }
.checkout-grand-total {
    border-top: 2px solid rgba(0,0,0,.08);
    padding-top: 10px;
    margin-top: 6px;
    font-size: 1.1rem;
}
.cart-empty {
    text-align: center;
    padding: 3rem;
    color: #999;
    font-size: 1.1rem;
}
.cart-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Breadcrumb (cart/checkout) */
.breadcrumb {
    padding: .75rem 0;
    font-size: .82rem;
    color: #888;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--color-primary); }

#cart-container {
    min-height: 120px;
    margin-bottom: 1.5rem;
}

/* Shared button classes */
.btn {
    display: inline-block;
    padding: .65rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
    border: none;
}
.btn-secondary:hover { opacity: .88; }
.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}
.btn-outline:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* ================================================================
   CHECKOUT PAGE
   ================================================================ */
.checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
}
.checkout-form-section { flex: 1; }
.checkout-summary-section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,.06);
}
.checkout-form-section h2, .checkout-summary-section h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: .75rem;
}
.checkout-form { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.form-row { display: flex; gap: .75rem; }
.form-row-half { flex-direction: column; }
.form-group { display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-secondary);
}
.form-input {
    padding: .6rem .75rem;
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(91,124,90,.1);
}
.payment-info-text { font-size: .88rem; color: #666; margin-bottom: 1rem; }
.payment-methods-selection {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
}
.btn-payment {
    flex: 1;
    padding: .75rem 1rem;
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    text-align: center;
}
.btn-payment:hover, .btn-payment.active {
    border-color: var(--color-primary);
    background: rgba(91,124,90,.04);
}
.payment-icon-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.selected-payment-label {
    font-size: .85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: .75rem;
}
.btn-checkout {
    width: 100%;
    padding: .85rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
}
.btn-checkout:hover { background: var(--color-secondary); }
.checkout-feedback {
    font-size: .85rem;
    color: #2a9d3e;
    min-height: 1.2em;
    margin-top: .5rem;
}
.checkout-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 300;
    gap: 1rem;
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,.08);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: pz-spin .7s linear infinite;
}
@keyframes pz-spin { to { transform: rotate(360deg); } }
.checkout-loading-overlay p {
    font-size: .95rem;
    color: var(--color-secondary);
    font-weight: 500;
}
.checkout-error {
    background: #fef2f2;
    color: #dc3545;
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .85rem;
    margin-top: .75rem;
}
#checkout-summary-container {
    font-size: .88rem;
    line-height: 1.5;
}

/* ================================================================
   404 PAGE
   ================================================================ */
.err-wrapper {}
.err-visual {}
.err-content {}
.err-divider {}
.err-categories {}

/* ================================================================
   BLOG — Listing & Article Pages
   ================================================================ */
.blog-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.blog-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.blog-card-title a { color: var(--color-text); }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.75rem;
}
.blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
}
.blog-card-readmore {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}
.blog-card-readmore:hover { text-decoration: underline; }

.blog-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1rem;
}
.blog-article-header { margin-bottom: 2rem; }
.blog-article-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
}
.blog-article-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}
.blog-article-hero {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}
.blog-article-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.blog-article-content h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.blog-article-content p { margin-bottom: 1.2rem; }
.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.blog-article-content a { color: var(--color-primary); text-decoration: underline; }
.blog-article-content blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background: rgba(0,0,0,.02);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}
.blog-article-content ul, .blog-article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.blog-article-content li { margin-bottom: 0.5rem; }
.blog-breadcrumb {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1.5rem;
}
.blog-breadcrumb a { color: #777; }
.blog-breadcrumb a:hover { color: var(--color-primary); }
.blog-breadcrumb .separator { margin: 0 0.4rem; }
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem 0 1rem;
    flex-wrap: wrap;
}
.blog-pagination a, .blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.blog-pagination a { background: rgba(0,0,0,.04); color: var(--color-text); }
.blog-pagination a:hover { background: var(--color-primary); color: #fff; }
.blog-pagination .current {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
}
.blog-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #999;
    font-size: 1.1rem;
}

/* ================================================================
   CAR SELECTOR PAGE (kept for legacy compatibility)
   ================================================================ */
.vs-crumbs {
    padding: .75rem 0;
    font-size: .82rem;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem;
}
.vs-crumbs a { color: #888; }
.vs-crumbs a:hover { color: var(--color-primary); }
.vs-crumbs-sep { color: #ccc; margin: 0 .1rem; }
.vs-selector-page { padding: 1rem 0; }
.vs-selector-hero { text-align: center; padding: 1.5rem 0; }
.vs-selector-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.vs-selector-makes { padding: 1rem 0; }
.vs-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}
.vs-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ================================================================
   RESPONSIVE — TABLET (>= 600px)
   ================================================================ */
@media (min-width: 600px) {
    .pt-locale-label { display: inline; }

    .pt-card-grid { grid-template-columns: repeat(3, 1fr); }

    .bz-hero-h1 { font-size: 2.1rem; }
    .bz-hero-desc { font-size: 1.08rem; }

    .bz-values-trio { grid-template-columns: repeat(3, 1fr); }
    .bz-bento { grid-template-columns: repeat(3, 1fr); }

    .bz-review-card { flex: 0 0 310px; }

    .pz-mosaic { grid-template-columns: repeat(3, 1fr); }
    .pz-product-listing__grid { grid-template-columns: repeat(3, 1fr); }
    .pz-subcollections__grid { grid-template-columns: repeat(3, 1fr); }
    .pz-challenge-grid { grid-template-columns: repeat(3, 1fr); }
    .pz-subcats-grid { grid-template-columns: repeat(3, 1fr); }

    .form-row-half { flex-direction: row; }

    .vs-tile-grid { grid-template-columns: repeat(3, 1fr); }

    .pt-footer-cols { grid-template-columns: 2fr 1fr 1fr; }

    .blog-listing { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}

/* ================================================================
   RESPONSIVE — DESKTOP (>= 900px)
   ================================================================ */
@media (min-width: 900px) {
    .pt-wrap { padding: 0 1.75rem; }
    .bz-contain { padding: 0 1.75rem; }

    /* Header — desktop nav */
    .pt-mobile-toggle { display: none; }
    .pt-navigation {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        overflow: visible;
        transition: none;
        border-top: none;
    }
    .pt-navigation .pt-wrap,
    .pt-navigation {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0;
    }
    .pt-mobile-overlay { display: none !important; }

    .pt-menu-link {
        padding: .6rem .9rem;
        font-size: .85rem;
        white-space: nowrap;
    }
    .pt-menu-group { position: relative; }
    .pt-submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        min-width: 210px;
        z-index: 90;
        padding: .5rem 0;
    }
    .pt-menu-group:hover .pt-submenu,
    .pt-menu-group.open .pt-submenu { display: block; }
    .pt-menu-group:hover .pt-menu-chevron { transform: rotate(180deg); }
    .pt-submenu-link {
        padding: .5rem 1rem;
        color: var(--color-text);
        font-size: .85rem;
    }
    .pt-submenu-link:hover { background: rgba(0,0,0,.03); color: var(--color-primary); }

    /* Hero */
    .bz-hero { padding: 4rem 0; }
    .bz-hero-grid {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
    .bz-hero-content { text-align: left; flex: 1; }
    .bz-hero-trust { justify-content: flex-start; }
    .bz-hero-visual { flex: 1; max-width: 580px; }
    .bz-hero-h1 { font-size: 2.6rem; }
    .bz-hero-desc { font-size: 1.12rem; }

    /* Impact row */
    .bz-impact-row { flex-wrap: nowrap; gap: 2rem; }

    /* About */
    .bz-about-split { flex-direction: row; gap: 3.5rem; align-items: center; }
    .bz-about-media { flex: 1; }
    .bz-about-body { flex: 1; }

    /* Category grid */
    .bz-bento { grid-template-columns: repeat(4, 1fr); }
    .pt-card-grid { grid-template-columns: repeat(4, 1fr); }

    /* Category pages */
    .pz-mosaic { grid-template-columns: repeat(4, 1fr); }
    .pz-product-listing__grid {
        grid-template-columns: repeat(var(--products-per-row, 4), 1fr);
    }
    .pz-subcollections__grid { grid-template-columns: repeat(4, 1fr); }
    .pz-challenge-grid { grid-template-columns: repeat(4, 1fr); }
    .pz-subcats-grid { grid-template-columns: repeat(4, 1fr); }

    /* Category hero */
    .pz-hero-banner { min-height: 260px; }

    /* Product detail */
    .pz-product-layout {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }
    .pz-product-visuals { flex: 1.15; position: sticky; top: 80px; }
    .pz-product-info { flex: 0.85; }
    .pz-product-title { font-size: 1.65rem; }

    /* Detail columns */
    .pz-detail-columns { flex-direction: row; gap: 3rem; }
    .pz-detail-main { flex: 1.3; }
    .pz-detail-sidebar { flex: 0.7; }

    /* Lifestyle rows */
    .pz-story-row { flex-direction: row; gap: 2.5rem; align-items: center; }
    .pz-story--visual-right { flex-direction: row-reverse; }

    /* Checkout */
    .checkout-layout { flex-direction: row; gap: 2.5rem; }
    .checkout-form-section { flex: 1.2; }
    .checkout-summary-section { flex: 0.8; position: sticky; top: 80px; align-self: flex-start; }

    /* Footer */
    .pt-footer-cols { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
    .pt-footer-contact { flex-direction: row; gap: 1rem; }

    /* Geo prompt actions */
    .pt-geo-btns { width: auto; }

    /* Tile grid */
    .vs-tile-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================================
   RESPONSIVE — WIDE (>= 1200px)
   ================================================================ */
@media (min-width: 1200px) {
    .bz-hero-h1 { font-size: 2.9rem; }
    .bz-bento { grid-template-columns: repeat(5, 1fr); }
    .pt-card-grid { grid-template-columns: repeat(5, 1fr); }
    .vs-tile-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ================================================================
   RESPONSIVE — SMALL SCREENS (< 600px)
   ================================================================ */
@media (max-width: 599px) {
    .blog-listing { grid-template-columns: 1fr; }
    .blog-article-title { font-size: 1.5rem; }
    .blog-article-content { font-size: 1rem; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
    .pt-top-bar, .pt-header, .pt-navigation, .pt-footer,
    .pt-mobile-overlay, .country-banner, .pz-cart-btn, .pt-cart-link { display: none; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}
