/* =========================================================================
   BARRANCO HOME — Skin (child Shoptimizer)
   DA mobilier/maison premium : encre chaude + noyer + greige + accent terracotta
   ========================================================================= */

:root{
	--ink:#211b16;
	--slate:#4a4038;
	--muted:#8a7d70;
	--line:#e9e2d9;
	--bg:#ffffff;
	--soft:#f7f3ee;
	--green:#9a6a43;       /* noyer — accent principal (marque, liens, boutons) */
	--green-dk:#7d5537;    /* noyer foncé — hover */
	--green-tint:#f5ede4;  /* teinte bois claire */
	--amber:#c2683d;       /* terracotta — accent promo/prix */
	--amber-dk:#a3542c;
	--amber-tint:#fbf1ea;
	--radius:16px;
	--radius-sm:12px;
	--shadow-sm:0 1px 2px rgba(33,27,22,.06), 0 1px 3px rgba(33,27,22,.05);
	--shadow:0 8px 24px rgba(33,27,22,.09);
	--shadow-lg:0 20px 50px rgba(33,27,22,.14);
	--font-title:'Fraunces', Georgia, 'Times New Roman', serif;
	--font-body:'Inter', system-ui, sans-serif;
	--maxw:1240px;
}

body, .shoptimizer-full-width-content{
	font-family:var(--font-body);
	color:var(--ink);
	background:var(--bg);
}
#bh-home h1,#bh-home h2,#bh-home h3,
.bh-footer h4,.bh-logo-txt,.bh-sec-title,.bh-hero-title,
.woocommerce div.product .product_title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page h1.entry-title, .woocommerce .products-header h1,
.woocommerce-products-header__title{
	font-family:var(--font-title);
	letter-spacing:-.01em;
}

.bh-container{ max-width:var(--maxw); margin:0 auto; padding-left:24px; padding-right:24px; }
.bh-ic{ width:1em; height:1em; fill:none; stroke:currentColor; stroke-width:2; vertical-align:middle; }

/* =========================================================================
   MASQUAGE DU CHROME PARENT
   ========================================================================= */
.top-bar,
#masthead.site-header,
.col-full-nav,
.header-widget-region,
.shoptimizer-header-widget-region,
.storefront-handheld-footer-bar{ display:none !important; }

/* Neutralise les conteneurs parent sur la HOME pour le plein largeur */
.home #content,
.home .shoptimizer-archive,
.home .col-full{
	max-width:none !important;
	width:auto !important;
	padding:0 !important;
	margin:0 !important;
}
.home .archive-header{ display:none !important; }
.home #content{ padding-top:0 !important; }

/* =========================================================================
   HEADER
   ========================================================================= */
.bh-topbar{
	background:var(--ink);
	color:#e5e7eb;
	font-size:13px;
}
.bh-topbar-in{
	display:flex; align-items:center; justify-content:center; gap:12px;
	flex-wrap:wrap; padding:8px 24px; font-weight:500;
}
.bh-topbar .bh-ic{ color:var(--green); }
.bh-topbar svg{ width:15px; height:15px; }
.bh-topbar .bh-sep{ opacity:.4; }

.bh-header{
	position:sticky; top:0; z-index:1000;
	background:rgba(255,255,255,.92);
	backdrop-filter:saturate(180%) blur(10px);
	border-bottom:1px solid var(--line);
	transition:box-shadow .2s ease;
}
.bh-header.is-stuck{ box-shadow:0 4px 20px rgba(17,24,39,.07); }
.bh-header-in{
	display:flex; align-items:center; gap:24px;
	height:74px;
}

