/*
Theme Name: ShopMe Amazon
Theme URI: https://shopme.mg
Author: Shopme
Author URI: https://shopme.mg
Description: Thème WooCommerce pour ShopMe.mg, reproduction fidèle de maquettes/final/index.html.
Version: 1.7.4
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: shopme-amazon
Tags: e-commerce, woocommerce
*/

/* ==== CSS copié tel quel depuis maquettes/final/index.html ==== */
:root {
    /* Couleurs ShopMe */
    /* Palette sombre (v1) */
    --shopme-blue: #131921;        /* header, footer bas */
    --shopme-blue-dark: #232F3E;   /* top-notice, subnav, footer */
    --shopme-hero-end: #37475A;
    --shopme-orange: #FF9900;
    --shopme-orange-hover: #E88B00;
    --shopme-orange-light: #FFF3E0;
    
    /* Neutres */
    --ink: #0F1111;
    --ink-secondary: #565959;
    --ink-tertiary: #767676;
    --bg: #FFFFFF;
    --bg-subtle: #F7F7F7;
    --bg-muted: #EAEDED;
    --border: #D5D9D9;
    --link: #007185;
    --link-hover: #C7511F;
    --success: #067D62;
    --error: #B12704;
    --star: #FFA41C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: var(--ink);
    background: var(--bg-muted);
    -webkit-font-smoothing: antialiased;
}

