/* FraîcheurZone — luxe */
:root {
    --ink: #0f1a22;
    --ink-muted: #5c6670;
    --ink-light: #8a939c;
    --bg: #ffffff;
    --cream: #f7f4ef;
    --ice: #eef3f6;
    --bg-soft: #f7f4ef;
    --navy: #0c2337;
    --petrol: #1a4a5c;
    --petrol-light: #2a6278;
    --border: #e4e0d8;
    --border-light: #ece8e1;
    --accent: var(--navy);
    --accent-hover: var(--petrol);
    --gold: #b8956a;
    --gold-light: #d4bc94;
    --success: #2a6b52;
    --star: #c4a962;
    --font-brand: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --max: 1180px;
    --radius: 14px;
    --radius-sm: 10px;
    --ease: 0.25s ease;
    --shadow-soft: 0 4px 24px rgba(12, 35, 55, 0.06);
    --shadow-lux: 0 12px 40px rgba(12, 35, 55, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
}
main { width: 100%; max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--ease); }
a:hover { opacity: 0.75; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--ink-muted); }

/* Brand wordmark — text only, like Curculia */
.brand {
    font-family: var(--font-brand);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    white-space: nowrap;
}
.brand--footer { display: inline-block; margin-bottom: 24px; color: var(--ink); }

/* Announce bar — luxe */
.announce {
    background: linear-gradient(90deg, var(--navy) 0%, var(--petrol) 100%);
    padding: 11px 0;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 100%;
}
.announce__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.announce__dot {
    width: 5px; height: 5px;
    background: var(--gold-light);
    border-radius: 50%;
    flex-shrink: 0;
}
.announce__text { color: rgba(255,255,255,0.88); font-weight: 500; }
.announce__text--accent { color: var(--gold-light); }
.announce__link { text-decoration: none; }
.announce__link:hover { color: white; opacity: 1; text-decoration: underline; }

.nav__phone {
    font-weight: 600;
    color: var(--petrol);
    white-space: nowrap;
}
.nav__phone:hover { opacity: 0.7; }

/* Support bar */
.support-bar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    border-radius: var(--radius);
    color: rgba(255,255,255,0.9);
    box-shadow: var(--shadow-lux);
}
.support-bar--compact {
    padding: 16px 18px;
    margin: 16px 0;
    flex-direction: column;
    gap: 10px;
}
.page-cart .footer__support,
.page-checkout .footer__support { padding-top: 24px; }
.support-bar__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gold-light);
}
.support-bar--compact .support-bar__icon { width: 36px; height: 36px; }
.support-bar__content strong {
    display: block;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 4px;
}
.support-bar__content p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin: 0;
}
.support-bar__hours { color: var(--gold-light); font-weight: 500; }
.support-bar__phone {
    color: white;
    font-weight: 700;
    font-size: 1.05em;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.support-bar__content a { color: var(--gold-light); }
.support-bar__content a:hover { color: white; opacity: 1; }

/* Legal pages */
.legal-page__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
.legal-content h2 {
    font-family: var(--font-brand);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--navy);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}