/* Logo */
.bh-logo{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
.bh-logo-mark{
	display:inline-flex; align-items:center; justify-content:center;
	width:40px; height:40px; border-radius:11px;
	background:var(--green); color:#fff;
}
.bh-logo-mark svg{ width:24px; height:24px; stroke:#fff; }
.bh-logo-txt{ font-family:var(--font-title); font-weight:600; font-size:21px; color:var(--ink); line-height:1; letter-spacing:-.01em; }
.bh-logo-txt span{ color:var(--green); font-weight:600; font-style:italic; }

/* Nav */
.bh-nav{ display:flex; align-items:center; gap:4px; }
.bh-nav-link{
	display:inline-flex; align-items:center; gap:5px;
	padding:9px 14px; border-radius:10px;
	font-size:15px; font-weight:600; color:var(--slate);
	text-decoration:none; background:none; border:none; cursor:pointer;
	font-family:var(--font-body);
	transition:background .15s, color .15s;
}
.bh-nav-link:hover{ background:var(--soft); color:var(--ink); }
.bh-nav-promo{ color:var(--amber); }
.bh-nav-promo:hover{ background:var(--amber-tint); color:var(--amber-dk); }
.bh-caret{ width:16px; height:16px; stroke:currentColor; }

/* Mega dropdown */
.bh-drop{ position:relative; }
.bh-mega{
	position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%) translateY(8px);
	width:640px; max-width:92vw;
	background:#fff; border:1px solid var(--line); border-radius:var(--radius);
	box-shadow:var(--shadow-lg); padding:18px;
	opacity:0; visibility:hidden; pointer-events:none;
	transition:opacity .18s ease, transform .18s ease;
	z-index:1100;
}
.bh-drop:hover .bh-mega,
.bh-drop.is-open .bh-mega{ opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.bh-mega-head{ font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); font-weight:700; margin-bottom:12px; }
.bh-mega-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:6px; }
.bh-mega-item{ display:flex; align-items:center; gap:10px; padding:8px; border-radius:12px; text-decoration:none; transition:background .15s; }
.bh-mega-item:hover{ background:var(--green-tint); }
.bh-mega-thumb{ width:44px; height:44px; border-radius:10px; overflow:hidden; background:var(--soft); flex-shrink:0; border:1px solid var(--line); }
.bh-mega-thumb img{ width:100%; height:100%; object-fit:cover; }
.bh-mega-name{ font-size:14px; font-weight:600; color:var(--ink); line-height:1.2; display:flex; flex-direction:column; }
.bh-mega-name small{ font-size:11px; color:var(--muted); font-weight:500; margin-top:2px; }
.bh-mega-all{ display:inline-block; margin-top:14px; font-weight:700; color:var(--green); text-decoration:none; font-size:14px; }
.bh-mega-all:hover{ text-decoration:underline; }

/* Recherche */
.bh-search{
	display:flex; align-items:center; gap:8px; margin-left:auto;
	background:var(--soft); border:1px solid var(--line); border-radius:12px;
	padding:9px 14px; min-width:240px; max-width:320px; flex:1;
}
.bh-search-ic{ width:18px; height:18px; stroke:var(--muted); flex-shrink:0; }
.bh-search input{ border:none; background:none; outline:none; width:100%; font-size:14px; color:var(--ink); font-family:var(--font-body); }
.bh-search input::placeholder{ color:var(--muted); }

