:root{
  --forest:#1B6B45;
  --forest-dark:#0F4A30;
  --marigold:#E08A2C;
  --terracotta:#B14A2A;
  --ivory:#FBF6EC;
  --sand:#F1E3C6;
  --ink:#2B1D14;
  --ink-soft:#6B5C4E;
  --line:#E4D8C2;
}
*{box-sizing:border-box;}
body{
  margin:0;
  background:var(--ivory);
  font-family:'Work Sans',sans-serif;
  color:var(--ink);
  padding-bottom:70px; /* place pour la tabbar mobile */
}
@media (min-width:992px){ body{ padding-bottom:0; } }

a{ text-decoration:none; color:inherit; }
.container-store{ max-width:1280px; margin:0 auto; padding:0 16px; }
@media (min-width:768px){ .container-store{ padding:0 32px; } }
@media (min-width:1200px){ .container-store{ padding:0 48px; } }

svg.icn{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:20;
  background:var(--ivory);
  border-bottom:1px solid var(--line);
}
.site-header-inner{
  max-width:1280px; margin:0 auto; padding:12px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
@media (min-width:768px){ .site-header-inner{ padding:14px 32px; } }
@media (min-width:1200px){ .site-header-inner{ padding:14px 48px; } }

.desktop-nav{ display:none; align-items:center; gap:28px; margin-right:auto; margin-left:36px; }
@media (min-width:992px){ .desktop-nav{ display:flex; } }
.desktop-nav a{ font-size:14px; font-weight:500; color:var(--ink); position:relative; padding:6px 0; }
.desktop-nav a:hover, .desktop-nav a.active{ color:var(--forest); }
.desktop-nav a.active::after{ content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--forest); border-radius:2px; }
.desktop-nav .dropdown-cats{ position:relative; }
.desktop-nav .dropdown-cats-menu{
  display:none; position:absolute; top:100%; left:0; margin-top:10px;
  background:#fff; border:1px solid var(--line); border-radius:12px; padding:8px;
  min-width:220px; box-shadow:0 12px 28px -12px rgba(43,29,20,.18); z-index:30;
}
.desktop-nav .dropdown-cats:hover .dropdown-cats-menu{ display:block; }
.dropdown-cats-menu a{ display:block; padding:8px 12px; border-radius:8px; font-size:13.5px; }
.dropdown-cats-menu a:hover{ background:var(--sand); }

.brandmark{
  display:flex; align-items:center; gap:8px;
  font-family:'Fraunces',serif; font-weight:600; font-size:20px; color:var(--forest-dark);
}
.brandmark img{ width:32px; height:28px; border-radius:6px; object-fit:cover; }
.icon-row{ display:flex; gap:8px; align-items:center; }
.icon-btn{
  width:36px; height:36px; border-radius:50%;
  background:var(--sand); display:flex; align-items:center; justify-content:center;
  color:var(--forest-dark); position:relative;
}
.icon-btn .badge-count{
  position:absolute; top:-4px; right:-4px;
  background:var(--marigold); color:#3A2005;
  font-size:10px; font-weight:700; line-height:1;
  border-radius:10px; padding:3px 5px; min-width:16px; text-align:center;
}