/* Top Notice */
.top-notice {
    background: var(--shopme-blue-dark);
    color: #FFF;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

.top-notice strong {
    color: var(--shopme-orange);
}

/* Header */
.header {
    background: var(--shopme-blue);
    padding: 10px 16px;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--shopme-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: var(--shopme-orange);
}

.logo-domain {
    font-size: 14px;
    color: var(--shopme-orange);
    font-weight: 400;
}

/* Search */
.search-wrapper {
    flex: 1;
    max-width: 820px;
    display: flex;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.search-category {
    background: #F3F3F3;
    border: none;
    border-right: 1px solid #CDCDCD;
    padding: 0 12px;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    min-width: 52px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 0 12px;
    font-size: 15px;
}

.search-input:focus { outline: none; }

.search-submit {
    background: var(--shopme-orange);
    border: none;
    width: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover { background: var(--shopme-orange-hover); }

.search-submit svg {
    width: 20px;
    height: 20px;
    fill: var(--ink);
}

/* Header Actions */
.header-tools {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    color: #FFF;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 2px;
}

.tool:hover { border-color: #FFF; }

.tool-line1 { font-size: 11px; color: #CCC; }
.tool-line2 { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 4px; }

.tool svg {
    width: 18px;
    height: 18px;
    fill: #FFF;
}

.cart-count {
    background: var(--shopme-orange);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sub Navigation */
.subnav {
    background: var(--shopme-blue-dark);
    padding: 0 16px;
}

.subnav-inner {
    display: flex;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    height: 39px;
}

.subnav-link {
    color: #FFF;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.subnav-link:hover { border-color: #FFF; }

.subnav-link svg {
    width: 16px;
    height: 16px;
    fill: #FFF;
}

.subnav-right {
    margin-left: auto;
    font-size: 13px;
    color: var(--shopme-orange);
    font-weight: 600;
}

/* Hero Banner */
.hero {
    background: linear-gradient(90deg, var(--shopme-blue-dark) 0%, var(--shopme-hero-end) 100%);
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 16px;
    width: 100%;
}

.hero-content {
    max-width: 560px;
    color: #FFF;
}

.hero-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--shopme-orange);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 16px;
    color: #DDD;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
}

.btn-primary {
    background: var(--shopme-orange);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--shopme-orange-hover);
}

/* Content Grid */
.content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* Category Cards */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.cat-card {
    background: var(--bg);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: var(--ink);
    transition: box-shadow 0.15s;
}

.cat-card:hover {
    box-shadow: 0 4px 12px rgba(15,17,17,0.15);
}

.cat-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cat-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--shopme-orange);
}

.cat-title {
    font-size: 16px;
    font-weight: 700;
}

.cat-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cat-item {
    font-size: 13px;
    color: var(--link);
    padding: 4px 0;
}

.cat-item:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title {
    font-size: 21px;
    font-weight: 700;
}

.section-link {
    color: var(--link);
    text-decoration: none;
    font-size: 13px;
}

.section-link:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: box-shadow 0.15s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(15,17,17,0.15);
}

.product-img {
    aspect-ratio: 1;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img svg {
    width: 80px;
    height: 80px;
    fill: #CCC;
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--error);
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-badge.best {
    background: var(--shopme-orange);
    color: var(--ink);
}

.product-info {
    padding: 12px;
}

.product-title {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.stars {
    color: var(--star);
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-count {
    font-size: 12px;
    color: var(--link);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-symbol {
    font-size: 12px;
    position: relative;
    top: -4px;
}

.price-whole {
    font-size: 21px;
    font-weight: 700;
}

.price-fraction {
    font-size: 12px;
    position: relative;
    top: -4px;
}

.price-unit {
    font-size: 12px;
    color: var(--ink-secondary);
}

.product-shipping {
    font-size: 12px;
    color: var(--ink-secondary);
    margin-top: 4px;
}

.product-shipping.free {
    color: var(--success);
    font-weight: 600;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 16px;
    margin: 32px 0;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--shopme-orange);
}

.trust-text {
    font-size: 13px;
}

.trust-text strong {
    display: block;
    font-weight: 700;
}

.trust-text span {
    color: var(--ink-secondary);
}

/* Footer */
.footer {
    background: var(--shopme-blue-dark);
    margin-top: 40px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #FFF;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: #DDD;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--shopme-orange);
    text-decoration: underline;
}

.footer-bottom {
    background: var(--shopme-blue);
    padding: 20px 16px;
    text-align: center;
}

.footer-logo {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--shopme-orange);
}

.footer-copy {
    color: #999;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-main { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 600px) {
    .footer-main { grid-template-columns: 1fr 1fr; }
    html, body { max-width: 100%; overflow-x: hidden; }
    .header-main { flex-wrap: wrap; }
    .search-wrapper { order: 3; flex: 1 0 100%; width: 100%; max-width: none; }
    .subnav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .subnav-inner { width: max-content; min-width: 100%; }
    .subnav-link, .subnav-right { flex: 0 0 auto; white-space: nowrap; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-inner { flex-direction: column; gap: 20px; }
    .hero-title { font-size: 28px; }
}

/* ==== Compléments WordPress (hors maquette) ==== */
img { max-width: 100%; height: auto; }
a { color: var(--link); }
.product-img img { width: 100%; height: 100%; object-fit: contain; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.search-wrapper { position: relative; }
.search-input, .search-category { height: 40px; font-family: inherit; }
.tool-line2 svg { width: 18px; height: 18px; fill: #FFF; }
.entry-content { background: var(--bg); border-radius: 8px; padding: 24px; margin-top: 16px; line-height: 1.6; }
.entry-content p { margin-bottom: 1em; }


/* WooCommerce : pages boutique / produit */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; list-style: none; margin: 0 0 32px; padding: 0; }
.woocommerce ul.products li.product { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin: 0; width: auto; float: none; }
.woocommerce ul.products li.product:hover { box-shadow: 0 4px 12px rgba(15,17,17,0.15); }
.woocommerce ul.products li.product .product-card { display: block; }
.woocommerce ul.products li.product a { text-decoration: none; color: var(--ink); }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 16px; font-size: 13px; }
.woocommerce .woocommerce-ordering select { padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; }
.woocommerce div.product { background: var(--bg); border-radius: 8px; padding: 24px; margin-top: 16px; }
.woocommerce div.product .price { color: var(--ink); font-weight: 700; font-size: 21px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce a.add_to_cart_button, .woocommerce button.single_add_to_cart_button {
    background: var(--shopme-orange); color: #FFF; border: none; border-radius: 8px; padding: 10px 24px; font-weight: 600; cursor: pointer; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce a.add_to_cart_button:hover, .woocommerce button.single_add_to_cart_button:hover { background: var(--shopme-orange-hover); color: #FFF; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 4px; margin: 0 2px; display: inline-block; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--shopme-blue); color: #FFF; }
@media (max-width: 1200px) { .woocommerce ul.products { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }

/* ==== Pages intérieures (boutique, produit, panier, compte, pages) ==== */
.content-narrow { max-width: 900px; }
.page-card, .woocommerce div.product, .woocommerce-cart .content > .woocommerce, .woocommerce-checkout .content > .woocommerce, .woocommerce-account .content > .woocommerce { background: var(--bg); border-radius: 8px; padding: 24px; }
.page-card .section-title { margin-bottom: 16px; }
.entry-content { background: none; padding: 0; margin: 0; line-height: 1.6; font-size: 14px; }
.entry-content h3 { font-size: 16px; margin: 16px 0 8px; }
.entry-content ul, .entry-content ol { margin: 0 0 1em 1.4em; }
.entry-content a { color: var(--link); text-decoration: none; }
.entry-content a:hover { color: var(--link-hover); text-decoration: underline; }

/* Page Livraison : parcours clair et léger, sans image externe */
.delivery-eyebrow { margin: 0 0 6px; color: var(--link-hover); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.delivery-lead { max-width: 720px; font-size: 16px; line-height: 1.65; }
.delivery-route { position: relative; margin: 18px 0 30px; }
.delivery-route::before { content: ''; position: absolute; top: 24px; bottom: 24px; left: 23px; width: 2px; background: var(--border); }
.delivery-step { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; padding: 0 0 22px; }
.delivery-step:last-child { padding-bottom: 0; }
.delivery-step-icon { position: relative; z-index: 1; width: 48px; height: 48px; border: 2px solid var(--shopme-orange); border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.delivery-step-icon svg { width: 23px; height: 23px; fill: var(--shopme-orange); }
.delivery-step-number { margin: 0 0 2px; color: var(--link-hover); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.delivery-step h3 { margin: 0 0 5px; font-size: 16px; }
.delivery-step p:last-child { margin-bottom: 0; color: var(--ink-secondary); }
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.delivery-options > div { border: 1px solid var(--border); border-radius: 8px; padding: 11px 13px; background: var(--bg-subtle); }
.delivery-options strong, .delivery-options span { display: block; }
.delivery-options span { margin-top: 2px; color: var(--ink-secondary); font-size: 13px; }
.delivery-local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 14px 0 26px; }
.delivery-local-card { border: 1px solid var(--border); border-radius: 8px; padding: 18px; background: var(--bg-subtle); }
.delivery-local-card strong { display: block; margin: 9px 0 5px; font-size: 18px; }
.delivery-local-card p { margin: 0; color: var(--ink-secondary); font-size: 13px; }
.delivery-local-badge { display: inline-block; padding: 3px 9px; border-radius: 20px; background: var(--shopme-blue-dark); color: #FFF; font-size: 11px; font-weight: 700; }
.delivery-examples { margin: 30px 0 26px; }
.delivery-examples > h2 { margin-top: 4px; }
.delivery-example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0 14px; }
.delivery-example-card { overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); }
.delivery-example-card.is-express { border-top: 4px solid var(--shopme-orange); }
.delivery-example-card.is-normal { border-top: 4px solid var(--shopme-blue-dark); }
.delivery-example-head { display: flex; align-items: center; gap: 11px; padding: 15px 16px 12px; background: var(--bg-subtle); }
.delivery-example-head > div span, .delivery-example-head > div strong { display: block; }
.delivery-example-head > div span { color: var(--ink-secondary); font-size: 12px; }
.delivery-example-head > div strong { font-size: 15px; }
.delivery-example-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.delivery-example-line { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; height: 18px; margin: 11px 25px 2px; background: linear-gradient(var(--border), var(--border)) center / 100% 2px no-repeat; }
.delivery-example-line i { width: 10px; height: 10px; border-radius: 50%; background: var(--shopme-orange); justify-self: center; box-shadow: 0 0 0 3px var(--bg); }
.delivery-example-card ol { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 0; padding: 0 12px 14px; text-align: center; }
.delivery-example-card li span, .delivery-example-card li strong { display: block; }
.delivery-example-card li span { margin-bottom: 3px; color: var(--link-hover); font-size: 11px; font-weight: 700; line-height: 1.3; }
.delivery-example-card li strong { font-size: 11px; line-height: 1.35; }
.delivery-calculation { margin: 12px 16px 9px; padding: 10px 12px; border-radius: 7px; background: var(--bg-subtle); text-align: center; }
.delivery-calculation strong, .delivery-calculation span { display: block; }
.delivery-calculation strong { font-size: 17px; color: var(--shopme-blue-dark); }
.delivery-calculation span { color: var(--ink-secondary); font-size: 12px; }
.delivery-example-card.is-normal ol { grid-template-columns: 1fr; gap: 8px; padding: 0 16px 14px; text-align: left; }
.delivery-example-card.is-normal li { padding-left: 12px; border-left: 3px solid var(--shopme-blue-dark); }
.delivery-example-result { margin: 0; padding: 13px 16px; border-top: 1px solid var(--border); background: var(--bg-subtle); color: var(--ink-secondary); font-size: 12px; }
.delivery-example-result strong { color: var(--ink); }
.delivery-example-note { padding: 14px 16px; border-radius: 8px; background: var(--shopme-orange-light); font-size: 13px; }
.delivery-notice { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px; margin: 26px 0; padding: 18px; border-left: 4px solid var(--shopme-orange); border-radius: 8px; background: #FFF8EC; }
.delivery-notice-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--shopme-orange); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: Georgia, serif; }
.delivery-notice h2 { margin: 0 0 8px; padding: 0; font-size: 17px; }
.delivery-notice p { margin: 0 0 8px; font-size: 13px; }
.delivery-notice p:last-child { margin-bottom: 0; }
.delivery-faq details { margin-bottom: 8px; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); }
.delivery-faq summary { cursor: pointer; font-weight: 600; }
.delivery-faq details p { margin: 8px 0 0; color: var(--ink-secondary); }
.delivery-mini-notice { margin: 22px 0; padding: 16px 18px; border-left: 4px solid var(--shopme-orange); border-radius: 8px; background: var(--bg-subtle); }
.delivery-mini-notice > strong { display: block; margin-bottom: 7px; font-size: 16px; }
.delivery-mini-notice p { margin-bottom: 8px; }
.delivery-mini-notice a { font-weight: 700; }

/* Page Paiement et champs Mobile Money du checkout */
.payment-eyebrow { margin: 0 0 6px; color: var(--link-hover); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.payment-lead { max-width: 680px; font-size: 16px; line-height: 1.65; }
.payment-brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0 28px; }
.payment-brand-card { min-height: 128px; padding: 18px 14px; border: 1px solid var(--border); border-radius: 9px; background: var(--bg-subtle); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.payment-brand-card > strong { margin-top: 9px; font-size: 14px; }
.payment-brand-card > span:last-child { color: var(--ink-secondary); font-size: 12px; }
.mobile-money-logo { height: 42px; min-width: 110px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.mobile-money-logo img { display: block; width: auto; max-width: 130px; height: 38px; object-fit: contain; }
.mobile-money-logo-airtel img { width: 36px; }
.mobile-money-logo-airtel > span { color: #e40000; font-size: 20px; font-weight: 700; letter-spacing: -.03em; }
.payment-steps { list-style: none; margin: 14px 0 26px !important; padding: 0; display: grid; gap: 11px; }
.payment-steps li { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 13px; padding: 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); }
.payment-steps li > p:empty { display: none; }
.payment-step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--shopme-blue-dark); color: #FFF; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.payment-steps h3 { margin: 1px 0 4px; font-size: 15px; }
.payment-steps p { margin: 0; color: var(--ink-secondary); font-size: 13px; }
.payment-security-note { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 13px; margin: 22px 0; padding: 16px; border-left: 4px solid var(--success); border-radius: 8px; background: #eef8f0; }
.payment-security-note > p:empty, .payment-security-note div > p:empty { display: none; }
.payment-security-note svg { width: 34px; height: 34px; fill: var(--success); }
.payment-security-note strong { display: block; margin-bottom: 3px; }
.payment-security-note p { margin: 0; color: var(--ink-secondary); font-size: 13px; }
.checkout-payment-brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 10px 0; }
.checkout-payment-brand { min-width: 0; padding: 9px 7px; border: 1px solid var(--border); border-radius: 7px; text-align: center; background: var(--bg-subtle); }
.checkout-payment-brand .mobile-money-logo { min-width: 0; width: 100%; height: 32px; }
.checkout-payment-brand .mobile-money-logo img { max-width: 90px; height: 28px; }
.checkout-payment-brand .mobile-money-logo-airtel img { width: 27px; }
.checkout-payment-brand .mobile-money-logo-airtel > span { font-size: 15px; }
.checkout-payment-number { display: block; margin-top: 6px; color: var(--ink-secondary); font-size: 10px; line-height: 1.3; overflow-wrap: anywhere; }
.checkout-payment-warning { margin: 9px 0 !important; padding: 9px 11px; border-left: 3px solid var(--shopme-orange); border-radius: 5px; background: var(--shopme-orange-light); color: var(--ink) !important; font-size: 12px; }
.checkout-mobile-money .form-row { margin-top: 10px; }
.checkout-mobile-money .required { color: var(--error); }
.checkout-payment-help { margin: 10px 0 0 !important; color: var(--ink-secondary); font-size: 12px; }
.mobile-payment-status { margin: 20px 0; padding: 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-subtle); }
.mobile-payment-status h2 { margin: 0 0 8px; font-size: 17px; }
.mobile-payment-status p { margin: 4px 0; }
.mobile-payment-status code { padding: 2px 5px; border-radius: 4px; background: var(--bg-muted); color: var(--ink); }
.payment-verification-status { font-weight: 700; }
.payment-verification-status.is-pending { color: var(--link-hover); }
.payment-verification-status.is-confirmed { color: var(--success); }
.mobile-payment-status-note { color: var(--ink-secondary); font-size: 12px; }
@media (max-width: 600px) {
    .page-card { padding: 18px 16px; }
    .delivery-options, .delivery-local-grid, .delivery-example-grid { grid-template-columns: 1fr; }
    .delivery-example-line { display: none; }
    .delivery-example-card.is-express ol { grid-template-columns: 1fr; gap: 8px; padding: 12px 16px 14px; text-align: left; }
    .delivery-example-card.is-express li { padding-left: 12px; border-left: 3px solid var(--shopme-orange); }
    .delivery-example-card li span, .delivery-example-card li strong { font-size: 12px; }
    .delivery-step { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; }
    .delivery-route::before { left: 20px; }
    .delivery-step-icon { width: 42px; height: 42px; }
    .delivery-step-icon svg { width: 20px; height: 20px; }
    .delivery-notice { grid-template-columns: 1fr; }
    .payment-brand-grid { grid-template-columns: 1fr; }
    .payment-brand-card { min-height: 105px; }
    .checkout-payment-brands { grid-template-columns: 1fr; }
    .checkout-payment-brand { display: grid; grid-template-columns: 120px minmax(0, 1fr); align-items: center; text-align: left; }
    .checkout-payment-number { margin: 0; font-size: 11px; }
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 13px; color: var(--ink); text-decoration: none; }
.chip:hover { border-color: var(--shopme-orange); color: var(--ink); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 13px; color: var(--ink-secondary); }
.shop-toolbar p { margin: 0; }
.shop-toolbar select { padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg); font-family: inherit; }
.empty-state { text-align: center; padding: 48px 16px; }
.empty-state p { margin-bottom: 16px; color: var(--ink-secondary); }
.breadcrumb { font-size: 12px; color: var(--ink-secondary); margin-bottom: 12px; }
.breadcrumb a { color: var(--link); text-decoration: none; }
.archive-desc { margin-bottom: 12px; color: var(--ink-secondary); }
.woocommerce nav.woocommerce-pagination { text-align: center; margin-bottom: 32px; }
.woocommerce nav.woocommerce-pagination ul { display: inline-flex; gap: 4px; list-style: none; border: none; }
.woocommerce nav.woocommerce-pagination ul li { border: none; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 4px; display: inline-block; color: var(--ink); text-decoration: none; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--shopme-blue-dark); color: #FFF; }

/* Fiche produit */
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; margin-bottom: 32px; }
.woocommerce div.product .woocommerce-product-gallery { background: var(--bg-subtle); border-radius: 8px; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.woocommerce div.product .woocommerce-product-gallery img { width: 100%; height: auto; }
.woocommerce div.product .woocommerce-product-gallery__wrapper { width: 100%; }
.woocommerce div.product .product_title { font-size: 24px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 8px; font-size: 13px; }
.woocommerce div.product p.price { font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.woocommerce div.product p.price del { color: var(--ink-tertiary); font-weight: 400; font-size: 16px; margin-right: 8px; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--ink-secondary); margin-bottom: 16px; line-height: 1.6; }
.woocommerce div.product form.cart { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.woocommerce div.product form.cart .quantity input { width: 64px; height: 42px; border: 1px solid var(--border); border-radius: 8px; text-align: center; font-size: 14px; }
.woocommerce div.product form.cart .button { height: 42px; }
.woocommerce div.product .stock { font-size: 13px; color: var(--success); font-weight: 600; margin-bottom: 8px; }
.woocommerce div.product .stock.out-of-stock { color: var(--error); }
.btn-whatsapp { background: #25D366; color: #FFF; width: 100%; margin: 4px 0 12px; }
.btn-whatsapp:hover { background: #1DA851; color: #FFF; }
.product-reassurance { list-style: none; border-top: 1px solid var(--border); padding-top: 12px; font-size: 13px; color: var(--ink-secondary); }
.product-reassurance li { padding: 3px 0 3px 18px; position: relative; }
.product-reassurance li::before { content: '✓'; color: var(--success); position: absolute; left: 0; font-weight: 700; }
.woocommerce div.product .product_meta { font-size: 12px; color: var(--ink-tertiary); margin-top: 12px; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; }
.woocommerce div.product .woocommerce-tabs ul.tabs { display: flex; gap: 4px; list-style: none; border-bottom: 1px solid var(--border); margin-bottom: 16px; padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { padding: 0; margin: 0; border: none; background: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { display: block; padding: 10px 16px; font-weight: 600; color: var(--ink-secondary); border-bottom: 2px solid transparent; text-decoration: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--ink); border-bottom-color: var(--shopme-orange); }
.woocommerce div.product .woocommerce-tabs .panel { line-height: 1.6; }
.woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 16px; margin-bottom: 8px; }
.woocommerce div.product .related, .woocommerce div.product .upsells { grid-column: 1 / -1; }
.woocommerce div.product .related > h2, .woocommerce div.product .upsells > h2 { font-size: 21px; font-weight: 700; margin-bottom: 16px; }
.woocommerce div.product .related ul.products, .woocommerce div.product .upsells ul.products { margin-bottom: 0; }
@media (max-width: 900px) { .woocommerce div.product { grid-template-columns: 1fr; } }

/* Panier / commande / compte : formulaires */
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; border: none; font-size: 13px; margin-bottom: 16px; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 10px 8px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.woocommerce table.shop_table img { width: 56px; height: 56px; object-fit: contain; }
.woocommerce table.shop_table .product-remove a { color: var(--error); font-size: 18px; text-decoration: none; }
.woocommerce .quantity input.qty { width: 60px; padding: 6px; border: 1px solid var(--border); border-radius: 4px; text-align: center; }
.woocommerce .cart-collaterals { max-width: 420px; margin-left: auto; }
.woocommerce .cart_totals h2, .woocommerce-checkout h3, .woocommerce-account h2, .woocommerce-account h3 { font-size: 18px; font-weight: 700; margin: 16px 0 8px; }
.woocommerce form .form-row { margin-bottom: 12px; }
.woocommerce form .form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .woocommerce .select2-container .select2-selection--single { width: 100%; padding: 9px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; height: auto; }
.woocommerce .select2-container .select2-selection--single { height: 40px; }
.woocommerce .select2-container .select2-selection--single .select2-selection__rendered { line-height: 22px; }
.woocommerce .select2-container .select2-selection--single .select2-selection__arrow { height: 38px; }
.woocommerce-checkout #customer_details { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 { width: auto; float: none; }
.woocommerce-checkout #payment { background: var(--bg-subtle); border-radius: 8px; padding: 16px; margin-top: 16px; }
.woocommerce-checkout #payment ul.payment_methods { list-style: none; padding: 0; margin-bottom: 12px; }
.woocommerce-checkout #payment ul.payment_methods li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.woocommerce-checkout #payment ul.payment_methods li label { font-weight: 600; margin-left: 6px; }
.woocommerce-checkout #payment .payment_box { background: var(--bg); padding: 10px 12px; border-radius: 6px; margin-top: 8px; font-size: 13px; color: var(--ink-secondary); }
.woocommerce-checkout #place_order, .woocommerce .wc-proceed-to-checkout a.checkout-button { width: 100%; display: block; text-align: center; font-size: 15px; }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .woocommerce .woocommerce-error { list-style: none; padding: 12px 16px; border-left: 4px solid var(--success); background: var(--bg-subtle); border-radius: 4px; margin-bottom: 16px; font-size: 13px; }
.woocommerce .woocommerce-info { border-left-color: var(--shopme-blue-dark); }
.woocommerce .woocommerce-error { border-left-color: var(--error); }
.woocommerce .woocommerce-message a.button, .woocommerce .woocommerce-info a.button { float: right; padding: 6px 12px; font-size: 12px; }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 8px 12px; border-radius: 6px; color: var(--ink); text-decoration: none; font-size: 13px; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a, .woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: var(--bg-subtle); font-weight: 600; }
.woocommerce-account .woocommerce-MyAccount-content { min-width: 0; }
.woocommerce-account:not(.logged-in) .woocommerce { grid-template-columns: 1fr; }
.woocommerce-account .u-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.woocommerce-account .u-columns .col-1, .woocommerce-account .u-columns .col-2 { width: auto; float: none; }
.woocommerce form.login, .woocommerce form.register, .woocommerce form.woocommerce-ResetPassword { border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.woocommerce .woocommerce-order-tracking, .woocommerce .woocommerce-form-track-order { max-width: 480px; }
.woocommerce-cart .content > .woocommerce, .woocommerce-checkout .content > .woocommerce, .woocommerce-account .content > .woocommerce { display: block; }
.woocommerce-account .content > .woocommerce { display: grid; }
.woocommerce .cart-empty, .woocommerce .return-to-shop { text-align: center; }
.woocommerce .return-to-shop { margin-bottom: 16px; }
@media (max-width: 900px) { .woocommerce-checkout #customer_details, .woocommerce-account .woocommerce, .woocommerce-account .u-columns { grid-template-columns: 1fr; } .woocommerce .cart-collaterals { max-width: none; } }
/* Le body woocommerce n'est pas une grille sur les pages simples */
.woocommerce-page .content .page-card { display: block; }

/* Liens : mêmes rendus que la maquette */
a.subnav-right { text-decoration: none; }
a.subnav-right:hover { text-decoration: underline; }
.footer-copy a { color: #999; text-decoration: none; }
.footer-copy a:hover { color: var(--shopme-orange); text-decoration: underline; }
.product-title a { color: inherit; text-decoration: none; }

/* ==== Menu déroulant « Compte & Listes » (survol, façon Amazon) ==== */
.tool-dropdown { position: relative; }
.tool-dropdown .caret { width: 12px; height: 12px; fill: #AAA; margin-left: -2px; }
.account-menu {
    position: absolute; top: 100%; right: 0; z-index: 1200;
    width: 460px; margin-top: 6px; padding: 18px 20px 20px;
    background: #FFF; color: var(--ink); border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .12s, transform .12s, visibility .12s;
}
.account-menu::before { content: ''; position: absolute; top: -8px; right: 70px; border: 8px solid transparent; border-top: 0; border-bottom-color: #FFF; }
.tool-dropdown:hover .account-menu, .tool-dropdown.is-open .account-menu, .tool-dropdown:focus-within .account-menu { opacity: 1; visibility: visible; transform: none; }
.tool-dropdown:hover > .tool, .tool-dropdown.is-open > .tool { border-color: #FFF; }
.tool-dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 8px; } /* pont pour ne pas perdre le survol */
.account-menu-top { text-align: center; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.btn-block { display: flex; width: 220px; margin: 0 auto 8px; }
.account-menu-top p { font-size: 12px; color: var(--ink-secondary); }
.account-menu-top p a { color: var(--link); }
.account-menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.account-menu-col:first-child { border-right: 1px solid var(--border); padding-right: 20px; }
.account-menu-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.account-menu-col a { display: block; font-size: 13px; color: var(--ink-secondary); text-decoration: none; padding: 3px 0; }
.account-menu-col a:hover { color: var(--link-hover); text-decoration: underline; }
@media (max-width: 600px) { .header { position: relative; } .tool-dropdown { position: static; } .account-menu { left: 8px; right: 8px; top: 100%; width: auto; margin-top: 0; padding: 14px 16px; } .account-menu::before { display: none; } .tool-dropdown::after { display: none; } }

/* ==== Page « Qui sommes-nous » ==== */
.about-hero { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: center; margin-bottom: 24px; }
.about-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--shopme-orange); font-weight: 700; margin-bottom: 8px; }
.about-lead { font-size: 16px; line-height: 1.6; }
.about-illu svg { width: 100%; height: auto; display: block; }
.entry-content h2 { font-size: 21px; font-weight: 700; margin: 28px 0 12px; padding-top: 4px; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 16px 0 8px; }
.about-card { background: var(--bg-subtle); border-radius: 8px; padding: 18px; }
.about-card svg { width: 32px; height: 32px; fill: var(--shopme-orange); margin-bottom: 10px; }
.about-card h3 { font-size: 15px; margin: 0 0 6px; }
.about-card p { font-size: 13px; color: var(--ink-secondary); margin: 0; line-height: 1.5; }
.about-table-wrap { overflow-x: auto; margin: 12px 0; }
.about-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.about-table th, .about-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.about-table thead th { background: var(--bg-subtle); font-weight: 700; }
.about-table .is-shopme { background: #FFF8EC; font-weight: 600; }
.about-table thead .is-shopme { background: var(--shopme-orange); color: var(--ink); }
.about-steps { list-style: none; margin: 8px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-steps li { display: flex; gap: 12px; background: var(--bg-subtle); border-radius: 8px; padding: 14px; }
.about-step-n { flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--shopme-blue-dark); color: #FFF; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.about-steps h3 { font-size: 14px; margin: 4px 0 4px; }
.about-steps p { font-size: 13px; color: var(--ink-secondary); margin: 0; line-height: 1.5; }
.about-checks { list-style: none; margin: 8px 0; padding: 0; }
.about-checks li { padding: 6px 0 6px 26px; position: relative; line-height: 1.5; }
.about-checks li::before { content: '✓'; position: absolute; left: 4px; color: var(--success); font-weight: 700; }
.about-faq details { border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; margin-bottom: 8px; background: var(--bg); }
.about-faq summary { cursor: pointer; font-weight: 600; }
.about-faq p { margin: 8px 0 0; color: var(--ink-secondary); line-height: 1.5; }
.about-legal { background: var(--bg-subtle); border-radius: 8px; padding: 18px 20px; margin-top: 24px; font-size: 13px; }
.about-legal h2 { margin-top: 0; }
.about-legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 10px; }
.about-legal-grid dt { font-weight: 700; margin-bottom: 2px; }
.about-legal-grid dd { margin: 0; color: var(--ink-secondary); line-height: 1.5; }
.about-legal em { color: var(--error); font-style: normal; }
.about-cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--bg-subtle); }
@media (max-width: 700px) {
    .about-hero, .about-cards, .about-steps, .about-legal-grid { grid-template-columns: 1fr; }
    .about-table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .about-table { min-width: 720px; }
}

/* ==== Retours, garantie, réclamations et CGV ==== */
.policy-intro { margin-bottom: 22px; }
.policy-eyebrow { margin: 0 0 6px; color: var(--link-hover); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.policy-lead { max-width: 760px; font-size: 16px; line-height: 1.65; }
.policy-updated { color: var(--ink-secondary); font-size: 12px; }
.policy-highlight, .policy-legal-note, .policy-contact-box, .policy-warranty { margin: 20px 0; padding: 17px 19px; border-radius: 8px; }
.policy-highlight { border-left: 4px solid var(--shopme-orange); background: var(--shopme-orange-light); }
.policy-warranty { border: 1px solid var(--border); background: var(--bg-subtle); }
.policy-legal-note { border-left: 4px solid var(--success); background: #eef8f0; }
.policy-contact-box { border: 1px solid var(--border); background: var(--bg-subtle); }
.policy-highlight > strong, .policy-legal-note > strong { display: block; margin-bottom: 5px; font-size: 16px; }
.policy-highlight p, .policy-legal-note p, .policy-contact-box p, .policy-warranty p { margin-bottom: 8px; }
.policy-highlight p:last-child, .policy-legal-note p:last-child, .policy-contact-box p:last-child, .policy-warranty p:last-child { margin-bottom: 0; }
.policy-contact-box h2 { margin-top: 0; }
.entry-content .policy-list { margin-left: 0; padding-left: 0; list-style: none; }
.policy-list li { position: relative; padding: 5px 0 5px 25px; }
.policy-list li::before { content: '✓'; position: absolute; left: 3px; color: var(--success); font-weight: 800; }
.policy-exclusions li::before { content: '-'; color: var(--link-hover); }
.entry-content .policy-steps { margin: 14px 0 22px; padding: 0; list-style: none; counter-reset: policy-step; display: grid; gap: 10px; }
.policy-steps li { position: relative; min-height: 40px; padding: 11px 13px 11px 52px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); counter-increment: policy-step; }
.policy-steps li::before { content: counter(policy-step); position: absolute; top: 10px; left: 12px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--shopme-blue-dark); color: #fff; font-weight: 700; }
.policy-small { color: var(--ink-secondary); font-size: 12px; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 22px; }
.privacy-grid article { padding: 15px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-subtle); }
.privacy-grid h3 { margin: 0 0 5px; font-size: 15px; }
.privacy-grid p { margin: 0; color: var(--ink-secondary); font-size: 13px; }
.policy-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.claim-intro { padding: 14px 16px; border-left: 4px solid var(--shopme-orange); border-radius: 6px; background: var(--shopme-orange-light); margin-bottom: 22px; }
.claim-intro p:last-child { margin-bottom: 0; }
.claim-list { display: grid; gap: 9px; margin: 10px 0 24px; }
.claim-card { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 15px; border: 1px solid var(--border); border-radius: 8px; }
.claim-card div { display: grid; gap: 2px; }
.claim-card span { color: var(--ink-secondary); font-size: 12px; }
.claim-status { flex: none; padding: 5px 9px; border-radius: 999px; background: var(--bg-subtle); color: var(--ink) !important; font-weight: 700; }
.claim-status-resolved { background: #e8f6eb; color: var(--success) !important; }
.claim-status-rejected { background: #fff0f0; color: var(--error) !important; }
.shopme-claim-form { max-width: 760px; }
.shopme-claim-form label { display: block; margin-bottom: 5px; font-weight: 700; }
.shopme-claim-form select, .shopme-claim-form input[type="text"], .shopme-claim-form input[type="file"], .shopme-claim-form textarea { width: 100%; }
.shopme-claim-form textarea { resize: vertical; }
.shopme-claim-form small { display: block; margin-top: 5px; color: var(--ink-secondary); line-height: 1.45; }
@media (max-width: 600px) {
    .policy-highlight, .policy-legal-note, .policy-contact-box, .policy-warranty { padding: 14px 15px; }
    .privacy-grid { grid-template-columns: 1fr; }
    .claim-card { align-items: flex-start; flex-direction: column; }
}

/* ==== Centre d'aide ==== */
.page-id-33 .content-narrow { max-width: 1200px; }
.page-id-33 .page-card { padding: 0; overflow: hidden; }
.page-id-33 .page-card > .section-title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.help-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.help-kicker { margin: 0 0 6px; color: var(--shopme-orange); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.help-hero { position: relative; min-height: 280px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr); align-items: center; gap: 28px; padding: 40px 48px; overflow: hidden; color: #fff; background: radial-gradient(circle at 85% 12%, rgba(255,153,0,.2), transparent 28%), linear-gradient(135deg,#131921 0%,#232f3e 62%,#37475a 100%); }
.help-hero::after { content: ''; position: absolute; right: -70px; bottom: -130px; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.help-hero-copy { position: relative; z-index: 1; }
.help-hero h2 { max-width: 620px; margin: 0 0 10px; color: #fff; font-size: clamp(28px,4vw,43px); line-height: 1.08; }
.help-hero-copy > p:not(.help-kicker) { max-width: 650px; margin: 0 0 22px; color: #d6dce5; font-size: 15px; line-height: 1.6; }
.help-search { max-width: 650px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 2px solid transparent; border-radius: 8px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.23); }
.help-search:focus-within { border-color: var(--shopme-orange); }
.help-search svg { width: 21px; height: 21px; flex: none; fill: #667085; }
.help-search input { width: 100%; min-height: 52px; padding: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 15px; }
.help-hero-art { position: relative; z-index: 1; }
.help-hero-art svg { display: block; width: 100%; height: auto; max-height: 220px; }
.help-art-road { fill: none; stroke: rgba(255,255,255,.26); stroke-width: 3; stroke-dasharray: 7 8; }
.help-art-dot,.help-art-button { fill: var(--shopme-orange); }
.help-art-card,.help-art-screen { fill: #fff; stroke: rgba(255,255,255,.4); stroke-width: 2; }
.help-art-screen { fill: #e9f1fa; }
.help-art-line { fill: none; stroke: #8ba0b9; stroke-width: 5; stroke-linecap: round; }
.help-art-box,.help-art-check { fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.help-art-box { fill: rgba(255,153,0,.22); stroke: var(--shopme-orange); }
.help-now { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: -22px 30px 0; }
.help-now a { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 15px 17px; border: 1px solid var(--border); border-radius: 9px; color: var(--ink); background: #fff; box-shadow: 0 6px 18px rgba(19,25,33,.1); text-decoration: none; }
.help-now a:hover { border-color: var(--shopme-orange); transform: translateY(-2px); }
.help-now svg { width: 28px; height: 28px; flex: none; fill: none; stroke: var(--shopme-orange); stroke-width: 1.8; }
.help-now span { min-width: 0; display: grid; }
.help-now strong { font-size: 14px; }
.help-now small { overflow: hidden; color: var(--ink-secondary); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.help-section,.help-journey,.help-faq,.help-seller { padding: 42px 40px 0; }
.help-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.help-section-heading h2,.help-seller h2 { margin: 0; font-size: 25px; }
.help-result-count { color: var(--ink-secondary); font-size: 12px; }
.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.help-card { min-height: 116px; display: grid; grid-template-columns: 43px 1fr 18px; align-items: start; gap: 12px; padding: 17px; border: 1px solid var(--border); border-radius: 10px; color: var(--ink); background: #fff; text-decoration: none; transition: transform .16s,border-color .16s,box-shadow .16s; }
.help-card:hover { transform: translateY(-3px); border-color: #f0a23a; box-shadow: 0 9px 20px rgba(19,25,33,.09); }
.help-card[hidden] { display: none; }
.help-icon { width: 43px; height: 43px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--shopme-orange); background: var(--shopme-orange-light); }
.help-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.help-card > span:nth-child(2) { display: grid; gap: 5px; }
.help-card strong { font-size: 15px; line-height: 1.25; }
.help-card small { color: var(--ink-secondary); font-size: 12px; line-height: 1.45; }
.help-card b { color: #9aa4b2; font-size: 18px; }
.help-empty { padding: 28px; border: 1px dashed var(--border); border-radius: 9px; text-align: center; background: var(--bg-subtle); }
.help-empty p { margin: 5px 0 0; }
.help-journey { margin-top: 42px; padding-bottom: 38px; background: var(--bg-subtle); }
.help-journey-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.help-journey-steps article { position: relative; min-width: 0; padding: 19px 20px 16px; border-right: 1px dashed #bbc3cd; text-align: center; }
.help-journey-steps article:last-child { border-right: 0; }
.help-journey-steps article > span { position: absolute; top: 3px; left: 10px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--shopme-blue-dark); font-size: 11px; font-weight: 800; }
.help-journey-steps svg { width: 38px; height: 38px; margin-bottom: 8px; fill: none; stroke: var(--shopme-orange); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.help-journey-steps h3 { margin: 0 0 6px; font-size: 15px; }
.help-journey-steps p { margin: 0; color: var(--ink-secondary); font-size: 12px; line-height: 1.45; }
.help-faq { padding-bottom: 42px; }
.help-faq details { margin-bottom: 8px; border: 1px solid var(--border); border-radius: 9px; background: #fff; }
.help-faq summary { position: relative; padding: 14px 44px 14px 16px; cursor: pointer; font-weight: 700; list-style: none; }
.help-faq summary::-webkit-details-marker { display: none; }
.help-faq summary::after { content: '+'; position: absolute; top: 10px; right: 15px; color: var(--shopme-orange); font-size: 24px; font-weight: 400; }
.help-faq details[open] summary::after { content: '−'; }
.help-faq details[open] summary { border-bottom: 1px solid var(--border); }
.help-faq details p { margin: 0; padding: 13px 16px 16px; color: var(--ink-secondary); line-height: 1.6; }
.help-seller { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 30px; padding-bottom: 30px; color: #fff; background: #232f3e; }
.help-seller > div:first-child { display: flex; align-items: center; gap: 15px; }
.help-seller .help-icon { flex: none; }
.help-seller h2 { color: #fff; }
.help-seller p:not(.help-kicker) { max-width: 530px; margin: 5px 0 0; color: #d6dce5; font-size: 13px; }
.help-seller-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.help-seller-links a { padding: 8px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 6px; color: #fff; font-size: 12px; text-decoration: none; }
.help-seller-links a:hover { border-color: var(--shopme-orange); color: var(--shopme-orange); }
.help-contact-strip { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 15px; padding: 26px 40px; background: #fff7e8; }
.help-contact-strip > svg { width: 40px; height: 40px; fill: none; stroke: var(--shopme-orange); stroke-width: 1.7; }
.help-contact-strip strong { font-size: 17px; }
.help-contact-strip p { margin: 3px 0 0; color: var(--ink-secondary); font-size: 12px; }
@media (max-width: 900px) {
    .help-hero { grid-template-columns: 1fr; }
    .help-hero-art { display: none; }
    .help-grid { grid-template-columns: 1fr 1fr; }
    .help-journey-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
    .help-journey-steps article { border: 1px dashed #bbc3cd; border-radius: 8px; }
    .help-seller { align-items: flex-start; flex-direction: column; }
    .help-seller-links { justify-content: flex-start; }
}
@media (max-width: 650px) {
    .page-id-33 .content { padding-left: 0; padding-right: 0; }
    .page-id-33 .page-card { border-radius: 0; }
    .help-hero { min-height: 245px; padding: 31px 20px 45px; }
    .help-hero h2 { font-size: 29px; }
    .help-now { grid-template-columns: 1fr; margin: -23px 15px 0; }
    .help-now small { white-space: normal; }
    .help-section,.help-journey,.help-faq,.help-seller { padding-left: 18px; padding-right: 18px; }
    .help-section { padding-top: 34px; }
    .help-grid,.help-journey-steps { grid-template-columns: 1fr; }
    .help-card { min-height: 0; }
    .help-contact-strip { grid-template-columns: 38px 1fr; padding: 23px 18px; }
    .help-contact-strip > svg { width: 32px; height: 32px; }
    .help-contact-strip .btn { grid-column: 1 / -1; width: 100%; text-align: center; }
}

/* ==== Confiance / fidélisation (accueil) ==== */
.loyalty { padding: 28px 0 36px; }
.loyalty .content { padding-top: 0; }
.loyalty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.loyalty-card { padding: 20px 18px; border: 1px solid var(--border); border-radius: 10px; background: #fff; transition: transform .16s, box-shadow .16s, border-color .16s; }
.loyalty-card:hover { transform: translateY(-3px); border-color: #f0a23a; box-shadow: 0 8px 20px rgba(19,25,33,.09); }
.loyalty-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; border-radius: 10px; background: var(--shopme-orange-light); }
.loyalty-icon svg { width: 24px; height: 24px; fill: var(--shopme-orange); }
.loyalty-card h3 { margin: 0 0 6px; font-size: 16px; }
.loyalty-card p { margin: 0; color: var(--ink-secondary); font-size: 13px; line-height: 1.55; }
.loyalty-cta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 22px 0 4px; }
@media (max-width: 900px) { .loyalty-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .loyalty-grid { grid-template-columns: 1fr; } }

/* ==== Page Contact ==== */
.page-id-34 .content-narrow { max-width: 1200px; }
.page-id-34 .page-card { padding: 0; overflow: hidden; }
.page-id-34 .page-card > .section-title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.contact-hero { min-height: 250px; }
.contact-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn-light { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.contact-before { padding: 30px 40px 0; }
.contact-before-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.contact-before-grid a { display: grid; gap: 4px; padding: 15px 16px; border: 1px solid var(--border); border-left: 4px solid var(--shopme-orange); border-radius: 9px; color: var(--ink); background: #fff; text-decoration: none; transition: transform .16s, box-shadow .16s; }
.contact-before-grid a:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(19,25,33,.09); }
.contact-before-grid strong { font-size: 14px; }
.contact-before-grid small { color: var(--ink-secondary); font-size: 12px; line-height: 1.45; }
.contact-channels { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding: 30px 40px 0; }
.contact-channel { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; padding: 15px 17px; border: 1px solid var(--border); border-radius: 10px; color: var(--ink); background: #fff; text-decoration: none; }
.contact-channel > svg { width: 44px; height: 44px; padding: 9px; border-radius: 10px; fill: none; stroke: var(--shopme-orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; background: var(--shopme-orange-light); }
.contact-channel.is-whatsapp > svg { stroke: #128c4a; background: #e3f6ea; }
.contact-channel.is-soon { border-style: dashed; }
.contact-channel span { min-width: 0; display: grid; gap: 3px; }
.contact-channel strong { font-size: 15px; }
.contact-channel small { color: var(--ink-secondary); font-size: 12px; line-height: 1.4; }
.contact-channel b { color: #9aa4b2; font-size: 18px; }
a.contact-channel:hover { border-color: #f0a23a; box-shadow: 0 8px 18px rgba(19,25,33,.09); }
.contact-form-wrap { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.3fr); gap: 28px; margin-top: 34px; padding: 36px 40px; background: var(--bg-subtle); }
.contact-form-intro h2 { margin: 0 0 10px; font-size: 25px; }
.contact-form-intro p { color: var(--ink-secondary); font-size: 14px; line-height: 1.55; }
.contact-tips { margin: 14px 0 0; padding: 0; list-style: none; }
.contact-tips li { position: relative; padding: 4px 0 4px 22px; font-size: 13px; }
.contact-tips li::before { content: '✓'; position: absolute; left: 2px; color: var(--success); font-weight: 700; }
.contact-form-card { padding: 24px; border: 1px solid var(--border); border-radius: 12px; background: #fff; box-shadow: 0 6px 18px rgba(19,25,33,.06); }
.contact-form p { margin: 0 0 14px; }
.contact-form label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 700; }
.contact-form label span { color: #c40000; }
.contact-form label em { color: var(--ink-secondary); font-weight: 400; font-style: normal; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 10px 12px; border: 1px solid #a6a6a6; border-radius: 6px; font: inherit; font-size: 14px; background: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--shopme-orange); box-shadow: 0 0 0 3px rgba(255,153,0,.25); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.contact-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-consent { color: var(--ink-secondary); font-size: 12px; line-height: 1.5; }
.contact-submit { width: 100%; padding: 13px; font-size: 15px; }
.contact-alert { margin-bottom: 18px; padding: 14px 16px; border-radius: 8px; border: 1px solid; }
.contact-alert p { margin: 4px 0 0; font-size: 13px; line-height: 1.5; }
.contact-alert.is-success { border-color: #9dd8b0; background: #e8f6ec; color: #0b5a2a; }
.contact-alert.is-error { border-color: #f0b1b1; background: #fdeeee; color: #8a1d1d; }
.contact-promise { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; padding: 30px 40px 0; }
.contact-promise-item { display: grid; gap: 4px; padding: 16px; border-radius: 10px; text-align: center; background: var(--shopme-orange-light); }
.contact-promise-item b { font-size: 22px; color: var(--shopme-blue-dark); }
.contact-promise-item span { color: var(--ink-secondary); font-size: 12px; line-height: 1.4; }
.contact-legal { padding: 34px 40px 38px; }
.contact-legal h2 { margin: 0 0 12px; font-size: 20px; }
@media (max-width: 900px) {
    .contact-before-grid, .contact-promise { grid-template-columns: 1fr 1fr; }
    .contact-form-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
    .page-id-34 .content { padding-left: 0; padding-right: 0; }
    .page-id-34 .page-card { border-radius: 0; }
    .contact-hero { padding: 31px 20px 34px; }
    .contact-before, .contact-channels, .contact-promise, .contact-legal { padding-left: 18px; padding-right: 18px; }
    .contact-before-grid, .contact-channels, .contact-promise { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 18px; }
    .contact-form-card { padding: 18px; }
    .contact-row-2 { grid-template-columns: 1fr; }
}

/* ==== Logo vectoriel ==== */
.logo-svg { display: block; height: 40px; width: auto; }
.footer-logo-svg { display: inline-block; height: 34px; width: auto; }
.footer-logo a { display: inline-block; }
@media (max-width: 650px) { .logo-svg { height: 34px; } }

/* ==== Footer : moyens de paiement ==== */
.footer-payments { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; margin: 14px 0 16px; }
.footer-payments-label { color: #ccc; font-size: 12px; }
.footer-payments-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.footer-payment { display: flex; align-items: center; justify-content: center; height: 36px; min-width: 92px; padding: 4px 12px; border-radius: 8px; background: #fff; }
.footer-payment img { display: block; height: 26px; width: auto; max-width: 110px; object-fit: contain; }
.footer-payment-airtel img { height: 28px; }

/* ==== Correctifs mobile ==== */
.tool-short { display: none; }
@media (max-width: 600px) {
    .header-main { gap: 10px; }
    .header-tools { margin-left: auto; gap: 0; }
    .tool { padding: 6px 7px; white-space: nowrap; }
    .tool-line1 { display: none; }
    .tool-full { display: none; }
    .tool-short { display: inline; }
    .tool-line2 { font-size: 13px; }
    .cat-grid { grid-template-columns: 1fr; gap: 12px; }
    .cat-card { min-width: 0; }
    .cat-items { grid-template-columns: 1fr 1fr; }
    .product-grid > *, .cat-card, .hero { min-width: 0; }
}
@media (max-width: 360px) { .tool-line2 { font-size: 12px; } .tool { padding: 6px 5px; } }

/* ==== Réponses dans le dossier de réclamation ==== */
.claim-card { flex-wrap: wrap; }
.claim-replies, .claim-replies-empty { flex-basis: 100%; margin: 6px 0 0; padding: 0; list-style: none; font-size: 13px; }
.claim-replies-empty { color: var(--ink-secondary); }
.claim-replies li { margin-top: 6px; padding: 8px 10px; border-radius: 6px; background: var(--bg-subtle); }
.claim-replies li.is-team { border-left: 3px solid var(--shopme-orange); }
.claim-replies li small { display: block; color: var(--ink-secondary); font-size: 11px; margin-bottom: 2px; }

/* ==== Bulle de discussion ==== */
.sc-btn { position: fixed; right: 16px; bottom: 16px; z-index: 9990; display: flex; align-items: center; gap: 8px; padding: 12px 16px; border: 0; border-radius: 30px; color: #131921; background: var(--shopme-orange); font: 700 14px/1 inherit; box-shadow: 0 8px 22px rgba(0,0,0,.28); cursor: pointer; }
.sc-btn svg { width: 22px; height: 22px; fill: none; stroke: #131921; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sc-btn.is-open span { display: none; }
.sc { position: fixed; right: 16px; bottom: 76px; z-index: 9991; width: 360px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 100px); display: flex; flex-direction: column; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.sc[hidden] { display: none; }
.sc-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; color: #fff; background: linear-gradient(135deg,#131921,#232f3e); }
.sc-head strong { display: block; font-size: 14px; }
.sc-head small { color: #cfd6df; font-size: 11px; }
.sc-avatar { width: 34px; height: 34px; display: grid; place-items: center; flex: none; overflow: hidden; border-radius: 50%; background: #fff; }
.sc-avatar img { width: 27px; height: 27px; display: block; object-fit: contain; }
.sc-close { margin-left: auto; width: 30px; height: 30px; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); font-size: 20px; cursor: pointer; }
.sc-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; }
.sc-start { display: grid; gap: 8px; padding: 12px 14px; overflow: auto; }
.sc-intro { margin: 0; font-size: 14px; line-height: 1.45; }
.sc-start label { display: grid; gap: 4px; font-size: 12px; font-weight: 700; }
.sc-start label em { font-weight: 400; color: var(--ink-secondary); font-style: normal; }
.sc-start .sc-consent { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; line-height: 1.4; }
.sc-start .sc-consent input { width: 17px; height: 17px; flex: none; margin: 1px 0 0; padding: 0; }
.sc-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.sc-start input, .sc-form input { padding: 8px 10px; border: 1px solid #a6a6a6; border-radius: 8px; font: inherit; font-size: 14px; }
.sc-start input:focus, .sc-form input:focus { outline: none; border-color: var(--shopme-orange); box-shadow: 0 0 0 3px rgba(255,153,0,.25); }
.sc-primary { padding: 12px; border: 0; border-radius: 8px; background: var(--shopme-orange); color: #131921; font: 700 14px inherit; cursor: pointer; }
.sc-privacy { color: var(--ink-secondary); font-size: 11px; line-height: 1.4; }
.sc-err { margin: 0; padding: 8px 10px; border-radius: 6px; background: #fdeeee; color: #8a1d1d; font-size: 12px; }
.sc-msgs { flex: 1; overflow: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; background: #f3f4f6; }
.sc-m { max-width: 85%; padding: 9px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; white-space: normal; }
.sc-client { align-self: flex-end; background: var(--shopme-orange); color: #131921; border-bottom-right-radius: 4px; }
.sc-bot, .sc-team { align-self: flex-start; background: #fff; border-bottom-left-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.sc-team { border-left: 3px solid var(--shopme-orange); }
.sc-system { align-self: center; max-width: 95%; background: transparent; color: var(--ink-secondary); font-size: 12px; text-align: center; }
.sc-link { display: inline-block; margin-top: 6px; color: var(--link); font-weight: 700; text-decoration: none; }
.sc-typing { color: #999; letter-spacing: 3px; }
.sc-actions { display: flex; gap: 8px; padding: 8px 12px; border-top: 1px solid var(--border); background: #fff; }
.sc-human, .sc-wa { flex: 1; padding: 8px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--ink); font: 700 12px inherit; text-align: center; text-decoration: none; cursor: pointer; }
.sc-wa { border-color: #25d366; color: #128c4a; }
.sc-form { display: flex; gap: 8px; padding: 10px 12px; background: #fff; }
.sc-form input { flex: 1; min-width: 0; }
.sc-form button { width: 44px; border: 0; border-radius: 8px; background: var(--shopme-orange); color: #131921; font-size: 16px; cursor: pointer; }
@media (max-width: 600px) { .sc { right: 8px; bottom: 70px; max-width: calc(100vw - 16px); height: min(560px, calc(100vh - 90px)); } .sc-btn { right: 12px; bottom: 12px; } }

/* ==== Blog ==== */
.blog-card { margin-bottom: 18px; }
.blog-card-title { margin: 0 0 4px; font-size: 20px; }
.blog-card-title a { color: var(--ink); text-decoration: none; }
.blog-card-title a:hover { color: var(--link); }
.blog-card-meta { margin: 0 0 10px; color: var(--ink-secondary); font-size: 13px; }
.blog-card-more { margin: 10px 0 0; }