.legal-content ul, .legal-content ol { margin-left: 20px; margin-bottom: 16px; }
.legal-content a { color: var(--petrol); text-decoration: underline; }
.legal-page__aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.legal-page__aside .support-bar { flex-direction: column; }
.legal-page__company {
    padding: 20px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.legal-page__company h3 {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
}
.page-header--legal { background: var(--ice); }

.checkout-legal {
    font-size: 0.72rem;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.45;
}
.checkout-legal a { color: var(--petrol); text-decoration: underline; }

/* Footer updates */
.footer__support { padding-bottom: 32px; }
.footer__support .support-bar { margin-top: 0; }
.footer__brand-block { max-width: 280px; }
.footer__legal-name { font-size: 0.8rem; color: var(--ink-muted); margin-top: 8px; font-weight: 500; }
.footer__legal-meta { font-size: 0.75rem; color: var(--ink-light); margin-top: 6px; line-height: 1.5; }
.footer__hours { font-size: 0.85rem; color: var(--ink-light); }
.announce__sep { color: rgba(255,255,255,0.35); }

/* Header */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}
.page-pdp .header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom-color: transparent;
    box-shadow: 0 1px 0 rgba(12,35,55,0.06);
}
.header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 0;
    gap: 16px;
}
.header__right { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.nav { display: flex; gap: 24px; font-size: 0.875rem; }
.nav--left { justify-content: flex-start; }
.nav--right { justify-content: flex-end; }
.nav a { color: var(--ink); font-weight: 500; }
.nav a:hover { opacity: 0.6; }
.cart-btn { position: relative; display: flex; padding: 6px 8px 6px 4px; color: var(--ink); flex-shrink: 0; }
.cart-btn:hover { opacity: 1; }
.cart-btn__count {
    position: absolute; top: 0; right: 2px;
    background: var(--petrol); color: white;
    font-size: 0.6rem; font-weight: 600;
    min-width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px; justify-self: start;
}
.menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); }
.nav-mobile {
    display: none; flex-direction: column; padding: 0 20px 20px;
    border-top: 1px solid var(--border); background: var(--bg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 28px; font-family: var(--font-body);
    font-size: 0.875rem; font-weight: 600;
    border: 1.5px solid transparent; border-radius: 999px;
    cursor: pointer; transition: all var(--ease);
}
.btn--dark { background: var(--navy); color: white; border-color: var(--navy); }
.btn--dark:hover { background: var(--petrol); color: white; opacity: 1; }
.btn--lux {
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    color: white; border: none;
    padding: 18px 28px; font-size: 0.9rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(12,35,55,0.2);
}
.btn--lux:hover { opacity: 0.92; transform: translateY(-1px); color: white; }
.btn--lux-outline {
    background: transparent; color: var(--navy);
    border: 1.5px solid var(--border);
    padding: 16px 28px; font-size: 0.85rem;
    letter-spacing: 0.03em;
}
.btn--lux-outline:hover { border-color: var(--navy); background: var(--ice); opacity: 1; color: var(--navy); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: white; opacity: 1; }
.btn--block { width: 100%; }
.btn--brand { background: var(--accent); color: white; border-radius: 999px; }
.btn--brand-outline { background: transparent; border: 1.5px solid var(--ink); border-radius: 999px; }
.btn--lg { padding: 18px 32px; }

/* Section headers */
.section-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 28px;
}
.section-head h2, .spotlight h2, .testimonials__title, .compare h2, .faq-section h2, .pdp__section h2 {
    font-family: var(--font-brand);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.link-see {
    font-size: 0.875rem; font-weight: 500;
    border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}
.link-see:hover { opacity: 0.6; }

/* Carousel */
.spotlight { padding: 56px 0; }
.spotlight--soft { background: var(--bg-soft); }
.carousel { position: relative; }
.carousel__track {
    display: flex; gap: 16px; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -ms-overflow-style: none; scrollbar-width: none;
    padding: 4px 0 8px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
    flex: 0 0 calc(25% - 12px); min-width: 200px;
    scroll-snap-align: start;
}
.carousel--reviews .carousel__slide { flex: 0 0 calc(33.333% - 11px); min-width: 280px; }
.carousel__btn {
    position: absolute; top: 40%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border); background: white;
    cursor: pointer; font-size: 1rem; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }
.carousel__btn:hover { border-color: var(--ink); }

/* Product card */
.product-card { background: var(--bg); }
.product-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.product-card__link:hover .product-card__title { color: var(--petrol); }
.product-card__image {
    aspect-ratio: 1; background: var(--bg-soft);
    border-radius: var(--radius); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 16px; margin-bottom: 12px;
}
.product-card__image img { width: 100%; height: 100%; object-fit: contain; }
.product-card__title {
    font-size: 0.875rem; font-weight: 500; line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.price-current { font-weight: 600; font-size: 0.9rem; }
.price-current--lg { font-size: 1.35rem; }
.price-old { font-size: 0.85rem; color: var(--ink-light); text-decoration: line-through; margin-left: 8px; }

/* Hero product (homepage featured) */
.hero-product { padding: 48px 0 64px; background: var(--bg-soft); }
.hero-product__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.hero-product__main {
    aspect-ratio: 1; background: white; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; padding: 32px;
}
.hero-product__main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hero-product__info h1 {
    font-family: var(--font-brand);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600; line-height: 1.15;
    margin: 12px 0 16px;
}
.hero-product__rating {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 0.875rem;
}
.hero-product__price { margin: 24px 0; }

/* Stars */
.stars { display: inline-flex; gap: 2px; color: var(--star); vertical-align: middle; }
.stars__icon { opacity: 0.25; }
.stars__icon--full, .stars__icon--half { opacity: 1; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tag {
    font-size: 0.75rem; font-weight: 500;
    padding: 6px 14px; border-radius: 999px;
    background: var(--bg-soft); border: 1px solid var(--border);
}

/* Benefits list */
.benefits { list-style: none; margin: 20px 0; }
.benefits li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0; font-size: 0.9rem; line-height: 1.5;
}
.check-icon { flex-shrink: 0; color: var(--success); margin-top: 1px; }

/* Categories */
.categories { padding: 56px 0; }
.categories__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.category-card {
    display: block; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-soft); transition: transform var(--ease);
}
.category-card:hover { transform: translateY(-2px); opacity: 1; }
.category-card__img {
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
    padding: 24px; background: white;
}
.category-card__img img { max-height: 180px; object-fit: contain; }
.category-card__body { padding: 20px 24px 24px; }
.category-card__body h3 {
    font-family: var(--font-brand); font-size: 1.5rem; font-weight: 600;
    margin-bottom: 8px;
}