/* ---------- hero ---------- */
.hero-carousel{ position:relative; }
.hero{ display:none; }
.hero.is-active{ display:block; }
.hero-dots{ position:absolute; bottom:18px; left:50%; transform:translateX(-50%); display:flex; gap:7px; z-index:2; }
.hero-dot{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.45); border:none; cursor:pointer; padding:0; }
.hero-dot.active{ background:#fff; width:22px; border-radius:4px; }
.hero{
  margin:20px 0 0; border-radius:18px; background:var(--forest-dark); color:var(--ivory);
  padding:36px 32px; position:relative; overflow:hidden;
}
@media (min-width:768px){ .hero{ padding:48px 56px; } }
.hero::after{
  content:""; position:absolute; right:-40px; bottom:-40px;
  width:180px;height:180px;border-radius:50%; background:rgba(224,138,44,.28);
}
.hero-eyebrow{ font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:#CBE3D3; font-weight:600; margin:0 0 8px; position:relative; }
.hero h1{ font-family:'Fraunces',serif; font-weight:600; font-size:26px; line-height:1.2; margin:0 0 16px; max-width:420px; position:relative; }
@media (min-width:768px){ .hero h1{ font-size:34px; max-width:520px; } }
.hero-cta{ display:inline-flex; align-items:center; gap:6px; background:var(--marigold); color:#3A2005; font-weight:600; font-size:13px; padding:9px 16px; border-radius:20px; position:relative; }

/* ---------- search & chips ---------- */
.search-bar{
  margin:20px 0 0; height:46px; border-radius:12px; background:#fff; border:1px solid var(--line);
  display:flex; align-items:center; gap:8px; padding:0 16px;
}
@media (min-width:768px){ .search-bar{ max-width:560px; } }
.search-bar input{ border:none; outline:none; background:none; font-size:14px; flex:1; color:var(--ink); font-family:'Work Sans',sans-serif; }
.search-bar button{ border:none; background:none; color:var(--forest); display:flex; }

.chips{ display:flex; gap:8px; padding:20px 0 4px; overflow-x:auto; }
.chip{ flex:none; padding:8px 15px; border-radius:20px; font-size:13px; font-weight:500; white-space:nowrap; border:1px solid var(--line); background:#fff; color:var(--ink); }
.chip.active{ background:var(--forest); border-color:var(--forest); color:#fff; }

/* ---------- section titles ---------- */
.section-title{ font-family:'Fraunces',serif; font-weight:600; font-size:18px; padding:12px 0 14px; display:flex; align-items:baseline; justify-content:space-between; }

/* ---------- shops row ---------- */
.shops{ display:flex; gap:16px; padding:0 0 8px; overflow-x:auto; }
.shop-card{ flex:none; width:112px; text-align:center; }
.shop-avatar{ width:68px; height:68px; border-radius:50%; margin:0 auto 8px; display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:600; color:#fff; font-size:17px; overflow:hidden; }
.shop-avatar img{ width:100%; height:100%; object-fit:cover; }
.shop-name{ font-size:12px; font-weight:600; line-height:1.25; }
.shop-region{ font-size:10.5px; color:var(--ink-soft); }

/* ---------- swatch patterns (substituts photo produit) ---------- */
.swatch{ position:relative; overflow:hidden; background:var(--sand); }
.swatch-textiles{ background:linear-gradient(135deg,var(--forest) 25%,transparent 25%) 0 0/16px 16px, linear-gradient(-135deg,var(--forest) 25%,transparent 25%) 0 0/16px 16px, linear-gradient(45deg,var(--marigold) 25%,transparent 25%) 0 0/16px 16px, linear-gradient(-45deg,var(--marigold) 25%,transparent 25%) 0 0/16px 16px, var(--sand); }
.swatch-agro-alimentaire{ background-image:radial-gradient(var(--forest-dark) 1.6px,transparent 1.6px); background-size:14px 14px; background-color:#DCE9CE; }
.swatch-artisanat{ background-image:repeating-linear-gradient(0deg,var(--terracotta) 0 2px,transparent 2px 12px), repeating-linear-gradient(90deg,var(--terracotta) 0 2px,transparent 2px 12px); background-color:#F3DCC9; }
.swatch-beaute{ background:linear-gradient(180deg,#F6E4D2,#EFCBAE); }
.swatch-autre{ background:linear-gradient(160deg,var(--sand),#E4D8C2); }

/* ---------- product grid ---------- */
.grid-produits{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; padding:8px 0 32px; }
@media (min-width:640px){ .grid-produits{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:992px){ .grid-produits{ grid-template-columns:repeat(4,1fr); gap:20px; } }
.pcard{ background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden; display:block; }
.pcard .swatch{ height:130px; }
.pcard-body{ padding:10px 11px 12px; }
.pcard-shop{ font-size:10px; color:var(--ink-soft); font-weight:500; margin-bottom:3px; }
.pcard-name{ font-size:13px; font-weight:600; line-height:1.32; margin-bottom:6px; min-height:34px; }
.pcard-bottom{ display:flex; align-items:center; justify-content:space-between; }
.pcard-price{ font-weight:700; font-size:13.5px; color:var(--forest-dark); }
.pcard-stock-out{ font-size:11px; color:var(--terracotta); font-weight:600; }

/* ---------- tabbar (mobile) ---------- */
.tabbar{ position:fixed; bottom:0; left:0; right:0; background:#fff; border-top:1px solid var(--line); display:flex; padding:8px 8px 12px; z-index:30; }
@media (min-width:992px){ .tabbar{ display:none; } }
.tab{ flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; font-size:10px; color:var(--ink-soft); font-weight:500; }
.tab.active{ color:var(--forest); }
.tab.active svg{ stroke:var(--forest); }

/* ---------- product detail page ---------- */
.pdp-wrap{ max-width:1280px; margin:0 auto; padding:24px 16px 48px; }
@media (min-width:768px){ .pdp-wrap{ padding:32px 32px 56px; } }
@media (min-width:1200px){ .pdp-wrap{ padding:32px 48px 56px; } }
.pdp-image{ height:340px; border-radius:16px; }
@media (min-width:768px){ .pdp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:flex-start; } .pdp-image{ height:440px; } }
.pdp-thumbs{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.pdp-thumb{ width:64px; height:64px; border-radius:10px; cursor:pointer; border:2px solid transparent; overflow:hidden; }
.pdp-thumb.active{ border-color:var(--forest); }
.pdp-shop-row{ display:flex; align-items:center; gap:8px; margin:16px 0 12px; justify-content:space-between; }
.pdp-shop-avatar{ width:30px; height:30px; border-radius:50%; background:var(--forest); color:#fff; font-family:'Fraunces',serif; font-weight:600; font-size:12px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pdp-shop-avatar img{ width:100%; height:100%; object-fit:cover; }
.pdp-shop-name{ font-size:13px; font-weight:600; }
.badge-verified{ font-size:10px; font-weight:600; color:var(--forest-dark); background:var(--sand); padding:3px 8px; border-radius:10px; }
.pdp-title{ font-family:'Fraunces',serif; font-weight:600; font-size:26px; line-height:1.25; margin:0 0 10px; }
.pdp-rating{ display:flex; align-items:center; gap:7px; font-size:13px; color:var(--ink-soft); margin-bottom:16px; }
.stars{ color:var(--marigold); letter-spacing:1px; font-size:14px; }
.pdp-price{ font-family:'Fraunces',serif; font-weight:600; font-size:28px; color:var(--forest-dark); margin-bottom:18px; }
.pdp-desc{ font-size:14px; line-height:1.7; color:var(--ink-soft); margin-bottom:8px; white-space:pre-line; }
.pdp-desc-toggle{ margin:0 0 20px; }
.pdp-desc-toggle summary{ cursor:pointer; color:var(--forest); font-weight:600; font-size:13px; list-style:none; }
.pdp-desc-toggle summary::-webkit-details-marker{ display:none; }
.pdp-desc-toggle summary::after{ content:"Voir plus"; }
.pdp-desc-toggle[open] summary::after{ content:"Voir moins"; }
.pdp-desc-short{ display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; }
.pdp-desc-toggle[open] .pdp-desc-short{ display:block; -webkit-line-clamp:unset; }
.qty-row{ display:flex; align-items:center; gap:16px; margin-bottom:22px; flex-wrap:wrap; }
.stepper{ display:flex; align-items:center; gap:16px; border:1px solid var(--line); border-radius:20px; padding:8px 16px; }
.stepper button{ width:20px; height:20px; border:none; background:none; color:var(--forest-dark); display:flex; align-items:center; justify-content:center; padding:0; font-size:16px; cursor:pointer; }
.stepper input{ border:none; width:26px; text-align:center; font-size:14px; font-weight:600; background:none; }
.btn-store-primary{ background:var(--forest); color:#fff; border:none; border-radius:14px; padding:14px 20px; font-family:'Work Sans',sans-serif; font-weight:600; font-size:14px; display:inline-flex; align-items:center; justify-content:center; gap:8px; cursor:pointer; }
.btn-store-primary:hover{ background:var(--forest-dark); color:#fff; }
.avis-item{ border-top:1px solid var(--line); padding:14px 0; }
.avis-note{ color:var(--marigold); font-size:13px; }

.shop-info-block{ margin-top:32px; background:#fff; border:1px solid var(--line); border-radius:14px; padding:20px; }
.shop-info-header{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.shop-info-avatar{ width:48px; height:48px; border-radius:50%; background:var(--forest); color:#fff; font-family:'Fraunces',serif; font-weight:600; font-size:17px; display:flex; align-items:center; justify-content:center; overflow:hidden; flex:none; }
.shop-info-avatar img{ width:100%; height:100%; object-fit:cover; }
.shop-info-desc{ font-size:13px; color:var(--ink-soft); line-height:1.6; margin-bottom:12px; }
.shop-info-meta{ font-size:12px; color:var(--ink-soft); display:flex; gap:16px; flex-wrap:wrap; margin-bottom:14px; }
.shop-info-meta span{ display:inline-flex; align-items:center; gap:5px; }

/* ---------- lightbox (zoom images produit) ---------- */
.lightbox{ display:none; position:fixed; inset:0; background:rgba(20,14,9,.92); z-index:100; align-items:center; justify-content:center; padding:32px; }
.lightbox.is-open{ display:flex; }
.lightbox img{ max-width:100%; max-height:100%; border-radius:8px; object-fit:contain; }
.lightbox-close{ position:absolute; top:20px; right:24px; background:none; border:none; color:#fff; font-size:32px; line-height:1; cursor:pointer; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12); border:none; color:#fff; width:48px; height:48px; border-radius:50%; font-size:26px; cursor:pointer; }
.lightbox-prev{ left:16px; }
.lightbox-next{ right:16px; }
@media (min-width:768px){ .lightbox-prev{ left:32px; } .lightbox-next{ right:32px; } }

/* ---------- avis (formulaire de notation, après réception) ---------- */
.avis-form-block{ padding:0 13px 13px; border-top:1px dashed var(--line); margin-top:-1px; padding-top:10px; }
.star-rating{ display:inline-flex; flex-direction:row-reverse; gap:2px; }
.star-rating input{ display:none; }
.star-rating label{ font-size:22px; color:var(--line); cursor:pointer; line-height:1; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label{ color:var(--marigold); }

/* ---------- boutique page ---------- */
.boutique-banner{ height:150px; background:linear-gradient(120deg,var(--forest-dark),var(--forest)); position:relative; overflow:hidden; }
.boutique-banner img{ width:100%; height:100%; object-fit:cover; }
.boutique-header{ text-align:center; padding:0 16px 28px; margin-top:-44px; position:relative; }
.boutique-avatar-lg{ width:88px; height:88px; border-radius:50%; margin:0 auto 14px; display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:600; font-size:26px; background:var(--marigold); color:#3A2005; border:4px solid var(--ivory); overflow:hidden; }
.boutique-avatar-lg img{ width:100%; height:100%; object-fit:cover; }
.boutique-header h1{ font-family:'Fraunces',serif; font-weight:600; font-size:24px; margin:0 0 6px; color:var(--ink); }
.boutique-meta{ font-size:12.5px; color:var(--ink-soft); display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:10px; }

/* ---------- cart ---------- */
.cart-title{ font-family:'Fraunces',serif; font-weight:600; font-size:22px; padding:20px 16px 8px; max-width:640px; margin:0 auto; }
.cart-wrap{ max-width:640px; margin:0 auto; padding:0 16px 32px; }
.cart-shop-group{ margin:14px 0 0; background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.cart-shop-header{ display:flex; align-items:center; gap:8px; padding:11px 13px; background:var(--sand); font-size:12.5px; font-weight:600; color:var(--forest-dark); }
.cart-item{ display:flex; gap:11px; padding:12px 13px; border-top:1px solid var(--line); align-items:center; }
.cart-item .swatch{ width:56px; height:56px; border-radius:10px; flex:none; }
.cart-item-info{ flex:1; }
.cart-item-name{ font-size:13px; font-weight:600; margin-bottom:3px; line-height:1.3; }
.cart-item-shop{ font-size:10.5px; color:var(--ink-soft); margin-bottom:7px; }
.cart-item-bottom{ display:flex; align-items:center; justify-content:space-between; }
.mini-stepper{ display:flex; align-items:center; gap:9px; border:1px solid var(--line); border-radius:14px; padding:4px 10px; }
.mini-stepper button{ border:none; background:none; padding:0; color:var(--forest-dark); display:flex; cursor:pointer; }
.mini-stepper span{ font-size:12px; font-weight:600; }
.cart-item-price{ font-size:13px; font-weight:700; color:var(--forest-dark); }
.cart-item-remove{ color:var(--terracotta); font-size:11.5px; margin-top:4px; display:inline-block; }
.delivery-note{ margin:16px 0 0; background:#fff; border:1px dashed var(--marigold); border-radius:12px; padding:12px 13px; display:flex; gap:10px; align-items:flex-start; font-size:12px; color:var(--ink-soft); line-height:1.5; }
.delivery-note b{ color:var(--ink); }
.summary{ margin:16px 0 0; padding:14px 4px 4px; border-top:1px solid var(--line); }
.summary-row{ display:flex; justify-content:space-between; font-size:13px; color:var(--ink-soft); padding:5px 0; }
.summary-row.total{ font-size:15.5px; font-weight:700; color:var(--ink); border-top:1px solid var(--line); margin-top:6px; padding-top:12px; }
.cart-cta{ margin:20px 0 0; background:var(--forest); color:#fff; border:none; border-radius:14px; padding:15px; width:100%; font-family:'Work Sans',sans-serif; font-weight:600; font-size:14.5px; cursor:pointer; }
.cart-cta:hover{ background:var(--forest-dark); color:#fff; }
.form-store-label{ font-size:12.5px; font-weight:600; margin:14px 0 6px; display:block; }
.form-store-control{ width:100%; border:1px solid var(--line); border-radius:10px; padding:10px 12px; font-family:'Work Sans',sans-serif; font-size:13.5px; background:#fff; }
.empty-state{ text-align:center; padding:60px 20px; color:var(--ink-soft); }
.empty-state a{ color:var(--forest); font-weight:600; }

.footer-store{ border-top:1px solid var(--line); margin-top:40px; padding:40px 0 24px; }
.footer-cols{ display:grid; grid-template-columns:1fr; gap:28px; max-width:1280px; margin:0 auto; padding:0 16px 28px; }
@media (min-width:768px){ .footer-cols{ grid-template-columns:1.4fr 1fr 1fr 1fr; padding:0 32px 32px; } }
@media (min-width:1200px){ .footer-cols{ padding:0 48px 32px; } }
.footer-brand{ font-family:'Fraunces',serif; font-weight:600; font-size:18px; color:var(--forest-dark); margin-bottom:10px; }
.footer-tagline{ font-size:12.5px; color:var(--ink-soft); line-height:1.6; max-width:280px; }
.footer-col-title{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--ink); margin-bottom:12px; }
.footer-col a{ display:block; font-size:13px; color:var(--ink-soft); margin-bottom:9px; }
.footer-col a:hover{ color:var(--forest); }
.footer-bottom{ text-align:center; font-size:11.5px; color:var(--ink-soft); padding-top:20px; border-top:1px solid var(--line); max-width:1280px; margin:0 auto; }

/* pagination du storefront — vue sur-mesure française (resources/views/pagination/storefront.blade.php) */
.store-pagination{ margin:24px 0 8px; }
.store-pagination-links{ display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.store-page-link{ display:inline-flex; align-items:center; justify-content:center; min-width:38px; height:38px; padding:0 12px; border-radius:10px; border:1px solid var(--line); background:#fff; color:var(--ink); font-size:13px; font-weight:500; }
a.store-page-link:hover{ border-color:var(--forest); color:var(--forest); }
.store-page-link.active{ background:var(--forest); border-color:var(--forest); color:#fff; font-weight:600; }
.store-page-link.disabled{ color:var(--ink-soft); background:transparent; border-color:transparent; opacity:.6; }
.store-pagination-summary{ margin:10px 0 0; font-size:12px; color:var(--ink-soft); }

/* ---------- boutiques listing page ---------- */
.boutiques-filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; align-items:center; }
.boutiques-filters .form-store-control{ width:auto; flex:1 1 180px; margin:0; }
.boutiques-grid{ display:grid; grid-template-columns:1fr; gap:14px; padding-bottom:36px; }
@media (min-width:640px){ .boutiques-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:992px){ .boutiques-grid{ grid-template-columns:repeat(3,1fr); gap:18px; } }
.boutique-tile{ display:flex; gap:14px; align-items:center; background:#fff; border:1px solid var(--line); border-radius:14px; padding:16px; }
.boutique-tile-avatar{ width:52px; height:52px; border-radius:50%; background:var(--forest); color:#fff; font-family:'Fraunces',serif; font-weight:600; font-size:16px; display:flex; align-items:center; justify-content:center; overflow:hidden; flex:none; }
.boutique-tile-avatar img{ width:100%; height:100%; object-fit:cover; }
.boutique-tile-name{ font-family:'Fraunces',serif; font-weight:600; font-size:15px; margin-bottom:3px; }
.boutique-tile-meta{ font-size:12px; color:var(--ink-soft); margin-bottom:4px; }
.boutique-tile-count{ font-size:11.5px; color:var(--forest); font-weight:600; }

/* ---------- categories overview page ---------- */
.cat-tiles{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; padding:8px 0 40px; }
@media (min-width:768px){ .cat-tiles{ grid-template-columns:repeat(4,1fr); gap:20px; } }
.cat-tile{ background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; display:block; }
.cat-tile-swatch{ height:100px; }
.cat-tile-body{ padding:14px 16px 16px; }
.cat-tile-name{ font-family:'Fraunces',serif; font-weight:600; font-size:16px; margin-bottom:4px; }
.cat-tile-count{ font-size:12px; color:var(--ink-soft); margin-bottom:10px; }
.cat-tile-subs{ display:flex; flex-wrap:wrap; gap:6px; }
.cat-tile-subs a{ font-size:11px; background:var(--sand); color:var(--forest-dark); padding:4px 9px; border-radius:12px; font-weight:500; }

/* ---------- static pages ---------- */
.static-page{ max-width:760px; margin:0 auto; padding:32px 16px 56px; }
@media (min-width:768px){ .static-page{ padding:40px 32px 64px; } }
.static-page h1{ font-family:'Fraunces',serif; font-weight:600; font-size:28px; margin-bottom:18px; color:var(--forest-dark); }
.static-page h2{ font-family:'Fraunces',serif; font-weight:600; font-size:18px; margin:28px 0 10px; }
.static-page p{ font-size:14.5px; line-height:1.75; color:var(--ink-soft); margin-bottom:14px; }
.faq-item{ border-bottom:1px solid var(--line); padding:16px 0; }
.faq-item summary{ cursor:pointer; font-weight:600; font-size:14.5px; list-style:none; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{ margin-top:10px; margin-bottom:0; }
.contact-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:20px; margin-bottom:14px; display:flex; gap:14px; align-items:flex-start; }
.contact-card svg{ color:var(--forest); flex:none; margin-top:2px; }