/* Panier */
.bh-cart{
	position:relative; display:inline-flex; align-items:center; justify-content:center;
	width:46px; height:46px; border-radius:12px; background:var(--ink); color:#fff;
	text-decoration:none; flex-shrink:0; transition:transform .15s, background .15s;
}
.bh-cart:hover{ background:var(--green); transform:translateY(-1px); }
.bh-cart-ic{ width:22px; height:22px; stroke:#fff; fill:none; }
.bh-cart .bh-cart-ic circle{ fill:#fff; stroke:none; }
.bh-cart-count{
	position:absolute; top:-6px; right:-6px; min-width:20px; height:20px; padding:0 5px;
	background:var(--amber); color:#fff; border-radius:20px;
	font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center;
	border:2px solid #fff;
}

/* Burger */
.bh-burger{ display:none; width:44px; height:44px; border:1px solid var(--line); border-radius:12px; background:#fff; cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:5px; }
.bh-burger span{ width:20px; height:2px; background:var(--ink); border-radius:2px; transition:.2s; }
.bh-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.bh-burger.is-open span:nth-child(2){ opacity:0; }
.bh-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.bh-mobile{ border-top:1px solid var(--line); background:#fff; padding:16px 24px 24px; }
.bh-mobile a{ display:block; padding:12px 4px; font-size:16px; font-weight:600; color:var(--ink); text-decoration:none; border-bottom:1px solid var(--soft); }
.bh-mobile-cat-title{ margin-top:12px; font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); font-weight:700; }
.bh-mobile-cat{ padding-left:12px !important; color:var(--slate) !important; font-weight:500 !important; }
.bh-msearch{ display:flex; gap:8px; margin-bottom:12px; background:var(--soft); border:1px solid var(--line); border-radius:12px; padding:10px 14px; }
.bh-msearch input{ border:none; background:none; outline:none; width:100%; font-size:15px; font-family:var(--font-body); }
.bh-msearch button{ border:none; background:none; cursor:pointer; }
.bh-msearch .bh-search-ic{ width:20px; height:20px; }

/* =========================================================================
   BOUTONS
   ========================================================================= */
.bh-btn{
	display:inline-flex; align-items:center; justify-content:center; gap:8px;
	padding:14px 26px; border-radius:12px; font-weight:700; font-size:15px;
	text-decoration:none; cursor:pointer; border:1px solid transparent;
	transition:transform .15s, box-shadow .15s, background .15s;
	font-family:var(--font-body); line-height:1;
}
.bh-btn--primary{ background:var(--green); color:#fff; box-shadow:0 6px 18px rgba(154,106,67,.30); }
.bh-btn--primary:hover{ background:var(--green-dk); transform:translateY(-2px); }
.bh-btn--ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.bh-btn--ghost:hover{ background:rgba(255,255,255,.12); }
.bh-btn--light{ background:#fff; color:var(--ink); box-shadow:var(--shadow); }
.bh-btn--light:hover{ transform:translateY(-2px); box-shadow:var(--shadow-lg); }

/* =========================================================================
   HERO
   ========================================================================= */
.bh-hero{
	background:
		radial-gradient(1200px 400px at 85% -10%, rgba(154,106,67,.24), transparent 60%),
		linear-gradient(160deg, #2a221b 0%, #211b16 55%, #17110d 100%);
	color:#fff; overflow:hidden;
}
.bh-hero-in{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; padding:72px 24px 80px; }
.bh-hero-eyebrow{
	display:inline-block; font-size:13px; font-weight:600; letter-spacing:.02em;
	color:#e8cdb0; background:rgba(154,106,67,.22); border:1px solid rgba(198,150,110,.35);
	padding:6px 14px; border-radius:100px; margin-bottom:20px;
}
.bh-hero-title{ font-size:clamp(34px,4.6vw,58px); font-weight:600; line-height:1.06; margin:0 0 18px; color:#fff; }
.bh-hero-title span{ color:#e0b483; font-style:italic; }
.bh-hero-sub{ font-size:18px; line-height:1.6; color:#cbd5e1; max-width:520px; margin:0 0 30px; }
.bh-hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; }
.bh-hero-trust{ display:flex; gap:28px; flex-wrap:wrap; }
.bh-hero-trust span{ font-size:14px; color:#94a3b8; }
.bh-hero-trust strong{ display:block; font-family:var(--font-title); font-size:24px; color:#fff; font-weight:700; }

.bh-hero-art{ position:relative; }
.bh-hero-art img{
	width:100%; aspect-ratio:4/3; object-fit:cover;
	border-radius:20px; box-shadow:var(--shadow-lg);
	border:1px solid rgba(255,255,255,.1);
}
.bh-hero-chip{
	position:absolute; bottom:-18px; left:-18px;
	display:flex; align-items:center; gap:10px;
	background:#fff; color:var(--ink); border-radius:14px; padding:12px 16px;
	box-shadow:var(--shadow-lg);
}
.bh-hero-chip .bh-ic{ width:26px; height:26px; color:var(--green); }
.bh-hero-chip span{ font-size:14px; font-weight:700; line-height:1.2; }
.bh-hero-chip small{ display:block; font-weight:500; color:var(--muted); font-size:12px; }

/* =========================================================================
   REASSURANCE
   ========================================================================= */
.bh-reassure{ background:#fff; border-bottom:1px solid var(--line); }
.bh-reassure-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; padding:26px 24px; }
.bh-reassure-item{ display:flex; align-items:center; gap:14px; }
.bh-reassure-item .bh-ic{ width:26px; height:26px; color:var(--green); flex-shrink:0; }
.bh-reassure-item strong{ display:block; font-size:15px; color:var(--ink); }
.bh-reassure-item span{ font-size:13px; color:var(--muted); }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.bh-section{ padding:64px 0; }
.bh-section--soft{ background:var(--soft); }
.bh-sec-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:34px; }
.bh-kicker{ display:inline-block; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--green); margin-bottom:8px; }
.bh-kicker--amber{ color:var(--amber); }
.bh-sec-title{ font-size:clamp(28px,3vw,38px); font-weight:600; margin:0 0 6px; color:var(--ink); letter-spacing:-.01em; }
.bh-sec-sub{ font-size:16px; color:var(--muted); margin:0; }
.bh-link-all{ font-weight:700; color:var(--green); text-decoration:none; white-space:nowrap; font-size:15px; }
.bh-link-all:hover{ text-decoration:underline; }
.bh-link-all--amber{ color:var(--amber); }

/* Univers grid */
.bh-univers-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.bh-univers-card{
	position:relative; display:flex; align-items:center; gap:16px;
	background:#fff; border:1px solid var(--line); border-radius:var(--radius);
	padding:14px; text-decoration:none; overflow:hidden;
	transition:transform .18s, box-shadow .18s, border-color .18s;
}
.bh-univers-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:transparent; }
.bh-univers-img{ width:96px; height:96px; border-radius:12px; overflow:hidden; background:var(--soft); flex-shrink:0; }
.bh-univers-img img{ width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.bh-univers-card:hover .bh-univers-img img{ transform:scale(1.06); }
.bh-univers-meta{ display:flex; flex-direction:column; gap:4px; }
.bh-univers-name{ font-family:var(--font-title); font-weight:700; font-size:17px; color:var(--ink); line-height:1.2; }
.bh-univers-count{ font-size:13px; color:var(--muted); }
.bh-univers-arrow{ margin-left:auto; color:var(--green); font-size:20px; font-weight:700; transition:transform .2s; }
.bh-univers-card:hover .bh-univers-arrow{ transform:translateX(4px); }

/* =========================================================================
   CARTES PRODUITS (home + boutique)
   ========================================================================= */
.bh-products-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.bh-card{
	display:flex; flex-direction:column;
	background:#fff; border:1px solid var(--line); border-radius:var(--radius);
	overflow:hidden; transition:transform .18s, box-shadow .18s, border-color .18s;
}
.bh-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; }
.bh-card-media{ position:relative; display:block; aspect-ratio:1/1; background:var(--soft); overflow:hidden; }
.bh-card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .35s; }
.bh-card:hover .bh-card-media img{ transform:scale(1.05); }
.bh-badge{
	position:absolute; top:12px; left:12px; z-index:2;
	background:var(--amber); color:#fff; font-size:13px; font-weight:700;
	padding:5px 10px; border-radius:100px; box-shadow:0 4px 10px rgba(194,104,61,.3);
}
.bh-card-body{ display:flex; flex-direction:column; gap:8px; padding:16px; flex:1; }
.bh-card-cat{ font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--green); }
.bh-card-title{
	font-family:var(--font-body); font-weight:600; font-size:15px; line-height:1.35; color:var(--ink);
	text-decoration:none; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
	min-height:2.7em;
}
.bh-card-title:hover{ color:var(--green); }
.bh-card-price{ margin-top:auto; }
.bh-card-price .price,
.bh-card-price ins,
.bh-card-price .amount{ font-family:var(--font-title); font-weight:700; font-size:18px; color:var(--amber); text-decoration:none; }
.bh-card-price del{ color:var(--muted); font-size:14px; font-weight:400; margin-right:6px; }
.bh-card-price del .amount{ font-size:14px; color:var(--muted); font-weight:400; }
.bh-card .button{ margin-top:6px; }

/* Bouton add-to-cart (loop) */
.bh-card .button,
.woocommerce ul.products li.product .button,
.woocommerce a.button.add_to_cart_button,
.woocommerce a.button.product_type_variable,
.woocommerce a.button.product_type_external{
	display:inline-flex; align-items:center; justify-content:center;
	width:100%; padding:11px 16px; border-radius:11px;
	background:var(--ink); color:#fff; font-weight:600; font-size:14px;
	text-decoration:none; border:none; text-align:center; transition:background .15s, transform .15s;
	font-family:var(--font-body);
}
.bh-card .button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button.add_to_cart_button:hover{ background:var(--green); transform:translateY(-1px); }
.woocommerce a.button.added_to_cart{
	display:inline-flex; align-items:center; justify-content:center; width:100%;
	margin-top:8px; padding:9px; border-radius:11px; background:var(--green-tint); color:var(--green-dk);
	font-weight:600; text-decoration:none;
}

/* =========================================================================
   PROMOS / CTA
   ========================================================================= */
.bh-promos{ background:var(--amber-tint); }
.bh-cta{ background:linear-gradient(160deg,#2a221b,#17110d); color:#fff; }
.bh-cta-in{ text-align:center; padding:70px 24px; }
.bh-cta h2{ font-family:var(--font-title); font-size:clamp(28px,3.4vw,42px); font-weight:600; margin:0 0 14px; letter-spacing:-.01em; }
.bh-cta p{ font-size:17px; color:#cbd5e1; max-width:620px; margin:0 auto 28px; line-height:1.6; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.bh-footer{ background:var(--ink); color:#cbd5e1; margin-top:0; }
.bh-footer-top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding:64px 24px 44px; }
.bh-footer .bh-logo-txt{ color:#fff; }
.bh-footer .bh-logo-txt span{ color:#e0b483; }
.bh-footer-pitch{ margin:18px 0 18px; font-size:14px; line-height:1.7; color:#94a3b8; max-width:360px; }
.bh-footer-badges{ display:flex; gap:16px; flex-wrap:wrap; }
.bh-footer-badges span{ display:inline-flex; align-items:center; gap:7px; font-size:13px; color:#cbd5e1; }
.bh-footer-badges .bh-ic{ width:17px; height:17px; color:#e0b483; }
.bh-footer-col h4{ font-family:var(--font-title); font-size:15px; font-weight:700; color:#fff; margin:0 0 16px; }
.bh-footer-col ul{ list-style:none; margin:0; padding:0; }
.bh-footer-col li{ margin-bottom:11px; }
.bh-footer-col a{ color:#94a3b8; text-decoration:none; font-size:14px; transition:color .15s; }
.bh-footer-col a:hover{ color:#fff; }
.bh-footer-bottom{ border-top:1px solid rgba(255,255,255,.09); }
.bh-footer-bottom-in{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; padding:20px 24px; font-size:13px; color:#94a3b8; }
.bh-pay{ display:inline-flex; align-items:center; gap:8px; flex-wrap:wrap; }
.bh-pay em{ font-style:normal; color:#cbd5e1; }
.bh-pay-badge{ background:#fff; color:#1f2937; font-size:11px; font-weight:700; padding:4px 9px; border-radius:6px; }

/* =========================================================================
   WOOCOMMERCE — BOUTIQUE / CATEGORIE
   ========================================================================= */
.woocommerce .products-header,
.woocommerce-products-header{ margin-bottom:8px; }
.woocommerce-products-header__title,
.woocommerce .products-header h1{ font-family:var(--font-title); font-weight:800; color:var(--ink); }
.term-description, .woocommerce-products-header__subtitle{ color:var(--muted); }

.woocommerce ul.products{ gap:22px; display:grid; grid-template-columns:repeat(4,1fr); margin:0 0 30px !important; }
.woocommerce ul.products::before,
.woocommerce ul.products::after{ display:none !important; }
.woocommerce ul.products li.product{
	width:auto !important; float:none !important; margin:0 !important; padding:0 !important;
	background:#fff; border:1px solid var(--line); border-radius:var(--radius);
	overflow:hidden; display:flex; flex-direction:column;
	transition:transform .18s, box-shadow .18s, border-color .18s;
}
.woocommerce ul.products li.product:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; }
.woocommerce ul.products li.product a img{ margin:0; aspect-ratio:1/1; object-fit:cover; border-radius:0; }
.woocommerce ul.products li.product .woocommerce-loop-product__link{ padding:0; display:block; }
.woocommerce ul.products li.product .woocommerce-loop-product__title{
	font-family:var(--font-body) !important; font-weight:600; font-size:15px; line-height:1.35; color:var(--ink);
	padding:14px 16px 0 !important; min-height:auto;
}
.woocommerce ul.products li.product .price{
	padding:6px 16px 0; font-family:var(--font-title); font-weight:700; font-size:18px; color:var(--amber) !important;
}
.woocommerce ul.products li.product .price del{ color:var(--muted); font-weight:400; font-size:14px; }
.woocommerce ul.products li.product .price ins{ text-decoration:none; color:var(--amber); }
.woocommerce ul.products li.product .button{ margin:14px 16px 16px; width:calc(100% - 32px); }
.woocommerce ul.products li.product .added_to_cart{ margin:0 16px 16px; width:calc(100% - 32px); }
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale{
	background:var(--amber); color:#fff; border-radius:100px; font-weight:700; font-size:13px;
	min-height:auto; min-width:auto; padding:5px 11px; top:12px; left:12px; right:auto; margin:0; line-height:1;
}

/* Tri / resultats */
.woocommerce .woocommerce-ordering select,
.woocommerce-ordering .orderby{ border:1px solid var(--line); border-radius:10px; padding:8px 12px; font-family:var(--font-body); }
.woocommerce nav.woocommerce-pagination ul{ border:none; gap:6px; display:flex; }
.woocommerce nav.woocommerce-pagination ul li{ border:none; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span{
	border:1px solid var(--line); border-radius:10px; padding:8px 14px; color:var(--slate); background:#fff;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover{ background:var(--green); color:#fff; border-color:var(--green); }

/* =========================================================================
   WOOCOMMERCE — FICHE PRODUIT
   ========================================================================= */
.single-product div.product .product_title{ font-family:var(--font-title); font-weight:800; font-size:clamp(24px,3vw,34px); color:var(--ink); }
.single-product div.product p.price,
.single-product div.product span.price{ color:var(--amber) !important; font-family:var(--font-title); font-weight:700; font-size:28px; }
.single-product div.product p.price del,
.single-product div.product span.price del{ color:var(--muted); font-weight:400; font-size:20px; }
.single-product div.product p.price ins{ text-decoration:none; }
.single-product .woocommerce-product-gallery{ border-radius:var(--radius); overflow:hidden; }
.single-product .woocommerce-product-gallery img{ border-radius:var(--radius); }
.woocommerce div.product form.cart .button.single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt{
	background:var(--green); color:#fff; border-radius:12px; font-weight:700; padding:14px 28px;
	font-family:var(--font-body); border:none; text-shadow:none;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover{ background:var(--green-dk); }
.woocommerce .quantity input.qty{ border:1px solid var(--line); border-radius:10px; padding:12px 8px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li{ border-radius:10px 10px 0 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{ border-bottom-color:#fff; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{ color:var(--green); }
.woocommerce-message, .woocommerce-info{ border-top-color:var(--green) !important; }
.woocommerce-message::before, .woocommerce-info::before{ color:var(--green) !important; }

/* Produits lies / ventes croisees */
.woocommerce .related > h2, .woocommerce .upsells > h2, .woocommerce .cross-sells > h2{ font-family:var(--font-title); font-weight:800; color:var(--ink); }

/* =========================================================================
   WOOCOMMERCE — PANIER / CHECKOUT / MINI-CART
   ========================================================================= */
.woocommerce-cart table.cart,
.woocommerce table.shop_table{ border-radius:var(--radius); border:1px solid var(--line); overflow:hidden; }
.woocommerce-cart table.cart th{ background:var(--soft); font-family:var(--font-title); color:var(--ink); }
.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3{ font-family:var(--font-title); color:var(--ink); }
.woocommerce .cart_totals, .woocommerce-checkout-review-order{ border-radius:var(--radius); }
.woocommerce a.remove{ color:var(--amber) !important; border-color:var(--amber); }
.woocommerce a.remove:hover{ background:var(--amber) !important; color:#fff !important; }

/* Mini-cart (widget header parent masque, mais on soigne au cas ou) */
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img{ border-radius:8px; }
.widget_shopping_cart .buttons a.button{ border-radius:11px; }
.widget_shopping_cart .buttons a.checkout{ background:var(--green); color:#fff; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width:1080px){
	.bh-univers-grid{ grid-template-columns:repeat(2,1fr); }
	.bh-products-grid,
	.woocommerce ul.products{ grid-template-columns:repeat(3,1fr) !important; }
}
@media (max-width:980px){
	.bh-nav, .bh-search{ display:none; }
	.bh-burger{ display:flex; }
	.bh-search{ margin-left:auto; }
	.bh-header-in{ height:64px; gap:14px; }
	.bh-cart{ margin-left:auto; }
	.bh-hero-in{ grid-template-columns:1fr; gap:36px; padding:52px 24px 60px; }
	.bh-hero-art{ order:-1; max-width:460px; }
	.bh-reassure-grid{ grid-template-columns:repeat(2,1fr); gap:20px; }
	.bh-footer-top{ grid-template-columns:1fr 1fr; gap:32px; }
	.bh-topbar-in .bh-sep:last-of-type{ display:none; }
}
@media (max-width:640px){
	.bh-container{ padding-left:16px; padding-right:16px; }
	.bh-products-grid,
	.woocommerce ul.products{ grid-template-columns:repeat(2,1fr) !important; gap:14px !important; }
	.bh-univers-grid{ grid-template-columns:1fr; }
	.bh-section{ padding:44px 0; }
	.bh-sec-head{ flex-direction:column; align-items:flex-start; gap:8px; }
	.bh-footer-top{ grid-template-columns:1fr 1fr; }
	.bh-footer-brand{ grid-column:1 / -1; }
	.bh-hero-trust{ gap:20px; }
	.bh-topbar{ font-size:12px; }
	.bh-topbar-in{ gap:8px; }
	.bh-reassure-grid{ padding:20px 16px; }
	.bh-card-title{ font-size:14px; }
}
@media (max-width:420px){
	.bh-hero-title{ font-size:30px; }
	.bh-footer-bottom-in{ flex-direction:column; align-items:flex-start; }
}