/* Editorial */
.editorial { padding: 64px 0; }
.editorial__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.editorial__media {
    border-radius: var(--radius); overflow: hidden; background: var(--bg-soft);
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 32px;
}
.editorial__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.editorial__content h2 {
    font-family: var(--font-brand); font-size: 1.75rem; font-weight: 600;
    margin-bottom: 20px;
}
.editorial__content p { color: var(--ink-muted); margin-bottom: 16px; line-height: 1.7; font-size: 0.95rem; }
.editorial__content strong { color: var(--ink); }

/* Testimonials */
.testimonials { padding: 56px 0; background: var(--bg-soft); }
.testimonials__title { text-align: center; margin-bottom: 32px; }
.review-card {
    background: white; border-radius: var(--radius);
    padding: 28px; height: 100%;
    border: 1px solid var(--border);
}
.review-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; }
.review-card .stars { margin-bottom: 12px; }
.review-card p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 12px; }
.review-card__author { font-size: 0.8rem; color: var(--ink-light); }
.reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Trust icons */
.trust-icons { padding: 48px 0; border-top: 1px solid var(--border); }
.trust-icons__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-icon strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.trust-icon span { font-size: 0.8rem; color: var(--ink-muted); }

/* FAQ / Accordion */
.faq-section { padding: 56px 0; }
.faq-section__inner { max-width: 720px; margin: 0 auto; }
.faq-section h2 { margin-bottom: 24px; text-align: center; }
.accordion {
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 8px; background: var(--bg); overflow: hidden;
}
.accordion summary {
    padding: 18px 20px; cursor: pointer; font-weight: 500;
    font-size: 0.95rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--ink-muted); }
.accordion[open] summary::after { content: '−'; }
.accordion p, .accordion .pdp__specs { padding: 0 20px 18px; font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; }

/* PDP — luxe */
.pdp-hero {
    background: linear-gradient(165deg, var(--cream) 0%, var(--ice) 55%, #e4edf2 100%);
    padding: 28px 0 64px;
    position: relative;
    overflow: hidden;
}
.pdp-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,74,92,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.pdp__crumb {
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-bottom: 28px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    letter-spacing: 0.02em;
}
.pdp__crumb a:hover { color: var(--petrol); opacity: 1; }
.pdp__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
    position: relative;
}
.pdp__hero-img {
    aspect-ratio: 1;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: var(--shadow-lux);
    border: 1px solid rgba(255,255,255,0.8);
}
.pdp__hero-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pdp__thumb {
    width: 76px; height: 76px; padding: 8px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.pdp__thumb:hover { border-color: var(--petrol-light); }
.pdp__thumb.is-active {
    border-color: var(--petrol);
    box-shadow: 0 0 0 1px var(--petrol);
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }

.pdp__buy-panel {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-lux);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}
.pdp__guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(90deg, var(--ice) 0%, rgba(238,243,246,0.5) 100%);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin-bottom: 24px;
}
.pdp__guarantee-badge {
    flex-shrink: 0;
    background: var(--navy);
    color: var(--gold-light);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
}
.pdp__title {
    font-family: var(--font-brand);
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--navy);
}
.pdp__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    margin-bottom: 16px;
}
.pdp__rating-score { font-weight: 600; color: var(--navy); }
.pdp__rating-link { color: var(--ink-muted); text-decoration: underline; text-underline-offset: 3px; }
.pdp__rating-link:hover { color: var(--petrol); opacity: 1; }
.pdp__excerpt {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.tags--lux .tag {
    background: var(--ice);
    border-color: rgba(26,74,92,0.15);
    color: var(--petrol);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}
.benefits--lux li { font-size: 0.88rem; padding: 6px 0; }
.benefits--lux .check-icon { color: var(--gold); }
.pdp__price-block {
    margin: 24px 0 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.pdp__price-note {
    display: block;
    font-size: 0.78rem;
    color: var(--ink-light);
    margin-top: 6px;
    letter-spacing: 0.02em;
}
.pdp__save {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(42,107,82,0.1);
    padding: 3px 8px;
    border-radius: 4px;
}
.pdp__promo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.pdp__promo-label {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 4px 8px;
    border-radius: 4px;
}
.pdp__promo strong { color: var(--navy); }
.pdp__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pdp__trust-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 8px;
}
.pdp__trust-row span { position: relative; }
.pdp__trust-row span:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -10px;
    color: var(--border);
}
.pdp__accordions { margin-top: 8px; }
.accordion--lux {
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    background: transparent;
    margin-bottom: 0;
}
.accordion--lux summary {
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--navy);
}
.accordion--lux summary::after { color: var(--gold); }
.accordion--lux p, .accordion--lux .pdp__specs { padding: 0 0 16px; }

.pdp { padding: 0 0 64px; background: var(--bg); }
.pdp__specs { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.pdp__specs th, .pdp__specs td { padding: 8px 0; border-bottom: 1px solid var(--border-light); text-align: left; }
.pdp__specs th { color: var(--ink-muted); font-weight: 500; width: 40%; }

/* Payment badges */
.pay-badges {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin-top: 16px;
}
.pay-badges span {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; padding: 5px 10px;
    border: 1px solid var(--border-light); border-radius: 4px;
    color: var(--ink-light); background: var(--cream);
}
.page-pdp .pay-badges { margin-top: 12px; margin-bottom: 4px; }

/* Compare table */
.compare { padding: 56px 0; max-width: 720px; margin: 0 auto; }
.compare--lux {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 32px;
    max-width: 100%;
}
.compare h2 { margin-bottom: 24px; text-align: center; }
.compare__table { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg); }
.compare__head, .compare__row {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr;
    font-size: 0.875rem;
}
.compare__head { background: var(--navy); color: white; font-weight: 600; }
.compare--lux .compare__head span:not(:first-child) { color: var(--gold-light); }
.compare__head span, .compare__row span { padding: 14px 16px; border-bottom: 1px solid var(--border-light); }
.compare__head span { border-bottom-color: rgba(255,255,255,0.1); }
.compare__yes { color: var(--success); font-weight: 500; }
.compare__no { color: var(--ink-light); }

/* PDP reviews */
.pdp__testimonials {
    padding: 56px 0;
    background: var(--cream);
    margin-top: 0;
}
.pdp__testimonials h2 { text-align: center; margin-bottom: 32px; }
.review-card--lux {
    background: var(--bg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}
.faq-section--lux {
    background: var(--ice);
    border-radius: var(--radius);
    padding: 48px 32px;
    max-width: 720px;
    margin: 0 auto 48px;
}
.faq-section--lux h2 { margin-bottom: 24px; text-align: center; }
.pdp__section { padding: 48px 0; border-top: 1px solid var(--border); max-width: 720px; }
.pdp__section h2 { margin-bottom: 24px; }
.pdp__review { padding: 20px 0; border-bottom: 1px solid var(--border); }
.pdp__review-top { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; margin-bottom: 8px; font-size: 0.85rem; }
.pdp__review h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.pdp__review p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; }
.verified-pill { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; border: 1px solid var(--border); padding: 3px 8px; color: var(--ink-muted); border-radius: 4px; }
.pdp__related { padding-top: 48px; border-top: 1px solid var(--border); }

/* Page header (catalog etc) */
.page-header {
    padding: 48px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    width: 100%;
    background: var(--bg);
}
.page-header--compact {
    padding: 20px 0;
    background: var(--cream);
}
.page-header h1 { font-family: var(--font-brand); font-size: 2rem; font-weight: 600; margin-bottom: 8px; }
.page-header p { color: var(--ink-muted); }

/* Catalog */
.section { padding: 56px 0; }
.section--alt { background: var(--bg-soft); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.catalog-layout { display: grid; grid-template-columns: 200px 1fr; gap: 40px; }
.filter-list { list-style: none; }
.filter-list a { display: block; padding: 10px 0; font-size: 0.9rem; color: var(--ink-muted); border-bottom: 1px solid var(--border); }
.filter-list a.active, .filter-list a:hover { color: var(--ink); font-weight: 500; }
.filter-promo-box { margin-top: 24px; padding: 20px; background: var(--bg-soft); border-radius: var(--radius); font-size: 0.85rem; color: var(--ink-muted); }

/* Cart & checkout */
.page-header--compact h1 { font-size: 1.5rem; margin-bottom: 4px; }
.page-header--compact p { font-size: 0.875rem; }
.section--compact { padding: 24px 0 40px; }

.container--narrow {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.page-cart .cart-layout,
.page-checkout .checkout-layout {
    grid-template-columns: 1fr;
    gap: 16px;
}

.page-cart .cart-summary,
.page-checkout .checkout-summary {
    position: static;
    width: 100%;
}

.form-section--compact { width: 100%; }
.form-row { width: 100%; }
.form-group--compact { width: 100%; }

.qty-selector { display: flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-selector--sm .qty-btn { width: 32px; height: 36px; font-size: 1rem; }
.qty-selector--sm input { width: 36px; font-size: 0.85rem; }
.qty-btn { width: 40px; height: 44px; border: none; background: var(--bg-soft); cursor: pointer; font-size: 1.1rem; }
.qty-selector input { width: 44px; border: none; text-align: center; font-family: var(--font-body); font-size: 0.9rem; -moz-appearance: textfield; }

.cart-layout, .checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(340px, 100%);
    gap: 24px;
    align-items: start;
    width: 100%;
}
.cart-items { min-width: 0; }
.checkout-form { min-width: 0; }

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: start;
}
.cart-item__image {
    width: 72px; height: 72px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    padding: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 4px;
}
.cart-item__desc {
    font-size: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.cart-item__remove {
    background: none;
    border: none;
    color: var(--ink-muted);
    font-size: 0.78rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}
.cart-item__price {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    padding-top: 2px;
}

.cart-summary, .checkout-summary {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 88px;
}
.cart-summary__title {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.cart-summary .btn { margin-top: 14px; }
.cart-summary .btn + .btn { margin-top: 8px; }

/* Choix paiement — page commande */
.payment-choice-page { display: flex; flex-direction: column; gap: 20px; }
.payment-choice-page__recap {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 20px;
}
.payment-choice-page__note {
    font-size: 0.72rem;
    color: var(--ink-muted);
    margin-top: 10px;
    line-height: 1.4;
}
.payment-choice-page__options { display: flex; flex-direction: column; gap: 12px; }
.payment-choice-page__heading {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.payment-choice-page__back {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--ink-muted);
    text-decoration: none;
    margin-top: 8px;
    text-align: center;
}
.payment-choice-page__back:hover { color: var(--petrol); text-decoration: underline; }
.payment-option__amount {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 6px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.payment-option:hover {
    border-color: var(--petrol);
    box-shadow: 0 2px 8px rgba(12, 35, 55, 0.06);
}
.payment-option--primary { border-color: var(--petrol); background: rgba(26, 74, 92, 0.04); }
.payment-option__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.payment-option__head strong { font-size: 0.9rem; font-weight: 600; }
.payment-option__badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--petrol);
    background: rgba(26, 74, 92, 0.1);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
}
.payment-option__desc { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.4; }
.payment-option__notice {
    font-size: 0.75rem;
    color: var(--navy);
    line-height: 1.45;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px dashed var(--border);
}

.checkout-mode-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--petrol);
    background: rgba(26, 74, 92, 0.08);
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: center;
}
.form-note--cod { line-height: 1.55; }
.form-note--cod strong { color: var(--navy); }
.cart-summary__row--muted { font-size: 0.8rem; color: var(--ink-muted); }
.confirmation__delivery { font-size: 0.875rem; color: var(--ink-muted); margin-bottom: 8px; }

.cart-summary__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.875rem; }
.cart-summary__total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 6px;
    border-top: 1px solid var(--border);
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 600;
}

.checkout-form { display: flex; flex-direction: column; gap: 10px; }
.form-section {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 16px;
}
.form-section--compact {
    padding: 16px 18px;
    margin-bottom: 0;
}
.form-section--compact h2 {
    font-family: var(--font-brand);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
.form-group--compact { margin-bottom: 0; }
.form-group--compact:last-child { margin-bottom: 0; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.label-opt { font-weight: 400; color: var(--ink-light); font-size: 0.75rem; }
.form-group input, .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: white;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--petrol); }
.form-note { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 10px; }

.checkout-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.checkout-item__img {
    width: 48px; height: 48px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}
.checkout-item__img img { width: 100%; height: 100%; object-fit: contain; }
.checkout-item__info { flex: 1; min-width: 0; }
.checkout-item__name {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.checkout-item__qty { font-size: 0.75rem; color: var(--ink-muted); }
.checkout-item__price { font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.checkout-promo { margin: 12px 0 8px; }
.checkout-summary .btn { margin-top: 14px; }

.empty-state--compact { padding: 48px 20px; }
.empty-state--compact p { color: var(--ink-muted); margin-bottom: 20px; }

/* Confirmation */
.confirmation__card { max-width: 100%; margin: 0 auto; padding: 40px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); text-align: center; }
.confirmation__title { font-family: var(--font-brand); font-size: 1.75rem; margin-bottom: 16px; }
.confirmation__number { font-size: 0.8rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.confirmation__code { font-family: var(--font-brand); font-size: 2rem; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; margin-bottom: 12px; }
.confirmation__ref, .confirmation__total { font-size: 0.875rem; color: var(--ink-muted); margin-bottom: 8px; }
.confirmation__msg { color: var(--ink-muted); margin: 20px 0 28px; line-height: 1.65; font-size: 0.9rem; }

/* Checkout loader */
.checkout-loader {
    position: fixed; inset: 0;
    background: rgba(12, 35, 55, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout-loader[hidden] { display: none !important; }
.checkout-loader__box {
    background: white;
    padding: 32px 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lux);
}
.checkout-loader__spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--petrol);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.checkout-loader__box p { font-size: 0.9rem; color: var(--ink-muted); }

/* Admin */
.page-admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 24px;
}
.admin-login {
    width: 100%;
    max-width: 360px;
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}
.admin-login h1 { font-family: var(--font-brand); font-size: 1.5rem; margin-bottom: 4px; }
.admin-login > p { color: var(--ink-muted); font-size: 0.875rem; margin-bottom: 24px; }
.admin-header {
    background: var(--navy);
    color: white;
    padding: 16px 0;
}
.admin-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.admin-header h1 { font-family: var(--font-brand); font-size: 1.25rem; }
.admin-header .btn--outline { color: white; border-color: rgba(255,255,255,0.4); }
.admin-header .btn--outline:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.admin-main { padding: 32px 20px 64px; }
.admin-meta { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 24px; }
.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.admin-stat {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
}
.admin-stat--accent { border-color: var(--gold-light); background: #fdfbf7; }
.admin-stat--success { border-color: #b8dcc8; background: #f7fbf9; }
.admin-stat__num { display: block; font-family: var(--font-brand); font-size: 2.25rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.admin-stat__label { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.35; }
.admin-panel {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.admin-panel h2 { font-family: var(--font-brand); font-size: 1.15rem; margin-bottom: 16px; }
.admin-empty { color: var(--ink-muted); font-size: 0.9rem; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th, .admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); text-align: left; }
.admin-table th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); }
.admin-row--highlight { background: #fdfbf7; }
.admin-sub { font-size: 0.75rem; color: var(--ink-light); }
.alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.875rem; }
.empty-state { text-align: center; padding: 80px 24px; }
.text-green { color: var(--success); }
.empty-state h2 { font-family: var(--font-brand); font-size: 1.5rem; margin-bottom: 12px; }
.confirmation__mark { width: 48px; height: 48px; border: 1.5px solid var(--success); color: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 0.7rem; font-weight: 700; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 56px 0 32px; margin-top: 0; background: var(--bg); color: var(--ink); }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 40px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer h4 { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 0.9rem; }
.footer a { color: var(--ink-muted); }
.footer a:hover { color: var(--ink); opacity: 1; }
.footer__trust { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.trust-icons__grid--footer { text-align: center; }
.footer__bottom { text-align: center; }
.footer__bottom p { margin-top: 16px; font-size: 0.8rem; color: var(--ink-muted); }

/* Toast & sticky CTA */
.toast { position: fixed; top: 90px; right: 20px; background: var(--ink); color: white; padding: 16px 24px; border-radius: var(--radius); z-index: 200; font-size: 0.9rem; transform: translateX(calc(100% + 40px)); transition: transform 0.3s; max-width: 320px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.toast.show { transform: translateX(0); }
.toast__action { display: block; margin-top: 8px; color: rgba(255,255,255,0.8); font-size: 0.85rem; text-decoration: underline; }
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--navy);
    border-top: none;
    padding: 14px 0; z-index: 99;
    transform: translateY(100%); transition: transform 0.3s;
    box-shadow: 0 -8px 32px rgba(12,35,55,0.2);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta[hidden] { display: block !important; transform: translateY(100%); }
.sticky-cta.visible[hidden] { transform: translateY(0); }
.sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-cta__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sticky-cta__name { font-size: 0.78rem; color: rgba(255,255,255,0.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta__price { font-family: var(--font-brand); font-size: 1.2rem; font-weight: 600; color: white; }
.page-pdp .sticky-cta .btn--dark,
.page-pdp .sticky-cta .btn--lux { background: white; color: var(--navy); box-shadow: none; }
.page-pdp .sticky-cta .btn--dark:hover,
.page-pdp .sticky-cta .btn--lux:hover { background: var(--gold-light); color: var(--navy); }

/* Livraison */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-soft); }
.step-card__num { font-family: var(--font-brand); font-size: 1.5rem; font-weight: 600; display: block; margin-bottom: 8px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; background: var(--bg); }
.faq__item summary { padding: 16px 20px; cursor: pointer; font-weight: 500; list-style: none; }
.faq__item p { padding: 0 20px 16px; font-size: 0.9rem; color: var(--ink-muted); }

/* Responsive */
@media (max-width: 900px) {
    .hero-product__grid, .pdp__grid, .editorial__grid, .catalog-layout, .cart-layout, .checkout-layout, .footer__top, .legal-page__inner { grid-template-columns: 1fr; }
    .legal-page__aside { position: static; }
    .footer__cols { grid-template-columns: 1fr 1fr; }
    .cart-summary, .checkout-summary { position: static; }
    .checkout-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .checkout-form { order: 1; }
    .checkout-summary { order: 2; }
    .categories__grid, .reviews-row, .trust-icons__grid, .steps-grid { grid-template-columns: 1fr 1fr; }
    .carousel__slide { flex: 0 0 calc(50% - 8px); }
    .carousel--reviews .carousel__slide { flex: 0 0 calc(85% - 8px); }
    .pdp__grid, .pdp__buy-panel { position: static; }
    .pdp-hero { padding-bottom: 40px; }
    .carousel__btn { display: none; }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .announce { font-size: 0.62rem; padding: 8px 0; letter-spacing: 0.04em; }
    .announce__inner { flex-direction: column; gap: 4px; }
    .announce__sep, .announce__dot { display: none; }
    .announce__link { word-break: break-word; }

    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 10px 0;
    }
    .nav--left, .nav--right { display: none; }
    .menu-toggle {
        display: flex;
        flex-shrink: 0;
        width: 36px;
        padding: 6px;
    }
    .brand {
        flex: 1;
        min-width: 0;
        text-align: center;
        font-size: 1.15rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .header__right {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 36px;
    }
    .nav__phone { display: none; }
    .footer__cols { grid-template-columns: 1fr; }
    .carousel__slide { flex: 0 0 calc(72% - 8px); min-width: 0; }
    .form-row { grid-template-columns: 1fr; }
    .cart-item {
        grid-template-columns: 64px 1fr;
        grid-template-areas:
            "img body"
            "img price";
        gap: 8px 12px;
        padding: 14px 0;
    }
    .cart-item__image { grid-area: img; width: 64px; height: 64px; }
    .cart-item__body { grid-area: body; min-width: 0; }
    .cart-item__price {
        grid-area: price;
        text-align: left;
        font-size: 0.9rem;
        padding-top: 0;
    }
    .cart-item__actions { margin-top: 8px; }
    .cart-summary, .checkout-summary { padding: 16px; }
    .page-header--compact { padding: 16px 0; }
    .section--compact { padding: 16px 0 32px; }
    .form-section--compact { padding: 14px 16px; }
    .form-group input, .form-group select { padding: 9px 11px; font-size: 16px; }
    .compare__head, .compare__row { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: 1fr; }
