/* =========================================================================
   Holz BES — Design system (porté du prototype eich-buch-holz.dc.html)
   ========================================================================= */

:root{
  --forest:#1B3A2B;        /* vert forêt principal */
  --forest-deep:#0F2519;   /* vert très foncé (hero, footer) */
  --ember:#C8893D;         /* ocre / cuivre (accent, CTA) */
  --ember-deep:#9C6A2B;    /* ocre foncé (hover) */
  --cream:#F5F1E8;         /* crème (fonds doux) */
  --paper:#FAF7EE;         /* papier (titres sur foncé) */
  --sand:#E8DCC4;          /* sable */
  --gold:#D4B896;          /* doré clair */
  --moss:#5C7A4B;          /* vert mousse */
  --moss-soft:#B8C9A5;     /* vert tendre (texte sur foncé) */
  --ink:#2A1B0F;           /* encre (texte fort) */
  --ink-2:#6B5544;         /* encre secondaire */
  --ink-3:#3A3127;
  --line:#E7E3DB;          /* bordures claires */
  --line-2:#CDC1AB;        /* bordures inputs */
  --ok:#3F6B3F;            /* succès */
  --danger:#B5462C;
  --maxw:1280px;
  --radius:14px;
  --radius-lg:18px;
  --font-display:'Montserrat',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{background:#fff;color:var(--ink);font-family:var(--font-body);-webkit-font-smoothing:antialiased;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
input,select,textarea,button{font-family:inherit}
::selection{background:var(--ember);color:#fff}
h1,h2,h3,h4{font-family:var(--font-display);margin:0}

.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.section{padding:84px 0 30px}
.site-shell{min-height:100vh;display:flex;flex-direction:column;background:#fff}
.site-main{flex:1}
.kicker{font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--moss)}
.kicker--ember{color:var(--ember)}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:16px;margin-bottom:34px}
.section__title{font-weight:700;font-size:clamp(28px,4vw,38px);letter-spacing:-.01em;color:var(--forest);margin:8px 0 0}
.link-more{cursor:pointer;color:var(--ember-deep);font-weight:600;font-size:15px;display:inline-flex;align-items:center;gap:6px}

/* animations -------------------------------------------------------------- */
@keyframes hbfade{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.hbview,.page-enter{animation:hbfade .45s cubic-bezier(.32,.72,0,1) both}
@keyframes hbmarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* buttons ----------------------------------------------------------------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;border:none;border-radius:999px;
  padding:14px 28px;font-size:16px;font-weight:600;cursor:pointer;line-height:1;transition:background .18s,transform .18s,box-shadow .18s}
.btn--ember{background:var(--ember);color:#fff;box-shadow:0 10px 26px rgba(200,137,61,.32)}
.btn--ember:hover{background:var(--ember-deep)}
.btn--forest{background:var(--forest);color:var(--cream)}
.btn--forest:hover{background:var(--forest-deep)}
.btn--ghost{background:rgba(255,255,255,.08);color:var(--paper);border:1px solid rgba(255,255,255,.32)}
.btn--ghost:hover{background:rgba(255,255,255,.16)}
.btn--block{width:100%}
.btn--lg{padding:16px 30px}
.btn--sq{border-radius:10px}

/* announcement bar -------------------------------------------------------- */
.announce{background:var(--forest);color:var(--cream);position:relative;overflow:hidden;height:40px;display:flex;align-items:center}
.announce[hidden]{display:none}
.announce__track{display:inline-flex;white-space:nowrap;animation:hbmarquee 26s linear infinite;will-change:transform}
.announce:hover .announce__track{animation-play-state:paused}
.announce__group{display:inline-flex;align-items:center;font-size:13px;font-weight:500}
.announce__item{padding:0 26px}
.announce__sep{opacity:.4}
.announce__close{position:absolute;right:8px;top:50%;transform:translateY(-50%);width:26px;height:26px;border:none;
  background:rgba(255,255,255,.12);color:var(--cream);border-radius:6px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:15px}
.announce__close:hover{background:rgba(255,255,255,.25)}

/* header ------------------------------------------------------------------ */
.site-header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.94);backdrop-filter:blur(8px);border-bottom:1px solid var(--line)}
.site-header__inner{max-width:var(--maxw);margin:0 auto;padding:0 24px;height:74px;display:flex;align-items:center;gap:20px}
.brand{display:flex;align-items:center;gap:11px;cursor:pointer}
.brand__mark{display:inline-flex;width:38px;height:38px;align-items:center;justify-content:center;border-radius:10px;background:var(--forest);color:var(--gold)}
.brand__mark--ember{background:var(--ember);color:var(--forest-deep)}
.brand__name{font-family:var(--font-display);font-weight:700;letter-spacing:.04em;font-size:20px;color:var(--forest)}
.brand__dot{color:var(--ember)}
.brand--footer .brand__name{color:var(--paper)}
.nav-primary{margin-left:18px}
.nav-primary__list{display:flex;gap:30px;list-style:none;margin:0;padding:0;font-size:15px;font-weight:500}
.nav-primary__list a{padding:6px 0;cursor:pointer}
.nav-primary__list a:hover{color:var(--ember)}
.site-header__actions{margin-left:auto;display:flex;align-items:center;gap:12px}
.header-phone{display:inline-flex;align-items:center;gap:7px;font-size:14px;color:var(--ink-2);font-weight:500}
.header-phone svg{stroke:var(--moss)}
.header-cart{padding:9px 16px 9px 14px;font-size:14px}
.header-cart__count{background:var(--ember);color:#fff;border-radius:999px;min-width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;padding:0 5px}
.header-cart__count[hidden]{display:none}
.nav-burger{display:none;width:42px;height:42px;border:1px solid var(--line);background:#fff;border-radius:10px;align-items:center;justify-content:center;cursor:pointer;color:var(--forest)}
.nav-mobile{display:none;border-top:1px solid var(--line);padding:12px 24px 18px;flex-direction:column;gap:4px;font-size:16px;font-weight:500}
.nav-mobile a{padding:11px 6px;border-radius:8px}
.nav-mobile a:hover{background:var(--cream)}
.nav-open .nav-mobile{display:flex}

/* hero -------------------------------------------------------------------- */
.hero{position:relative;background:var(--forest-deep);overflow:hidden}
.hero__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.42}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(15,37,25,.82) 0%,rgba(15,37,25,.5) 55%,rgba(15,37,25,.2) 100%)}
.hero__inner{position:relative;max-width:var(--maxw);margin:0 auto;padding:96px 24px 104px}
.hero__content{max-width:660px}
.hero__title{font-weight:800;font-size:clamp(36px,6vw,62px);line-height:1.04;letter-spacing:-.02em;color:var(--paper);margin:0 0 22px}
.hero__lead{font-size:clamp(17px,2.2vw,20px);line-height:1.6;color:var(--sand);margin:0 0 36px;max-width:560px}
.hero__cta{display:flex;flex-wrap:wrap;gap:14px}
.hero__checks{display:flex;flex-wrap:wrap;gap:28px;margin-top:44px;color:var(--moss-soft);font-size:14px;font-weight:500}
.hero__checks span{display:flex;align-items:center;gap:8px}
.hero__checks svg{stroke:var(--ember)}

/* usp bar ----------------------------------------------------------------- */
.usp{background:var(--cream);border-bottom:1px solid var(--line)}
.usp__grid{max-width:var(--maxw);margin:0 auto;padding:30px 24px;display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:24px}
.usp__item{display:flex;align-items:flex-start;gap:14px}
.usp__icon{flex-shrink:0;width:44px;height:44px;border-radius:11px;background:#fff;border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--moss)}
.usp__title{font-weight:600;font-size:15px;color:var(--forest);font-family:var(--font-display)}
.usp__text{font-size:13.5px;color:var(--ink-2);line-height:1.5;margin-top:2px}

/* category cards ---------------------------------------------------------- */
.cat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.cat-card{position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);background:var(--forest);min-height:260px;display:block;cursor:pointer}
.cat-card:hover{box-shadow:0 16px 38px rgba(42,27,15,.16)}
.cat-card__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.6}
.cat-card__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,37,25,.15) 30%,rgba(15,37,25,.88) 100%)}
.cat-card__body{position:absolute;left:0;right:0;bottom:0;padding:26px}
.cat-card__kicker{font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:6px}
.cat-card__title{font-family:var(--font-display);font-weight:700;font-size:24px;color:var(--paper)}
.cat-card__text{font-size:14px;color:var(--sand);margin-top:6px;line-height:1.5}

/* product grid & cards ---------------------------------------------------- */
.pgrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(248px,1fr));gap:26px}
.product-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .2s,transform .2s}
.product-card:hover{box-shadow:0 16px 36px rgba(42,27,15,.12);transform:translateY(-2px)}
.product-card__media{position:relative;cursor:pointer;aspect-ratio:4/3;background:linear-gradient(145deg,var(--sand),var(--gold));overflow:hidden}
.product-card__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.product-card__body{padding:18px 18px 20px;display:flex;flex-direction:column;flex:1}
.product-card__cat{font-size:12px;color:var(--moss);font-weight:600;letter-spacing:.04em}
.product-card__title{font-family:var(--font-display);font-weight:600;font-size:18px;color:var(--forest);margin:5px 0 8px;cursor:pointer}
.product-card__desc{font-size:13.5px;color:var(--ink-2);line-height:1.5;margin:0 0 14px;flex:1}
.product-card__foot{display:flex;align-items:flex-end;justify-content:space-between;gap:10px}
.product-card__price{font-family:var(--font-display);font-weight:700;font-size:20px;color:var(--ink)}
.product-card__unit{font-size:12px;color:var(--ink-2)}
.badge{position:absolute;top:12px;left:12px;background:var(--ember);color:#fff;font-size:11px;font-weight:700;letter-spacing:.04em;padding:5px 10px;border-radius:999px}
.icon-add{background:var(--forest);color:var(--cream);border:none;border-radius:9px;width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer}
.icon-add:hover{background:var(--forest-deep)}

/* manifesto --------------------------------------------------------------- */
.manifesto{background:var(--forest-deep);margin-top:70px;position:relative;overflow:hidden}
.manifesto__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.16}
.manifesto__inner{position:relative;max-width:var(--maxw);margin:0 auto;padding:96px 24px}
.manifesto__title{font-weight:700;font-size:clamp(28px,4.4vw,42px);line-height:1.12;letter-spacing:-.01em;color:var(--paper);margin:14px 0 22px}
.manifesto p{font-size:18px;line-height:1.7;color:var(--sand);margin:0 0 18px}
.stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.stat{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:26px 22px}
.stat__value{font-family:var(--font-display);font-weight:800;font-size:36px;color:var(--ember);letter-spacing:-.01em}
.stat__label{font-size:14px;color:var(--moss-soft);margin-top:6px;line-height:1.45}

/* journal ----------------------------------------------------------------- */
.journal-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.journal-card{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;transition:box-shadow .2s}
.journal-card:hover{box-shadow:0 14px 32px rgba(42,27,15,.1)}
.journal-card__media{position:relative;aspect-ratio:16/9;background:linear-gradient(150deg,var(--forest),var(--ink));overflow:hidden;display:block}
.journal-card__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.85}
.journal-card__cat{position:absolute;top:12px;left:12px;background:rgba(255,254,249,.92);color:var(--forest);font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:5px 10px;border-radius:999px}
.journal-card__body{padding:22px}
.journal-card__meta{font-size:12.5px;color:var(--ink-2);font-weight:500}
.journal-card__title{font-family:var(--font-display);font-weight:600;font-size:19px;color:var(--forest);margin:8px 0 8px;line-height:1.28}
.journal-card__excerpt{font-size:14px;color:var(--ink-2);line-height:1.55;margin:0}

/* newsletter -------------------------------------------------------------- */
.newsletter{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(32px,5vw,56px);display:grid;grid-template-columns:1.2fr 1fr;gap:40px;align-items:center}
.newsletter__title{font-weight:700;font-size:clamp(24px,3.4vw,32px);color:var(--forest);margin:0 0 12px;letter-spacing:-.01em}
.newsletter__text{font-size:16px;color:var(--ink-2);line-height:1.6;margin:0}
.newsletter__form{display:flex;gap:10px;flex-wrap:wrap}
.newsletter__ok{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid var(--moss-soft);border-radius:12px;padding:18px 20px;color:var(--ok);font-weight:600}

/* forms ------------------------------------------------------------------- */
.field{display:flex;flex-direction:column;gap:6px;font-size:13px;font-weight:600;color:var(--ink)}
.input,.newsletter__form input,.select{flex:1;min-width:200px;border:1px solid var(--line-2);background:#fff;border-radius:10px;padding:14px 16px;font-size:15px;color:var(--ink);font-weight:400}
.input--full{width:100%}
textarea.input{resize:vertical;min-height:90px;font-family:inherit}

/* breadcrumb -------------------------------------------------------------- */
.crumb{font-size:13px;color:var(--ink-2);margin-bottom:22px}
.crumb a{cursor:pointer}

/* page header band -------------------------------------------------------- */
.page-band{background:var(--cream);border-bottom:1px solid var(--line)}
.page-band__inner{max-width:var(--maxw);margin:0 auto;padding:46px 24px 40px}
.page-band__title{font-weight:700;font-size:clamp(30px,5vw,46px);color:var(--forest);letter-spacing:-.02em;margin:0 0 10px}
.page-band__lead{font-size:17px;color:var(--ink-2);max-width:620px;line-height:1.6;margin:0}

/* layouts ----------------------------------------------------------------- */
.twocol{display:grid;grid-template-columns:1.04fr .96fr;gap:56px;align-items:center}
.dgrid{display:grid;grid-template-columns:1fr 360px;gap:48px;align-items:start}
.cgrid{display:grid;grid-template-columns:1fr 350px;gap:40px;align-items:start}
.fcols{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px}

/* spec table -------------------------------------------------------------- */
.spec-table{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.spec-table__head{background:var(--cream);padding:14px 20px;font-family:var(--font-display);font-weight:600;font-size:15px;color:var(--forest);border-bottom:1px solid var(--line)}
.spec-row{display:flex;justify-content:space-between;gap:16px;padding:13px 20px;border-bottom:1px solid #F0EBE0;font-size:14.5px}
.spec-row__k{color:var(--ink-2)}
.spec-row__v{color:var(--ink);font-weight:600;text-align:right}
.pill{border:1px solid var(--moss-soft);background:#fff;color:var(--ok);border-radius:8px;padding:7px 12px;font-size:12.5px;font-weight:600;letter-spacing:.03em}

/* trust list -------------------------------------------------------------- */
.trust{display:flex;flex-direction:column;gap:14px}
.trust__item{display:flex;align-items:flex-start;gap:12px;font-size:14px;color:var(--ink)}
.trust__item svg{stroke:var(--moss);flex-shrink:0;margin-top:1px}

/* legal ------------------------------------------------------------------- */
.legal h2{font-family:var(--font-display);font-weight:700;font-size:24px;color:var(--forest);margin:0 0 14px;letter-spacing:-.01em}
.legal h3{font-family:var(--font-display);font-weight:600;font-size:17px;color:var(--forest);margin:26px 0 8px}
.legal p{font-size:15.5px;line-height:1.72;color:var(--ink-3);margin:0 0 14px}
.legal ul{margin:0 0 14px;padding-left:20px}
.legal li{font-size:15.5px;line-height:1.7;color:var(--ink-3);margin-bottom:6px}
.legal strong{color:var(--ink);font-weight:600}
.legal a{color:var(--ember-deep);word-break:break-word}
.legal-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:34px}
.legal-tab{border:1px solid var(--line-2);background:#fff;color:var(--ink);border-radius:999px;padding:9px 18px;font-size:14px;font-weight:600;cursor:pointer}
.legal-tab:hover{border-color:var(--moss);color:var(--ember-deep)}
.legal-tab.is-active{background:var(--forest);color:var(--cream);border-color:var(--forest)}
.legal-note{margin-top:44px;padding-top:20px;border-top:1px solid var(--line);font-size:13px;color:var(--ink-2);line-height:1.6}

/* delivery / zones -------------------------------------------------------- */
.zone-table{width:100%;border-collapse:collapse;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.zone-table th,.zone-table td{padding:14px 18px;text-align:left;font-size:14.5px;border-bottom:1px solid #F0EBE0}
.zone-table th{background:var(--cream);font-family:var(--font-display);color:var(--forest)}
.plz-checker{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0}
.plz-result{margin-top:14px;font-size:15px;display:flex;align-items:center;gap:9px}
.plz-result__dot{width:10px;height:10px;border-radius:50%;display:inline-block}

/* contact ----------------------------------------------------------------- */
.contact-card{display:flex;align-items:flex-start;gap:16px}
.contact-card__icon{flex-shrink:0;width:46px;height:46px;border-radius:11px;background:#fff;border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--moss)}
.contact-card__title{font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--forest)}
.contact-card__text{font-size:15px;color:var(--ink-2);line-height:1.55;margin-top:3px;white-space:pre-line}
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px}
.notice-ok{display:flex;flex-direction:column;align-items:center;text-align:center;padding:40px 10px}
.notice-ok__icon{display:inline-flex;width:62px;height:62px;border-radius:50%;background:#E7F0E0;color:var(--ok);align-items:center;justify-content:center;margin-bottom:18px}

/* footer ------------------------------------------------------------------ */
.site-footer{background:var(--forest-deep);color:var(--moss-soft);margin-top:auto}
.site-footer__cols{max-width:var(--maxw);margin:0 auto;padding:64px 24px 30px;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px}
.site-footer__about{font-size:14px;line-height:1.65;max-width:320px;margin:16px 0 18px}
.cert-badges{display:flex;gap:10px}
.cert-badge{border:1px solid rgba(255,255,255,.18);border-radius:8px;padding:7px 12px;font-size:12px;color:var(--gold);font-weight:600}
.site-footer__title{font-family:var(--font-display);font-weight:600;font-size:14px;color:var(--paper);letter-spacing:.04em;margin:0 0 16px}
.site-footer__list{display:flex;flex-direction:column;gap:11px;font-size:14px;list-style:none;margin:0;padding:0}
.site-footer__list a:hover{color:#fff}
.site-footer__phone{color:var(--gold);font-weight:600}
.site-footer__bottom{border-top:1px solid rgba(255,255,255,.12);display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;font-size:13px;color:#7A8A6C;padding:20px 24px;max-width:var(--maxw);margin:0 auto}
.site-footer__legal{display:flex;gap:20px;flex-wrap:wrap;list-style:none;margin:0;padding:0;font-size:13px}

/* woocommerce bridges ----------------------------------------------------- */
.dgrid,.cgrid{min-width:0}
.dgrid>*,.cgrid>*{min-width:0}
/* Neutralise la grille flottante par défaut de WooCommerce (shop + produits liés). */
.woocommerce ul.products{display:grid !important;grid-template-columns:repeat(auto-fill,minmax(238px,1fr)) !important;gap:26px;margin:0;padding:0;width:100%}
.woocommerce ul.products::before,.woocommerce ul.products::after{content:none !important;display:none !important}
.woocommerce ul.products li.product{width:auto !important;float:none !important;margin:0 !important;clear:none !important}
.woocommerce ul.products li.product::before,.woocommerce ul.products li.product::after{display:none}
.woocommerce .products .product-card__title,.woocommerce ul.products li.product a{text-decoration:none}
.woocommerce-message,.woocommerce-info,.woocommerce-error{border-radius:12px;border:1px solid var(--line);background:var(--cream);padding:14px 18px;list-style:none;font-size:14.5px;color:var(--ink)}
.woocommerce-error{border-color:#E6C3B8;background:#FBEEEA;color:var(--danger)}
.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce form .form-row select{border:1px solid var(--line-2);border-radius:10px;padding:13px;font-size:15px}
.qty-stepper{display:flex;align-items:center;border:1px solid var(--line-2);border-radius:10px;overflow:hidden}
.qty-stepper button{width:46px;height:48px;border:none;background:var(--cream);color:var(--forest);font-size:20px;cursor:pointer}
.qty-stepper span{width:50px;text-align:center;font-weight:700;font-size:16px}

/* Tri (select WooCommerce) ------------------------------------------------ */
.woocommerce-ordering{margin-left:auto}
select.orderby,.woocommerce-ordering select{
  -webkit-appearance:none;-moz-appearance:none;appearance:none;
  border:1px solid var(--line-2);background:#fff;border-radius:10px;
  padding:11px 40px 11px 15px;font-size:14px;color:var(--ink);cursor:pointer;font-weight:500;
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B5544' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;
}
select.orderby:hover,.woocommerce-ordering select:hover{border-color:var(--moss)}
.woocommerce-result-count{color:var(--ink-2);font-size:14px;margin:0}

/* Filtres du shop --------------------------------------------------------- */
.shop-filters .filter-group{margin-bottom:24px}
.filter-group__head{font-family:var(--font-display);font-weight:600;font-size:15px;color:var(--forest);
  padding:0 0 10px;margin-bottom:10px;border-bottom:1px solid var(--line)}
.filter-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:2px}
.filter-list__link{display:block;padding:9px 12px;border-radius:9px;font-size:15px;color:var(--ink);cursor:pointer}
.filter-list__link:hover{background:var(--cream);color:var(--ember-deep)}
.filter-list__link.is-active{background:var(--forest);color:var(--cream);font-weight:600}
.price-filter__row{display:flex;align-items:center;gap:8px;margin-bottom:12px}
.price-filter__input{min-width:0;width:100%;padding:11px 12px;font-size:14px}
.price-filter__sep{color:var(--ink-2)}
.price-filter__btn{width:100%;padding:11px;font-size:14px}

/* Bouton d'ajout en icône (cartes produit) -------------------------------- */
.icon-add{flex-shrink:0;text-decoration:none}
.icon-add.loading{opacity:.6}
.icon-add.added{background:var(--ok)}
.woocommerce ul.products li.product .added_to_cart{display:none}

/* =========================================================================
   FICHE PRODUIT
   ========================================================================= */
.woocommerce div.product{display:block;margin:0}
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary,
.woocommerce div.product .entry-summary{width:auto!important;float:none!important;margin:0!important}

/* TOP : galerie | infos (mise en page reproduite de la source) */
.product-detail{display:grid;grid-template-columns:1.04fr .96fr;gap:48px;align-items:stretch;margin-bottom:8px}
@media(max-width:900px){ .product-detail{grid-template-columns:1fr;gap:28px;align-items:start} }

/* Galerie — l'image remplit toute la hauteur de la colonne (évite le vide) */
.product-gallery{display:flex;flex-direction:column;min-width:0}
.product-gallery__main{position:relative;flex:1 1 auto;min-height:380px;max-height:520px;border-radius:var(--radius-lg);overflow:hidden;background:linear-gradient(145deg,var(--sand),var(--gold));border:1px solid var(--line)}
@media(max-width:900px){ .product-gallery__main{flex:none;aspect-ratio:4/3;min-height:0;max-height:none} }
.product-gallery__main img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.product-gallery__thumbs{display:flex;gap:12px;margin-top:14px}
.gallery__thumb{flex:1;max-width:96px;aspect-ratio:1/1;border-radius:11px;overflow:hidden;border:2px solid transparent;background:var(--cream);cursor:pointer;padding:0}
.gallery__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.gallery__thumb:hover{border-color:var(--moss)}
.gallery__thumb.is-active{border-color:var(--ember)}

/* Colonne infos — sobre, sans carte (comme la source) */
.product-info{min-width:0}
.product-info__title{font-weight:700;font-size:clamp(24px,2.9vw,33px);color:var(--forest);letter-spacing:-.01em;line-height:1.12;margin:8px 0 10px}
.product-info__rating{display:flex;align-items:center;gap:9px;margin-bottom:12px;font-size:13px;color:var(--ink-2);font-weight:500}
.product-info__pricerow{margin:0}
.product-info__tax{font-size:13.5px;color:var(--ink-2);margin:2px 0 12px}
.product-info__meta{margin-top:14px;padding-top:14px;border-top:1px solid var(--line);display:flex;flex-direction:column;gap:12px}
.product-info__pay{display:flex;align-items:center;flex-wrap:wrap;gap:8px}
.delivery-box{display:flex;gap:12px;align-items:flex-start;background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:14px 16px;margin:14px 0 0}
.delivery-box svg{stroke:var(--moss);flex-shrink:0;margin-top:2px}
.delivery-box strong{display:block;font-family:var(--font-display);font-weight:600;font-size:14.5px;color:var(--forest)}
.delivery-box span{display:block;font-size:13.5px;color:var(--ink-2);margin-top:3px;line-height:1.5}

/* Onglets (Beschreibung / Eigenschaften / Lieferung) */
.product-tabs{margin:48px 0 8px;border-top:1px solid var(--line)}
.tab-nav{display:flex;flex-wrap:wrap;gap:4px;margin-top:-1px}
.tab-button{background:none;border:none;border-top:2px solid transparent;padding:20px 22px;font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--ink-2);cursor:pointer}
.tab-button:hover{color:var(--forest)}
.tab-button.is-active{color:var(--forest);border-top-color:var(--ember)}
.tab-panel{display:none;padding:14px 0 10px;max-width:880px}
.tab-panel.is-active{display:block;animation:hbfade .3s ease both}
.rte h2,.rte h3{font-family:var(--font-display);color:var(--forest);letter-spacing:-.01em;margin:26px 0 10px;font-size:19px}
.rte h2:first-child,.rte h3:first-child{margin-top:0}
.rte p{font-size:15.5px;line-height:1.75;color:var(--ink-3);margin:0 0 14px}
.rte ul,.rte ol{margin:0 0 16px;padding-left:20px}
.rte li{font-size:15.5px;line-height:1.7;color:var(--ink-3);margin-bottom:7px}
.rte strong{color:var(--ink);font-weight:600}
.spec-table-grid{width:100%;border-collapse:collapse;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;max-width:620px}
.spec-table-grid th,.spec-table-grid td{padding:14px 18px;text-align:left;font-size:14.5px;border-bottom:1px solid #F0EBE0;vertical-align:top}
.spec-table-grid th{background:var(--cream);color:var(--ink-2);font-family:var(--font-body);font-weight:500;width:42%}
.spec-table-grid td{color:var(--ink);font-weight:600}
.spec-table-grid tr:last-child th,.spec-table-grid tr:last-child td{border-bottom:none}

/* (rétro-compat anciennes classes buybox) */
.buybox__title{font-weight:700;font-size:clamp(26px,3vw,34px);color:var(--forest);letter-spacing:-.01em;line-height:1.1;margin:10px 0 10px}
.buybox__rating{display:flex;align-items:center;gap:9px;margin-bottom:14px}
.stars{color:var(--ember);font-size:16px;letter-spacing:1px}
.stars__half{opacity:.4}
.buybox__rating-text{font-size:13px;color:var(--ink-2);font-weight:500}
.buybox__lead{font-size:15px;color:var(--ink-2);line-height:1.6;margin:0 0 22px}
.buybox__pricerow{display:flex;align-items:baseline;flex-wrap:wrap;gap:10px;margin-bottom:8px}
.buybox__price{font-family:var(--font-display);font-weight:800;font-size:32px;color:var(--ink)}
.buybox__price .woocommerce-Price-amount{font-weight:800}
.buybox__unit{font-size:13.5px;color:var(--ink-2)}
.buybox__stock{font-size:13.5px;color:var(--ok);font-weight:600;display:flex;align-items:center;gap:8px;margin-bottom:16px}
.buybox__stock .dot{width:9px;height:9px;border-radius:50%;background:var(--ok);display:inline-block}
.buybox__stock--out{color:var(--danger)}
.buybox__stock--out .dot{background:var(--danger)}
.buybox__buy{border-top:1px solid var(--line);padding:16px 0 0}
.buybox__trust{display:flex;flex-direction:column;gap:13px;margin-bottom:20px}
.buybox__trust .trust__item{font-size:13.5px;align-items:flex-start}
.buybox__trust .trust__item strong{font-weight:600}
.buybox__pay{display:flex;align-items:center;flex-wrap:wrap;gap:8px;padding-top:18px;border-top:1px solid var(--line);margin-bottom:18px}
.buybox__pay-label{font-size:13px;color:var(--ink-2);font-weight:600;margin-right:2px}
.pay-badge{border:1px solid var(--line-2);border-radius:7px;padding:5px 10px;font-size:12px;font-weight:600;color:var(--ink-2);background:var(--cream)}
.buybox__certs{display:flex;flex-wrap:wrap;gap:8px}
.buybox__certs .pill{display:inline-flex;align-items:center;gap:5px}
.buybox__certs .pill svg{stroke:var(--ok)}

/* Add-to-cart form dans la buy-box */
.product-info .cart{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin:0!important}
.product-info .cart .quantity input.qty{width:64px;height:50px;border:1px solid var(--line-2);border-radius:11px;text-align:center;font-weight:700;font-size:16px;color:var(--ink);background:#fff}
.product-info .single_add_to_cart_button,
.product-info .cart button.button{
  flex:1;min-width:200px;background:var(--ember)!important;color:#fff!important;border:none;border-radius:12px;
  padding:17px 24px;font-size:16px;font-weight:700;cursor:pointer;line-height:1;
  box-shadow:0 12px 26px rgba(200,137,61,.32);text-transform:none;letter-spacing:0;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
}
.product-info .single_add_to_cart_button:hover{background:var(--ember-deep)!important}

/* Formulaire de variations (produit variable) — sélecteurs sur une ligne */
.product-info .variations_form{margin:0!important}
.product-info .variations{display:block!important;width:100%;border:0!important;margin:0 0 12px}
.product-info .variations tbody{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:10px 14px}
.product-info .variations tr{display:block!important;margin:0!important;border:0!important}
.product-info .variations th.label,
.product-info .variations td.label{display:block!important;width:auto!important;padding:0 0 6px!important;text-align:left!important;border:0!important;font-family:var(--font-display);font-weight:600;font-size:13px;color:var(--forest)}
.product-info .variations td.value{display:block!important;width:auto!important;padding:0!important;border:0!important;position:relative}
.product-info .variations select{
  -webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;
  border:1px solid var(--line-2);background:#fff;border-radius:11px;padding:12px 38px 12px 14px;
  font-size:15px;color:var(--ink);cursor:pointer;font-weight:500;
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B3A2B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;
}
.product-info .variations select:focus{outline:none;border-color:var(--moss)}
.product-info .reset_variations{display:inline-block;margin:2px 0 12px;font-size:13px;color:var(--ink-2);text-decoration:underline}
/* Prix de variation dupliqué masqué : un seul prix (en haut) fait foi. */
.product-info .woocommerce-variation-price{display:none!important}
.product-info .woocommerce-variation-availability{font-size:13px;color:var(--ok);margin-bottom:10px}
.product-info .single_variation_wrap{margin-top:4px}
.product-info .woocommerce-variation-description p{font-size:13.5px;color:var(--ink-2);margin:0 0 12px;line-height:1.5}
.icon-add--options{background:var(--forest)}
.icon-add--options:hover{background:var(--ember)}

/* Über dieses Holz */
.wood-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:560px){ .wood-facts{grid-template-columns:1fr} }
.wood-fact{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:20px}
.wood-fact__label{font-size:12px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--moss)}
.wood-fact__value{font-family:var(--font-display);font-weight:700;font-size:20px;color:var(--forest);margin-top:6px;letter-spacing:.04em}
.wood-fact__sub{font-size:13px;color:var(--ink-2);margin-top:3px;font-style:italic}

/* Titres de cartes produit : 2 lignes max */
.product-card__title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

/* Produits liés */
.related.products{margin-top:20px;border-top:1px solid var(--line);padding-top:40px}
.related.products>h2{font-family:var(--font-display);font-weight:700;font-size:26px;color:var(--forest);letter-spacing:-.01em;margin:0 0 26px}

/* Ajout au panier (fiche produit) ----------------------------------------- */
.woocommerce div.product form.cart{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin:0 0 6px}
.woocommerce div.product form.cart .quantity{margin:0}
.woocommerce div.product form.cart .quantity input.qty{
  width:66px;height:52px;border:1px solid var(--line-2);border-radius:10px;
  text-align:center;font-weight:700;font-size:16px;color:var(--ink);background:#fff;
}
.woocommerce div.product .single_add_to_cart_button,
.woocommerce div.product form.cart button.button,
.woocommerce div.product form.cart .button{
  background:var(--ember)!important;color:#fff!important;border:none;border-radius:11px;
  padding:16px 30px;font-size:16px;font-weight:600;cursor:pointer;line-height:1;
  box-shadow:0 10px 24px rgba(200,137,61,.3);text-transform:none;letter-spacing:0;
}
.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce div.product form.cart button.button:hover{background:var(--ember-deep)!important}

/* responsive -------------------------------------------------------------- */
@media(max-width:920px){ .dgrid,.cgrid,.fcols{grid-template-columns:1fr;gap:32px} .newsletter{grid-template-columns:1fr} }
@media(max-width:900px){
  .twocol{grid-template-columns:1fr;gap:36px}
  .nav-primary{display:none}
  .nav-burger{display:inline-flex}
}
@media(max-width:760px){ .fcols,.site-footer__cols{grid-template-columns:1fr 1fr;gap:32px} }
@media(max-width:640px){ .header-phone,.header-cart__label{display:none} .stats-grid{grid-template-columns:1fr} }
@media(max-width:460px){ .site-footer__cols{grid-template-columns:1fr} }

/* ============================================================= */
/* === Homepage & chrome — intégration fidèle du proto (ebh-) === */
/* ============================================================= */

:root{
  --ebh-brown:#6B4226; --ebh-brown-h:#7d4f2e;
  --ebh-forest:#3E5C3A; --ebh-tan:#C8A97E;
  --ebh-ember:#C8893D; --ebh-ember-h:#b3792f;
  --ebh-ink:#2B2B2B; --ebh-text:#5C554A; --ebh-muted:#7A7264; --ebh-muted2:#8A8275;
  --ebh-kicker:#A88E63;
  --ebh-cream:#FAF7F1; --ebh-chip:#F5F0E8; --ebh-chip-h:#EFE7D9; --ebh-chipline:#ECE5D8;
  --ebh-line:#EEE8DD; --ebh-line2:#EFE9DD;
  --ebh-dark:#211A12; --ebh-banner:#1C3A29; --ebh-creamtext:#EDE6DA;
  --ebh-maxw:1280px; --ebh-padx:40px; --ebh-secpad:104px;
}

/* utilitaires partagés */
.ebh-container{max-width:var(--ebh-maxw);margin:0 auto;padding:0 var(--ebh-padx)}
.ebh-section{padding:var(--ebh-secpad) 0}
.ebh-kicker{font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--ebh-kicker);margin-bottom:12px}
.ebh-kicker--dark{color:var(--ebh-tan)}
.ebh-h2{font-family:var(--font-display);font-weight:700;font-size:40px;line-height:1.12;letter-spacing:-.01em;margin:0;color:var(--ebh-ink)}
.ebh-h2--light{color:#fff}
.ebh-sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.ebh-blog-head__intro{max-width:760px;margin:14px 0 0;color:var(--ebh-muted);font-size:17px;line-height:1.7}
.ebh-btn{display:inline-flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:600;font-size:16px;padding:16px 28px;border:none;border-radius:12px;cursor:pointer;text-decoration:none;transition:all .2s ease}
.ebh-btn--primary{background:var(--ebh-brown);color:#fff;box-shadow:0 10px 26px rgba(0,0,0,.18)}
.ebh-btn--primary:hover{background:var(--ebh-brown-h);transform:translateY(-2px)}
.ebh-btn--ember{background:var(--ebh-ember);color:#fff}
.ebh-btn--ember:hover{background:var(--ebh-ember-h)}
.ebh-btn--chip{background:var(--ebh-chip);color:var(--ebh-brown);border:1px solid var(--ebh-chipline)}
.ebh-btn--chip:hover{background:var(--ebh-chip-h)}
.ebh-btn--glass{background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.34)}
.ebh-btn--glass:hover{background:rgba(255,255,255,.2)}
.ebh-linkmore{display:inline-flex;align-items:center;gap:8px;background:none;border:none;cursor:pointer;font-family:var(--font-display);font-weight:600;font-size:15px;color:var(--ebh-brown);text-decoration:none}
@media (max-width:1024px){:root{--ebh-secpad:72px}}
@media (max-width:767px){:root{--ebh-padx:20px;--ebh-secpad:56px}.ebh-h2{font-size:27px}}

/* ===== Bandeau marquee défilant (announcement) ===== */
.ebh-announce {
  position: relative;
  z-index: 55;
  display: flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
  background: var(--ebh-banner);
  color: var(--ebh-creamtext);
}

.ebh-announce__viewport {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ebh-announce__track {
  display: inline-flex;
  align-items: center;
  animation: ebh-marquee 32s linear infinite;
  will-change: transform;
}

.ebh-announce__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.ebh-announce__icon {
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.ebh-announce__icon i {
  color: var(--ebh-tan);
}

.ebh-announce__sep {
  margin-left: 26px;
  color: #5C7A4B;
}

.ebh-announce__close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 7px;
  background: rgba(255, 255, 255, .13);
  color: var(--ebh-creamtext);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease;
}

.ebh-announce__close:hover {
  background: rgba(255, 255, 255, .25);
}

@keyframes ebh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Header sticky ===== */
.ebh-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.93);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border-bottom:1px solid #EFEAE1;
}
.ebh-header__inner{
  height:118px;display:flex;align-items:center;justify-content:space-between;gap:20px;
}

/* ----- Logo / marque ----- */
.ebh-header__brand{
  display:flex;align-items:center;gap:10px;text-decoration:none;
  -webkit-user-select:none;user-select:none;
}
.ebh-header__logo{
  width:38px;height:38px;border-radius:11px;
  background:var(--ebh-forest);color:#fff;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.ebh-header__name{
  font-family:var(--font-display);font-weight:700;font-size:19px;letter-spacing:.01em;
  line-height:1;white-space:nowrap;
}
.ebh-header__name-eich{color:var(--ebh-brown);}
.ebh-header__name-rest{color:var(--ebh-ink);}
.ebh-header__dot{color:var(--ebh-tan);}

/* ----- Nav desktop ----- */
.ebh-nav{display:flex;align-items:center;}
.ebh-nav__list{
  display:flex;align-items:center;gap:30px;
  list-style:none;margin:0;padding:0;
}
.ebh-nav__list li{margin:0;padding:0;}
.ebh-nav a,
.ebh-nav__list a,
.ebh-nav__list li a{
  display:inline-block;
  font-family:var(--font-body);font-size:15px;font-weight:500;
  color:var(--ebh-ink);text-decoration:none;
  padding:6px 0;
  transition:color .2s ease;
}
.ebh-nav a:hover,
.ebh-nav__list a:hover,
.ebh-nav__list li a:hover,
.ebh-nav__list li.current-menu-item > a{color:var(--ebh-brown);}

/* ----- Actions (panier + burger) ----- */
.ebh-header__actions{display:flex;align-items:center;gap:14px;}

.ebh-header__cart{
  position:relative;
  width:44px;height:44px;border-radius:12px;
  background:var(--ebh-chip);border:1px solid var(--ebh-chipline);
  color:var(--ebh-ink);text-decoration:none;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s ease,border-color .2s ease;
}
.ebh-header__cart:hover{background:var(--ebh-chip-h);border-color:#E0D4BE;}

.ebh-cart-count-wrap{
  position:absolute;top:-7px;right:-7px;
  display:flex;
}
.ebh-cart-count{
  min-width:20px;height:20px;padding:0 5px;
  background:var(--ebh-brown);color:#fff;
  border-radius:999px;border:2px solid #fff;
  font-family:var(--font-display);font-size:11px;font-weight:700;line-height:1;
  display:flex;align-items:center;justify-content:center;
}
.ebh-cart-count--empty{display:none;}

.ebh-header__burger{
  display:none;
  width:44px;height:44px;border-radius:12px;
  background:var(--ebh-chip);border:1px solid var(--ebh-chipline);
  color:var(--ebh-ink);cursor:pointer;
  align-items:center;justify-content:center;
}

/* ===== Drawer mobile ===== */
.ebh-drawer{
  position:fixed;inset:0;z-index:60;
  background:#fff;
  display:none;flex-direction:column;
}
.ebh-drawer--open{
  display:flex;
  animation:ebhDrawerFade .2s ease;
}
@keyframes ebhDrawerFade{from{opacity:0;}to{opacity:1;}}

.ebh-drawer__top{
  height:74px;flex-shrink:0;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 20px;border-bottom:1px solid #EFEAE1;
}
.ebh-drawer__name{
  font-family:var(--font-display);font-weight:700;font-size:18px;line-height:1;
}
.ebh-drawer__close{
  width:44px;height:44px;border-radius:12px;
  background:var(--ebh-chip);border:1px solid var(--ebh-chipline);
  color:var(--ebh-ink);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;line-height:1;
}

.ebh-drawer__nav{padding:14px 20px;}
.ebh-drawer__list{
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:2px;
}
.ebh-drawer__list li{margin:0;padding:0;}
.ebh-drawer__list a{
  display:block;
  font-family:var(--font-display);font-size:22px;font-weight:600;
  color:var(--ebh-ink);text-decoration:none;
  padding:16px 4px;border-bottom:1px solid #F2EDE4;
}
.ebh-drawer__list a:hover{color:var(--ebh-brown);}

.ebh-drawer__cta{margin-top:auto;padding:24px 20px;}
.ebh-drawer__cta-btn{
  width:100%;justify-content:center;
  padding:18px;border-radius:12px;
  font-family:var(--font-display);font-weight:600;font-size:16px;
}

/* ===== Responsive ===== */
@media (max-width:1024px){
  .ebh-nav{display:none;}
  .ebh-header__burger{display:flex;}
}
@media (max-width:768px){
  .ebh-header__inner{height:76px;}
  .ebh-header__logo-img{max-height:56px;}
}
@media (min-width:1025px){
  .ebh-drawer{display:none !important;}
}

/* ============================================================
   HOME — Holz BES (front-page)
   Sections : hero, usp, pop (produits populaires), manifeste, newsletter
   ============================================================ */

/* ---------- 1. HERO (proto 103-124) ---------- */
.ebh-hero{
	position:relative;
	min-height:90vh;
	display:flex;
	align-items:center;
	overflow:hidden;
}
.ebh-hero__bg{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.ebh-hero__overlay{
	position:absolute;
	inset:0;
	background:linear-gradient(95deg,rgba(22,16,10,.74) 0%,rgba(22,16,10,.46) 45%,rgba(22,16,10,.18) 100%);
}
.ebh-hero__inner{
	position:relative;
	width:100%;
}
.ebh-hero__content{
	max-width:660px;
	color:#fff;
}
.ebh-hero__pill{
	display:inline-flex;
	align-items:center;
	gap:9px;
	font-family:var(--font-display);
	font-size:12px;
	font-weight:600;
	letter-spacing:.16em;
	text-transform:uppercase;
	color:var(--ebh-creamtext);
	background:rgba(255,255,255,.10);
	border:1px solid rgba(255,255,255,.22);
	padding:8px 15px;
	border-radius:999px;
	margin-bottom:24px;
}
.ebh-hero__pill svg{flex:0 0 auto;}
.ebh-hero__title{
	font-family:var(--font-display);
	font-weight:800;
	font-size:70px;
	line-height:1.04;
	letter-spacing:-.02em;
	margin:0 0 22px;
	color:#fff;
}
.ebh-hero__lead{
	font-family:var(--font-body);
	font-size:19px;
	line-height:1.6;
	color:var(--ebh-creamtext);
	max-width:520px;
	margin:0 0 32px;
}
.ebh-hero__cta{
	display:flex;
	flex-wrap:wrap;
	gap:14px;
	margin-bottom:38px;
}
.ebh-hero__cta .ebh-btn svg{flex:0 0 auto;}
.ebh-hero__trust{
	display:flex;
	flex-wrap:wrap;
	gap:22px;
}
.ebh-hero__trust-item{
	display:inline-flex;
	align-items:center;
	gap:8px;
	font-family:var(--font-body);
	font-size:14px;
	color:#E7DECF;
}
.ebh-hero__trust-item svg{flex:0 0 auto;color:#E0A35A;}
.ebh-hero__trust-item--map svg{color:#A9C28F;}
.ebh-hero__trust-item--truck svg{color:var(--ebh-creamtext);}

/* ---------- 2. USP (proto 126-140) ---------- */
.ebh-usp{
	background:#fff;
	padding:var(--ebh-secpad) 0;
}
.ebh-usp__grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:22px;
}
.ebh-usp__card{
	background:var(--ebh-cream);
	border:1px solid var(--ebh-line2);
	border-radius:18px;
	padding:30px 26px;
	transition:transform .25s ease,box-shadow .25s ease;
}
.ebh-usp__card:hover{
	transform:translateY(-4px);
	box-shadow:0 16px 34px rgba(43,43,43,.07);
}
.ebh-usp__icon{
	width:54px;
	height:54px;
	border-radius:14px;
	background:#fff;
	border:1px solid #EBE3D4;
	display:flex;
	align-items:center;
	justify-content:center;
	color:var(--ebh-forest);
	margin-bottom:18px;
}
.ebh-usp__title{
	font-family:var(--font-display);
	font-weight:600;
	font-size:18px;
	margin:0 0 9px;
	color:var(--ebh-ink);
}
.ebh-usp__text{
	font-family:var(--font-body);
	font-size:14.5px;
	line-height:1.6;
	color:var(--ebh-muted);
	margin:0;
}

/* ---------- 3. PRODUITS POPULAIRES (proto 142-172) ---------- */
.ebh-pop{
	background:var(--ebh-cream);
	padding:var(--ebh-secpad) 0;
	border-top:1px solid var(--ebh-line2);
	border-bottom:1px solid var(--ebh-line2);
}
.ebh-pop__head{
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	gap:20px;
	flex-wrap:wrap;
	margin-bottom:36px;
}
.ebh-pop__head .ebh-kicker{margin-bottom:12px;}
.ebh-pop__head .ebh-h2{margin:0;}
.ebh-pop__grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:22px;
}

/* ---------- 4. MANIFESTE (proto 173-197) ---------- */
.ebh-manifesto{
	background:#fff;
	padding:var(--ebh-secpad) 0;
}
.ebh-manifesto__inner{
	display:flex;
	gap:60px;
	align-items:center;
}
.ebh-manifesto__media{
	flex:1;
	position:relative;
}
.ebh-manifesto__img{
	width:100%;
	height:auto;
	border-radius:22px;
	object-fit:cover;
	display:block;
}
.ebh-manifesto__badge{
	position:absolute;
	bottom:-26px;
	right:-6px;
	background:#fff;
	border:1px solid var(--ebh-line);
	border-radius:18px;
	padding:20px 24px;
	box-shadow:0 18px 40px rgba(43,43,43,.12);
	display:flex;
	align-items:center;
	gap:16px;
}
.ebh-manifesto__badge-num{
	font-family:var(--font-display);
	font-weight:800;
	font-size:34px;
	color:var(--ebh-forest);
	line-height:1;
}
.ebh-manifesto__badge-label{
	font-family:var(--font-body);
	font-size:13.5px;
	color:var(--ebh-muted);
	line-height:1.4;
}
.ebh-manifesto__body{flex:1;}
.ebh-manifesto__body .ebh-kicker{margin-bottom:14px;}
.ebh-manifesto__body .ebh-h2{margin:0 0 20px;}
.ebh-manifesto__p{
	font-family:var(--font-body);
	font-size:17px;
	line-height:1.7;
	color:var(--ebh-text);
	margin:0 0 16px;
}
.ebh-manifesto__p+.ebh-manifesto__p{margin-bottom:28px;}
.ebh-manifesto__checks{
	display:flex;
	flex-wrap:wrap;
	gap:14px 30px;
	margin-bottom:30px;
}
.ebh-manifesto__check{
	display:inline-flex;
	align-items:center;
	gap:10px;
	font-family:var(--font-body);
	font-size:15px;
	color:#3D3A33;
	font-weight:500;
}
.ebh-manifesto__check svg{flex:0 0 auto;color:var(--ebh-forest);}

/* ---------- 8. NEWSLETTER (proto 264-280) ---------- */
.ebh-newsletter{
	background:#fff;
	padding:var(--ebh-secpad) 0;
}
.ebh-newsletter__inner{
	max-width:780px;
	text-align:center;
}
.ebh-newsletter__icon{
	width:60px;
	height:60px;
	border-radius:16px;
	background:var(--ebh-chip);
	border:1px solid var(--ebh-chipline);
	display:inline-flex;
	align-items:center;
	justify-content:center;
	color:var(--ebh-brown);
	margin-bottom:22px;
}
.ebh-newsletter__inner .ebh-h2{margin:0 0 14px;}
.ebh-newsletter__text{
	font-family:var(--font-body);
	font-size:17px;
	line-height:1.6;
	color:var(--ebh-text);
	margin:0 0 28px;
}
.ebh-newsletter__form{max-width:520px;margin:0 auto;}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
	.ebh-usp__grid{grid-template-columns:repeat(2,1fr);}
	.ebh-pop__grid{grid-template-columns:repeat(2,1fr);}
	.ebh-hero__title{font-size:54px;}
	.ebh-manifesto__inner{gap:40px;}
}

@media (max-width:768px){
	.ebh-hero{min-height:78vh;}
	.ebh-hero__title{font-size:38px;}
	.ebh-hero__lead{font-size:16px;}
	.ebh-usp__grid{grid-template-columns:1fr;}
	.ebh-pop__grid{grid-template-columns:1fr;}
	.ebh-manifesto__inner{flex-direction:column;gap:54px;}
	.ebh-manifesto__media{width:100%;}
	.ebh-manifesto__badge{right:16px;bottom:-22px;}
}

/* ===== Carte produit (home + shop) ===== */
.ebh-pcard {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ebh-line);
	border-radius: 18px;
	box-shadow: 0 4px 16px rgba(43, 43, 43, .04);
	text-decoration: none;
	color: inherit;
	transition: transform .25s cubic-bezier(.32, .72, 0, 1), box-shadow .25s cubic-bezier(.32, .72, 0, 1), border-color .25s cubic-bezier(.32, .72, 0, 1);
}
.ebh-pcard:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(43, 43, 43, .12);
	border-color: #E4DAC8;
}
/* Lien « stretched » : rend toute la carte cliquable sans ancre imbriquée */
.ebh-pcard__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
}
/* Le bouton add-to-cart reste cliquable au-dessus du lien de carte */
.ebh-pcard__add {
	position: relative;
	z-index: 2;
}

/* Média carré */
.ebh-pcard__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #F3EEE6;
}
.ebh-pcard__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.ebh-pcard:hover .ebh-pcard__img {
	transform: scale(1.05);
}

/* Badge */
.ebh-pcard__badge {
	position: absolute;
	top: 13px;
	left: 13px;
	background: var(--ebh-forest);
	color: #fff;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .02em;
	padding: 5px 11px;
	border-radius: 999px;
}

/* Corps */
.ebh-pcard__body {
	display: flex;
	flex-direction: column;
	gap: 7px;
	flex: 1;
	padding: 18px 19px 20px;
}
.ebh-pcard__kicker {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ebh-muted2);
}
.ebh-pcard__title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 17px;
	line-height: 1.25;
	color: var(--ebh-ink);
}
.ebh-pcard__short {
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 1.45;
	color: var(--ebh-muted2);
}
.ebh-pcard__rating {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-body);
	font-size: 13px;
	color: #6B5E4B;
}
.ebh-pcard__rating .star,
.ebh-pcard__rating span[aria-hidden] {
	color: var(--ebh-ember);
}

/* Pied : prix + add-to-cart */
.ebh-pcard__foot {
	margin-top: auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	padding-top: 10px;
}
.ebh-pcard__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}
.ebh-pcard__amount {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 21px;
	color: var(--ebh-ink);
}
.ebh-pcard__amount .woocommerce-Price-amount,
.ebh-pcard__amount bdi {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
}
.ebh-pcard__amount del {
	font-size: 14px;
	color: var(--ebh-muted);
	font-weight: 600;
	margin-right: 5px;
}
.ebh-pcard__unit {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--ebh-muted);
	white-space: nowrap;
}
.ebh-pcard__add {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 12px;
	background: var(--ebh-brown);
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
}
.ebh-pcard__add:hover {
	background: var(--ebh-brown-h);
	transform: translateY(-2px);
	color: #fff;
}
.ebh-pcard__add svg {
	width: 20px;
	height: 20px;
	display: block;
}
.ebh-pcard__add.loading {
	opacity: .65;
	pointer-events: none;
}
.ebh-pcard__add.added {
	background: var(--ebh-forest);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.ebh-pcard__body { padding: 16px 17px 18px; }
}
@media (max-width: 768px) {
	.ebh-pcard__title { font-size: 16px; }
	.ebh-pcard__amount { font-size: 19px; }
	.ebh-pcard__add { width: 40px; height: 40px; }
}

/* ===== Section Process « In drei Schritten zur warmen Stube » ===== */
.ebh-process {
	background: var(--ebh-dark);
	position: relative;
	overflow: hidden;
}

.ebh-process__head {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 48px;
}

.ebh-process__head .ebh-kicker {
	margin-bottom: 14px;
}

.ebh-process__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.ebh-process__card {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 20px;
	padding: 34px 30px;
}

.ebh-process__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.ebh-process__icon {
	width: 54px;
	height: 54px;
	border-radius: 15px;
	background: var(--ebh-forest);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.ebh-process__icon svg {
	width: 25px;
	height: 25px;
}

.ebh-process__num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 40px;
	line-height: 1;
	color: rgba(200, 169, 126, .32);
}

.ebh-process__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	margin: 0 0 10px;
	color: #fff;
}

.ebh-process__text {
	font-size: 15px;
	line-height: 1.65;
	color: #A99B85;
	margin: 0;
}

/* Tablette : col3 -> 2 colonnes */
@media (max-width: 1024px) {
	.ebh-process__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile : col3 -> 1 colonne */
@media (max-width: 768px) {
	.ebh-process__grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Témoignages — « Was unsere Kunden sagen » ===== */
.ebh-tmon {
  background: #fff;
}
.ebh-tmon__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ebh-tmon__heading .ebh-h2 {
  margin: 0;
}
.ebh-tmon__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ebh-cream);
  border: 1px solid var(--ebh-line2);
  border-radius: 14px;
  padding: 14px 20px;
}
.ebh-tmon__badge-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ebh-ink);
}
.ebh-tmon__badge-stars {
  color: var(--ebh-ember);
  font-size: 15px;
  letter-spacing: 1px;
}
.ebh-tmon__badge-count {
  font-size: 12.5px;
  color: var(--ebh-muted2);
}

.ebh-tmon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ebh-tmon__card {
  background: var(--ebh-cream);
  border: 1px solid var(--ebh-line2);
  border-radius: 20px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ebh-tmon__stars {
  color: var(--ebh-ember);
  font-size: 17px;
  letter-spacing: 2px;
}
.ebh-tmon__text {
  font-size: 16px;
  line-height: 1.7;
  color: #4D463C;
  margin: 0;
  flex: 1;
}
.ebh-tmon__author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 6px;
  border-top: 1px solid var(--ebh-chipline);
}
.ebh-tmon__avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  background: var(--ebh-forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.ebh-tmon__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ebh-ink);
}
.ebh-tmon__loc {
  font-size: 13px;
  color: var(--ebh-muted2);
}

/* Tablette */
@media (max-width: 1024px) {
  .ebh-tmon__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media (max-width: 768px) {
  .ebh-tmon__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Section Liefer-CTA « Liefern wir auch zu Ihnen? » ===== */
.ebh-delcta {
  background: var(--ebh-cream);
}

.ebh-delcta__banner {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.ebh-delcta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebh-delcta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 26, 18, .86) 0%, rgba(33, 26, 18, .55) 60%, rgba(33, 26, 18, .25) 100%);
}

.ebh-delcta__content {
  position: relative;
  padding: 56px 60px;
  max-width: 620px;
}

.ebh-delcta__content .ebh-h2 {
  margin: 0 0 14px;
}

.ebh-delcta__text {
  font-family: var(--font-body), Inter, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ebh-creamtext);
  margin: 0 0 26px;
}

.ebh-delcta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 480px;
}

.ebh-delcta__input {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  font-family: var(--font-body), Inter, sans-serif;
  color: var(--ebh-ink);
  outline: none;
}

.ebh-delcta__submit {
  border-radius: 12px;
  padding: 16px 26px;
  font-size: 15px;
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
  .ebh-delcta__content {
    padding: 34px 26px;
  }
  .ebh-delcta__submit {
    width: 100%;
  }
}

/* ============================================================
   FOOTER — Holz BES (proto l.908-966)
   Fond sombre, 5 colonnes, barre basse + badges de paiement.
   ============================================================ */
.ebh-footer {
  background: var(--ebh-dark);
  color: #CDBFAA;
  padding: 64px 0 0;
}

/* Grille 5 colonnes */
.ebh-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

/* --- Colonne marque --- */
.ebh-footer__brand {
  max-width: 300px;
}
.ebh-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ebh-footer__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--ebh-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ebh-footer__logo-mark svg {
  width: 20px;
  height: 20px;
}
.ebh-footer__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.ebh-footer__logo-accent {
  color: var(--ebh-tan);
}
.ebh-footer__about {
  font-size: 14px;
  line-height: 1.65;
  color: #A99B85;
  margin: 0 0 18px;
}
.ebh-footer__social {
  display: flex;
  gap: 10px;
}
.ebh-footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CDBFAA;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease;
}
.ebh-footer__social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

/* --- Colonnes de liens --- */
.ebh-footer__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin: 0 0 16px;
}
.ebh-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ebh-footer__list li {
  margin: 0;
}
.ebh-footer__list a {
  color: #A99B85;
  font-size: 14px;
  text-decoration: none;
  transition: color .18s ease;
}
.ebh-footer__list a:hover {
  color: #fff;
}

/* --- Colonne contact --- */
.ebh-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 14px;
  color: #A99B85;
}
.ebh-footer__contact-row {
  display: flex;
  gap: 9px;
}
.ebh-footer__contact-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #A99B85;
  display: inline-flex;
}
.ebh-footer__contact-icon svg {
  width: 17px;
  height: 17px;
}
.ebh-footer__contact a {
  color: #A99B85;
  text-decoration: none;
  transition: color .18s ease;
}
.ebh-footer__contact a:hover {
  color: #fff;
}

/* --- Barre basse --- */
.ebh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0 30px;
}
.ebh-footer__copy {
  font-size: 13px;
  color: #897C68;
}
.ebh-footer__pay {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.ebh-footer__pay-label {
  font-size: 12px;
  color: #897C68;
  margin-right: 4px;
}
.ebh-footer__pay-badge {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #CDBFAA;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 7px;
}

/* ------- Tablette (768-1024) : 3 colonnes ------- */
@media (max-width: 1024px) {
  .ebh-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------- Mobile (<768) : 2 colonnes ------- */
@media (max-width: 767px) {
  .ebh-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .ebh-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
  .ebh-footer__bottom {
    justify-content: flex-start;
  }
}


/* ============================================================ */

/* === Pages internes — intégration fidèle du proto (ebh-) === */

/* ============================================================ */

/* ============================================================
   Boutique Holz BES — page archive produit (.ebh-shop*)
   Proto : eich-buch-holz.dc.html, lignes 284-337.
   Tokens & .ebh-pcard déjà définis dans styles.css.
   ============================================================ */

.ebh-shop {
	color: var(--ebh-ink);
}

/* ---- En-tête de page (bandeau crème) ---- */
.ebh-shop__head {
	background: var(--ebh-cream);
	border-bottom: 1px solid var(--ebh-line2);
	padding: clamp(24px, 4vw, 40px) 0;
}

.ebh-shop__crumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 13px;
	color: #9A8C74;
	margin-bottom: 16px;
}
.ebh-shop__crumb a {
	color: #9A8C74;
	text-decoration: none;
	transition: color .2s ease;
}
.ebh-shop__crumb a:hover {
	color: var(--ebh-brown);
}
.ebh-shop__crumb span[aria-hidden] {
	color: #C8BBA4;
}
.ebh-shop__crumb-current {
	color: var(--ebh-brown);
}

.ebh-shop__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(30px, 5vw, 44px);
	line-height: 1.1;
	letter-spacing: -.01em;
	margin: 0 0 12px;
	color: var(--ebh-ink);
}

.ebh-shop__lead {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ebh-text);
	margin: 0;
	max-width: 620px;
}

/* ---- Zone principale (grille) ---- */
.ebh-shop__main {
	background: #fff;
	padding: 32px 0 var(--ebh-secpad);
}

/* ---- Barre d'outils : compte à gauche, tri à droite ---- */
.ebh-shop__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 28px;
}
.ebh-shop__toolbar .woocommerce-notices-wrapper {
	flex: 1 1 100%;
}
.ebh-shop__toolbar .woocommerce-notices-wrapper:empty {
	display: none;
}

.ebh-shop__count {
	font-family: var(--font-body);
	font-size: 13.5px;
	color: var(--ebh-muted2);
	white-space: nowrap;
}

.ebh-shop__ordering {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 14px;
}
.ebh-shop__sort {
	background: var(--ebh-cream);
	border: 1px solid var(--ebh-chipline);
	border-radius: 11px;
	padding: 11px 40px 11px 16px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--ebh-ink);
	cursor: pointer;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237A7264' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.ebh-shop__sort:hover {
	border-color: var(--ebh-tan);
}
.ebh-shop__sort:focus-visible {
	border-color: var(--ebh-ember);
	box-shadow: 0 0 0 3px rgba(200, 137, 61, .15);
}

/* ---- Grille produits : 3 desktop ---- */
.ebh-shop__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ebh-shop__item {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}
.ebh-shop__item::before {
	display: none;
}
.ebh-shop__item .ebh-pcard {
	width: 100%;
}

/* ---- Aucun produit ---- */
.ebh-shop__main .woocommerce-info,
.ebh-shop__main .woocommerce-no-products-found {
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ebh-text);
	background: var(--ebh-cream);
	border: 1px solid var(--ebh-line);
	border-radius: 14px;
	padding: 20px 22px;
	margin: 0;
}

/* ---- Pagination WooCommerce ---- */
.ebh-shop__main .woocommerce-pagination {
	margin-top: 44px;
	text-align: center;
}
.ebh-shop__main .woocommerce-pagination ul {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}
.ebh-shop__main .woocommerce-pagination ul li {
	margin: 0;
	border: none;
}
.ebh-shop__main .woocommerce-pagination ul li .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--ebh-line);
	border-radius: 11px;
	background: #fff;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	color: var(--ebh-text);
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ebh-shop__main .woocommerce-pagination ul li a.page-numbers:hover {
	background: var(--ebh-chip);
	border-color: var(--ebh-tan);
	color: var(--ebh-brown);
}
.ebh-shop__main .woocommerce-pagination ul li .page-numbers.current {
	background: var(--ebh-brown);
	border-color: var(--ebh-brown);
	color: #fff;
}

/* ============================================================
   Responsive : tablette 768-1024 (2 col) · mobile <768 (1 col)
   ============================================================ */
@media (max-width: 1024px) {
	.ebh-shop__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.ebh-shop__head {
		padding: 32px 0;
	}
	.ebh-shop__lead {
		font-size: 16px;
	}
	.ebh-shop__toolbar {
		align-items: flex-start;
		gap: 12px;
	}
	.ebh-shop__ordering {
		width: 100%;
	}
	.ebh-shop__sort {
		flex: 1;
	}
	.ebh-shop__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* ============================================================
   FICHE PRODUIT (PDP) — Holz BES
   Classes ebh-pdp* — porté au pixel sur le design-comp (l.338-462).
   Hooks JS conservés (gallery__thumb, tab-button, tab-panel,
   buybox__buy/buybox__price) pour réutiliser assets/js/main.js.
   ============================================================ */

.ebh-pdp__section {
  background: #fff;
  padding: 64px 0 var(--ebh-secpad);
}

/* --- Fil d'Ariane --- */
.ebh-pdp__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #9A8C74;
  margin-bottom: 26px;
  font-family: var(--font-body);
}
.ebh-pdp__crumb a {
  color: #9A8C74;
  text-decoration: none;
  transition: color .2s ease;
}
.ebh-pdp__crumb a:hover { color: var(--ebh-brown); }
.ebh-pdp__crumb-current { color: var(--ebh-brown); }

/* --- Haut : galerie | infos --- */
.ebh-pdp__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* --- Galerie (sticky) --- */
.ebh-pdp__gallery {
  position: sticky;
  top: 94px;
}
.ebh-pdp__gallery-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #F3EEE6;
  border: 1px solid var(--ebh-line);
  aspect-ratio: 1;
}
.ebh-pdp__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.ebh-pdp__gallery-main .rings { z-index: 0; }
.ebh-pdp__gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: var(--ebh-forest);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .02em;
  padding: 7px 13px;
  border-radius: 999px;
}
.ebh-pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.ebh-pdp__thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--ebh-line);
  background: #F3EEE6;
  padding: 0;
  transition: border-color .2s ease;
}
.ebh-pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ebh-pdp__thumb:hover { border-color: var(--ebh-tan); }
.ebh-pdp__thumb.is-active { border-color: var(--ebh-brown); }

/* --- Colonne infos --- */
.ebh-pdp__info { width: 100%; }
.ebh-pdp__kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ebh-kicker);
  margin-bottom: 10px;
}
.ebh-pdp__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  color: var(--ebh-ink);
}
.ebh-pdp__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--ebh-text);
  font-weight: 500;
}
.ebh-pdp__rating .stars,
.ebh-pdp__rating .ebh-rating__star { color: var(--ebh-ember); }
.ebh-pdp__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ebh-text);
  margin: 0 0 22px;
}
.ebh-pdp__lead p { margin: 0 0 12px; }
.ebh-pdp__lead p:last-child { margin-bottom: 0; }

/* Chips d'aperçu */
.ebh-pdp__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.ebh-pdp__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ebh-chip);
  border: 1px solid var(--ebh-chipline);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13.5px;
  color: var(--ebh-text);
}
.ebh-pdp__chip svg { color: var(--ebh-forest); flex-shrink: 0; }

/* --- Buybox --- */
.ebh-pdp__buybox {
  background: var(--ebh-cream);
  border: 1px solid var(--ebh-line2);
  border-radius: 20px;
  padding: 24px;
}
.ebh-pdp__buybox-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.ebh-pdp__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--ebh-ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.ebh-pdp__price .buybox__price { color: inherit; }
.ebh-pdp__price del {
  font-size: 18px;
  font-weight: 500;
  color: var(--ebh-muted2);
  opacity: .7;
}
.ebh-pdp__price ins { text-decoration: none; }
.ebh-pdp__price-unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--ebh-muted2);
}
.ebh-pdp__tax {
  font-size: 12.5px;
  color: var(--ebh-muted2);
  margin-top: 6px;
}
.ebh-pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ebh-forest);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}
.ebh-pdp__stock svg { flex-shrink: 0; }
.ebh-pdp__stock--out { color: #B23A2E; }

/* Formulaire WooCommerce add-to-cart restylé */
.ebh-pdp__cart form.cart {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0;
}
.ebh-pdp__cart .quantity {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ebh-chipline);
  border-radius: 12px;
  overflow: hidden;
  height: 52px;
}
.ebh-pdp__cart .quantity .qty {
  width: 56px;
  height: 52px;
  border: none;
  background: none;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ebh-ink);
  -moz-appearance: textfield;
}
.ebh-pdp__cart .quantity .qty::-webkit-outer-spin-button,
.ebh-pdp__cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ebh-pdp__cart .single_add_to_cart_button,
.ebh-pdp__cart button.single_add_to_cart_button {
  flex: 1;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ebh-brown);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0 24px;
  height: 52px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s ease;
}
.ebh-pdp__cart .single_add_to_cart_button:hover {
  background: var(--ebh-brown-h);
}
.ebh-pdp__cart .single_add_to_cart_button.disabled,
.ebh-pdp__cart .single_add_to_cart_button:disabled {
  opacity: .55;
  cursor: not-allowed;
}
/* Variations (produit variable) */
.ebh-pdp__cart .variations {
  width: 100%;
  margin: 0 0 14px;
  border-collapse: collapse;
}
.ebh-pdp__cart .variations td,
.ebh-pdp__cart .variations th {
  padding: 6px 0;
  vertical-align: middle;
  text-align: left;
}
.ebh-pdp__cart .variations label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ebh-ink);
}
.ebh-pdp__cart .variations select {
  width: 100%;
  border: 1px solid var(--ebh-chipline);
  border-radius: 10px;
  padding: 11px 14px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ebh-text);
}
.ebh-pdp__cart .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.ebh-pdp__cart .reset_variations {
  font-size: 13px;
  color: var(--ebh-muted);
}
.ebh-pdp__cart .woocommerce-variation-price {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ebh-ink);
  margin-bottom: 6px;
}

/* --- Encarts confiance --- */
.ebh-pdp__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.ebh-pdp__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: 14px 8px;
}
.ebh-pdp__trust-item svg { color: var(--ebh-brown); }
.ebh-pdp__trust-item span {
  font-size: 12px;
  color: var(--ebh-muted);
  line-height: 1.4;
}

/* Certificats */
.ebh-pdp__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ebh-pdp__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ebh-chip);
  border: 1px solid var(--ebh-chipline);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  color: var(--ebh-text);
}
.ebh-pdp__pill svg { color: var(--ebh-forest); }

/* --- Onglets --- */
.ebh-pdp__tabs { margin-top: var(--ebh-secpad); }
.ebh-pdp__tabnav {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--ebh-chipline);
  flex-wrap: wrap;
}
.ebh-pdp__tabbtn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--ebh-muted);
  padding: 14px 6px;
  margin-right: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.ebh-pdp__tabbtn:hover { color: var(--ebh-brown); }
.ebh-pdp__tabbtn.is-active {
  color: var(--ebh-ink);
  border-bottom-color: var(--ebh-brown);
}
.ebh-pdp__tabpanel {
  display: none;
  padding: 30px 0;
  max-width: 820px;
}
.ebh-pdp__tabpanel.is-active { display: block; }
.ebh-pdp__reviews.is-active,
.ebh-pdp__tabpanel.ebh-pdp__reviews.is-active { max-width: 820px; }

.ebh-pdp__rte {
  font-size: 17px;
  line-height: 1.75;
  color: #4D463C;
}
.ebh-pdp__rte p { margin: 0 0 22px; }
.ebh-pdp__rte h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ebh-ink);
  margin: 22px 0 8px;
}

/* Grille de specs */
.ebh-pdp__specgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin-top: 22px;
}
.ebh-pdp__specrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #F0EAE0;
}
.ebh-pdp__speck {
  font-size: 14.5px;
  color: var(--ebh-muted2);
}
.ebh-pdp__specv {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ebh-ink);
  text-align: right;
}

/* Lieferung & Rückgabe */
.ebh-pdp__delivery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ebh-pdp__delivery-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ebh-pdp__delivery-item > svg {
  color: var(--ebh-brown);
  flex-shrink: 0;
  margin-top: 2px;
}
.ebh-pdp__delivery-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ebh-ink);
  margin-bottom: 4px;
}
.ebh-pdp__delivery-item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ebh-text);
  margin: 0;
}

/* --- Avis WooCommerce restylés « Verifizierter Kauf » --- */
.ebh-pdp__reviews .woocommerce-Reviews-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ebh-ink);
  margin: 0 0 22px;
}
.ebh-pdp__reviews .commentlist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ebh-pdp__reviews .commentlist li.comment,
.ebh-pdp__reviews .commentlist li.review {
  border: 1px solid var(--ebh-line2);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0;
}
.ebh-pdp__reviews .comment_container {
  display: block;
  position: relative;
}
.ebh-pdp__reviews .comment_container img.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  float: left;
  margin: 0 11px 0 0;
  border: none;
  background: var(--ebh-forest);
}
.ebh-pdp__reviews .comment-text { overflow: hidden; }
.ebh-pdp__reviews .meta {
  font-family: var(--font-body);
  margin: 0 0 8px;
}
.ebh-pdp__reviews .meta strong.woocommerce-review__author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ebh-ink);
}
.ebh-pdp__reviews .meta .woocommerce-review__dash,
.ebh-pdp__reviews .meta time.woocommerce-review__published-date {
  font-size: 12.5px;
  color: var(--ebh-muted2);
}
.ebh-pdp__reviews .meta .woocommerce-review__verified::before {
  content: "Verifizierter Kauf";
  display: block;
  font-size: 12.5px;
  color: var(--ebh-muted2);
}
.ebh-pdp__reviews .meta .woocommerce-review__verified { font-size: 0; }
.ebh-pdp__reviews .star-rating {
  color: var(--ebh-ember);
  font-size: 14px;
  margin: 4px 0 10px;
}
.ebh-pdp__reviews .description p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4D463C;
  margin: 0 0 10px;
}
.ebh-pdp__reviews .description p:last-child { margin-bottom: 0; }

/* Formulaire d'avis */
.ebh-pdp__reviews #review_form_wrapper {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ebh-line);
}
.ebh-pdp__reviews #reply-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ebh-ink);
}
.ebh-pdp__reviews .comment-form-rating label,
.ebh-pdp__reviews .comment-form label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ebh-ink);
  display: block;
  margin-bottom: 6px;
}
.ebh-pdp__reviews .comment-form textarea,
.ebh-pdp__reviews .comment-form input[type="text"],
.ebh-pdp__reviews .comment-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--ebh-chipline);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ebh-text);
  margin-bottom: 14px;
}
.ebh-pdp__reviews .comment-form .submit,
.ebh-pdp__reviews .form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ebh-brown);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s ease;
}
.ebh-pdp__reviews .form-submit input[type="submit"]:hover {
  background: var(--ebh-brown-h);
}

/* --- Produits liés --- */
.ebh-pdp__related { margin-top: 24px; }
.ebh-pdp__related .ebh-h2 { margin: 0 0 26px; }
.ebh-pdp__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Tablette 768–1024 */
@media (max-width: 1024px) {
  .ebh-pdp__top { gap: 40px; }
  .ebh-pdp__title { font-size: 32px; }
  .ebh-pdp__price { font-size: 30px; }
  .ebh-pdp__related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile < 768 */
@media (max-width: 767px) {
  .ebh-pdp__section { padding: 40px 0 var(--ebh-secpad); }
  .ebh-pdp__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ebh-pdp__gallery {
    position: static;
    top: auto;
  }
  .ebh-pdp__title { font-size: 27px; }
  .ebh-pdp__lead { font-size: 16px; }
  .ebh-pdp__buybox { padding: 20px; }
  .ebh-pdp__buybox-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ebh-pdp__price { font-size: 28px; }
  .ebh-pdp__cart form.cart,
  .ebh-pdp__cart .woocommerce-variation-add-to-cart { flex-wrap: wrap; }
  .ebh-pdp__cart .single_add_to_cart_button { min-width: 160px; }
  .ebh-pdp__specgrid { grid-template-columns: 1fr; }
  .ebh-pdp__related-grid { grid-template-columns: 1fr; }
  .ebh-pdp__tabbtn { margin-right: 10px; font-size: 14.5px; }
}

/* Petits mobiles : 2 cartes liées */
@media (min-width: 480px) and (max-width: 767px) {
  .ebh-pdp__related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PANIER — Holz BES (proto lignes 463-524)
   Classes ebh-cart* — n'utilise QUE les tokens existants.
   ============================================================ */

/* Fil d'Ariane */
.ebh-cart-crumbs{
  display:flex;align-items:center;gap:8px;
  font-family:var(--font-body);font-size:13px;color:var(--ebh-kicker);
  margin-bottom:16px;
}
.ebh-cart-crumbs a{
  color:var(--ebh-kicker);text-decoration:none;transition:color .18s ease;
}
.ebh-cart-crumbs a:hover{color:var(--ebh-brown);}
.ebh-cart-crumbs__cur{color:var(--ebh-brown);}

/* Titre */
.ebh-cart-title{
  font-family:var(--font-display);font-weight:700;
  font-size:clamp(28px,4vw,38px);line-height:1.1;
  margin:0 0 30px;color:var(--ebh-ink);
}

/* Grille 2 colonnes : articles (1.7) + récap (1) */
.ebh-cart-grid{
  display:flex;align-items:flex-start;gap:30px;
}
.ebh-cart-items{flex:1.7;width:100%;min-width:0;}

/* Liste des articles */
.ebh-cart-lines{display:flex;flex-direction:column;gap:14px;}

.ebh-cart-line{
  display:flex;gap:18px;align-items:center;
  background:#fff;border:1px solid var(--ebh-line);
  border-radius:18px;padding:16px;
}

/* Vignette */
.ebh-cart-line__thumb{
  width:96px;height:96px;border-radius:13px;overflow:hidden;
  flex-shrink:0;background:#F3EEE6;
}
.ebh-cart-line__thumb a,
.ebh-cart-line__thumb img{
  display:block;width:100%;height:100%;object-fit:cover;
}

/* Bloc nom / catégorie / prix unitaire */
.ebh-cart-line__info{flex:1;min-width:0;}
.ebh-cart-line__cat{
  font-family:var(--font-body);font-size:11px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--ebh-kicker);margin-bottom:3px;
}
.ebh-cart-line__name{
  font-family:var(--font-display);font-weight:600;font-size:16px;
  color:var(--ebh-ink);margin:0 0 3px;line-height:1.25;
}
.ebh-cart-line__name a{color:inherit;text-decoration:none;}
.ebh-cart-line__name a:hover{color:var(--ebh-brown);}
.ebh-cart-line__price{
  font-family:var(--font-body);font-size:13px;color:var(--ebh-muted2);
}
.ebh-cart-line__price .amount{font-weight:500;color:var(--ebh-muted2);}

/* Sélecteur quantité — input natif WooCommerce stylé en pilule */
.ebh-cart-line__qty{flex-shrink:0;}
.ebh-cart-line__qty .quantity{
  display:inline-flex;align-items:center;margin:0;
  background:var(--ebh-cream);border:1px solid var(--ebh-chipline);
  border-radius:11px;overflow:hidden;
}
.ebh-cart-line__qty input.qty{
  width:64px;height:44px;border:none;background:transparent;
  text-align:center;font-family:var(--font-display);
  font-weight:600;font-size:15px;color:var(--ebh-ink);
  -moz-appearance:textfield;outline:none;
}
.ebh-cart-line__qty input.qty:focus{
  box-shadow:inset 0 0 0 2px var(--ebh-tan);border-radius:11px;
}
.ebh-cart-line__qty input.qty::-webkit-outer-spin-button,
.ebh-cart-line__qty input.qty::-webkit-inner-spin-button{
  opacity:1;height:44px;
}
.ebh-cart-line__qty .quantity .screen-reader-text{
  position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);
}

/* Sous-total ligne */
.ebh-cart-line__subtotal{
  font-family:var(--font-display);font-weight:700;font-size:17px;
  color:var(--ebh-ink);min-width:92px;text-align:right;flex-shrink:0;
}
.ebh-cart-line__subtotal .amount{color:var(--ebh-ink);}

/* Bouton supprimer */
.ebh-cart-line__remove{flex-shrink:0;}
.ebh-cart-line__remove-btn{
  width:40px;height:40px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  color:#B7AE9F;background:none;text-decoration:none;
  transition:color .18s ease,background .18s ease;
}
.ebh-cart-line__remove-btn:hover{color:#B5462C;background:#FBF0EC;}
.ebh-cart-line__remove-btn svg{display:block;}

/* Barre d'actions (maj panier + retour boutique) */
.ebh-cart-actions{
  display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin-top:4px;
}
.ebh-cart-keepshopping{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-body);font-size:14px;font-weight:500;
  color:var(--ebh-brown);text-decoration:none;transition:opacity .18s ease;
}
.ebh-cart-keepshopping:hover{opacity:.72;}
.ebh-cart-keepshopping svg{display:block;}
.ebh-cart-update{
  margin-left:auto;
  background:var(--ebh-chip);color:var(--ebh-forest);
  border:1px solid var(--ebh-chipline);border-radius:11px;
  padding:12px 20px;font-family:var(--font-display);
  font-weight:600;font-size:14px;cursor:pointer;
  transition:background .18s ease;
}
.ebh-cart-update:hover{background:var(--ebh-chip-h);}

/* ============================================================
   Encart « Zusammenfassung » sticky
   ============================================================ */
.ebh-cart-summary{
  flex:1;width:100%;min-width:0;
  background:var(--ebh-cream);border:1px solid var(--ebh-line2);
  border-radius:20px;padding:26px;
  position:sticky;top:94px;
}
.ebh-cart-summary__h{
  font-family:var(--font-display);font-weight:700;font-size:19px;
  margin:0 0 20px;color:var(--ebh-ink);
}

/* Lignes de totaux (rendues par cart-totals.php) */
.ebh-cart-totals{margin:0;}
.ebh-cart-totals__rows{display:flex;flex-direction:column;}
.ebh-cart-totrow{
  display:flex;justify-content:space-between;align-items:baseline;gap:14px;
  font-family:var(--font-body);font-size:15px;color:var(--ebh-text);
  margin-bottom:12px;
}
.ebh-cart-totrow__label{color:var(--ebh-text);}
.ebh-cart-totrow__val{font-weight:500;color:var(--ebh-ink);text-align:right;}
.ebh-cart-totrow__val .amount{font-weight:500;}
.ebh-cart-totrow--discount{color:var(--ebh-forest);}
.ebh-cart-totrow--discount .ebh-cart-totrow__label,
.ebh-cart-totrow--discount .ebh-cart-totrow__val{color:var(--ebh-forest);font-weight:600;}
.ebh-cart-totrow--discount a{color:var(--ebh-forest);}
.ebh-cart-totrow--shipping-calc .ebh-cart-totrow__val{font-weight:400;}
.ebh-cart-totrow small{display:block;font-size:12px;color:var(--ebh-muted);font-weight:400;}

/* Total — séparateur + gros chiffre */
.ebh-cart-totrow--total{
  padding-top:16px;border-top:1px solid #E4DCCD;margin-bottom:0;margin-top:4px;
}
.ebh-cart-totrow--total .ebh-cart-totrow__label{
  font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--ebh-ink);
}
.ebh-cart-totrow--total .ebh-cart-totrow__val{
  font-family:var(--font-display);font-weight:800;font-size:26px;color:var(--ebh-ink);
}
.ebh-cart-totrow--total .ebh-cart-totrow__val .amount{font-weight:800;}

/* Liste de méthodes de livraison (rendue par wc_cart_totals_shipping_html) */
.ebh-cart-totals .woocommerce-shipping-totals.shipping{
  display:flex;justify-content:space-between;gap:14px;
  font-size:15px;color:var(--ebh-text);margin-bottom:12px;
}
.ebh-cart-totals .woocommerce-shipping-totals.shipping th{
  font-weight:400;text-align:left;color:var(--ebh-text);
}
.ebh-cart-totals .woocommerce-shipping-totals.shipping td{text-align:right;}
.ebh-cart-totals .woocommerce-shipping-methods{list-style:none;margin:0;padding:0;}
.ebh-cart-totals .woocommerce-shipping-methods li{margin-bottom:5px;font-size:14px;}
.ebh-cart-totals .shipping-calculator-button{color:var(--ebh-brown);font-size:13px;}

/* Bandeau-info coupon (🎁 WILLKOMMEN10) */
.ebh-cart-promo-hint{
  display:flex;align-items:center;gap:9px;
  background:#FBF1E6;border:1px dashed #D8A35F;border-radius:11px;
  padding:10px 13px;margin:16px 0 10px;
}
.ebh-cart-promo-hint__gift{font-size:15px;line-height:1;}
.ebh-cart-promo-hint span:last-child{
  font-family:var(--font-body);font-size:12.5px;color:#8A6A3A;line-height:1.35;
}
.ebh-cart-promo-hint strong{color:var(--ebh-brown);font-weight:700;}

/* Champ coupon + bouton Einlösen */
.ebh-cart-coupon{display:flex;gap:8px;margin-bottom:18px;}
.ebh-cart-coupon__input{
  flex:1;min-width:0;background:#fff;border:1px solid var(--ebh-chipline);
  border-radius:11px;padding:12px 14px;font-size:14px;
  font-family:var(--font-body);color:var(--ebh-ink);outline:none;
}
.ebh-cart-coupon__input:focus{box-shadow:0 0 0 2px var(--ebh-tan);}
.ebh-cart-coupon__input::placeholder{color:var(--ebh-muted2);}
.ebh-cart-coupon__btn{
  background:var(--ebh-ember);color:#fff;border:none;border-radius:11px;
  padding:0 18px;font-family:var(--font-display);font-weight:600;font-size:14px;
  cursor:pointer;transition:background .18s ease;white-space:nowrap;
}
.ebh-cart-coupon__btn:hover{background:var(--ebh-ember-h);}

/* CTA Zur Kasse + lien Weiter einkaufen */
.ebh-cart-summary__cta{margin-top:2px;}
.ebh-cart-checkout{
  width:100%;display:inline-flex;align-items:center;justify-content:center;gap:9px;
  background:var(--ebh-brown);color:#fff;border:none;border-radius:12px;
  padding:16px;font-family:var(--font-display);font-weight:600;font-size:16px;
  cursor:pointer;text-decoration:none;transition:background .2s ease;
  box-sizing:border-box;
}
.ebh-cart-checkout:hover{background:var(--ebh-brown-h);color:#fff;}
.ebh-cart-checkout svg{display:block;}
.ebh-cart-continue{
  display:block;width:100%;text-align:center;
  background:none;border:none;color:var(--ebh-brown);
  font-family:var(--font-body);font-size:14px;font-weight:500;
  cursor:pointer;padding:14px 0 0;text-decoration:none;
}
.ebh-cart-continue:hover{opacity:.72;}

/* ============================================================
   Panier vide
   ============================================================ */
.ebh-cart-empty{
  text-align:center;padding:60px 20px;
  background:var(--ebh-cream);border:1px solid var(--ebh-line2);border-radius:22px;
}
.ebh-cart-empty__icon{
  width:74px;height:74px;border-radius:20px;
  background:#fff;border:1px solid var(--ebh-chipline);
  display:inline-flex;align-items:center;justify-content:center;
  color:#B09A72;margin-bottom:20px;
}
.ebh-cart-empty__title{
  font-family:var(--font-display);font-weight:700;font-size:24px;
  margin:0 0 10px;color:var(--ebh-ink);
}
.ebh-cart-empty__lead{
  font-family:var(--font-body);font-size:16px;color:var(--ebh-muted);margin:0 0 26px;
}
.ebh-cart-empty .cart-empty,
.ebh-cart-empty .woocommerce-info{
  display:none; /* message WC par défaut masqué — proto fournit son propre texte */
}
.ebh-cart-empty__btn{
  display:inline-flex;align-items:center;gap:9px;
  background:var(--ebh-brown);color:#fff;border:none;border-radius:12px;
  padding:15px 26px;font-family:var(--font-display);font-weight:600;font-size:15px;
  cursor:pointer;text-decoration:none;transition:background .2s ease;
}
.ebh-cart-empty__btn:hover{background:var(--ebh-brown-h);color:#fff;}
.ebh-cart-empty__btn svg{display:block;}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablette : récap passe sous la liste, non sticky */
@media (max-width:1024px){
  .ebh-cart-grid{flex-direction:column;}
  .ebh-cart-items,
  .ebh-cart-summary{flex:1 1 auto;width:100%;}
  .ebh-cart-summary{position:static;top:auto;}
}

/* Mobile : carte article repliée en grille */
@media (max-width:768px){
  .ebh-cart-title{margin-bottom:22px;}
  .ebh-cart-line{
    flex-wrap:wrap;gap:14px;padding:14px;
  }
  .ebh-cart-line__thumb{width:80px;height:80px;}
  .ebh-cart-line__info{flex:1 1 auto;min-width:0;}
  .ebh-cart-line__remove{order:1;}
  .ebh-cart-line__qty{order:2;}
  .ebh-cart-line__subtotal{
    order:3;margin-left:auto;min-width:0;text-align:right;
  }
  .ebh-cart-actions{gap:12px;}
  .ebh-cart-keepshopping{order:2;}
  .ebh-cart-update{order:1;margin-left:0;width:100%;text-align:center;}
  .ebh-cart-summary{padding:22px;border-radius:18px;}
  .ebh-cart-empty{padding:48px 18px;border-radius:18px;}
}

@media (max-width:480px){
  .ebh-cart-line__subtotal{font-size:16px;}
  .ebh-cart-coupon{flex-wrap:wrap;}
  .ebh-cart-coupon__btn{width:100%;padding:12px 18px;}
}

/* ============================================================
   CHECKOUT (Kasse) — Holz BES
   Proto : eich-buch-holz.dc.html lignes 525-635.
   Cible le markup généré par WooCommerce (billing/shipping/
   order-review/payment) à l'intérieur des wrappers .ebh-checkout*.
   ============================================================ */

.ebh-checkout{
  max-width:1080px;
  margin:0 auto;
}

.ebh-checkout__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(28px,4vw,40px);
  line-height:1.1;
  letter-spacing:-.01em;
  margin:0 0 28px;
  color:var(--ebh-ink);
}

/* ----- Layout 2 colonnes : formulaire + encart sticky ----- */
.ebh-checkout__grid{
  display:flex;
  align-items:flex-start;
  gap:30px;
}
.ebh-checkout__main{
  flex:1.6;
  min-width:0;
  width:100%;
}
.ebh-checkout__aside{
  flex:1;
  min-width:0;
  width:100%;
}

/* ----- Colonnes facturation / livraison ----- */
.ebh-checkout__details{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.ebh-checkout .col-1,
.ebh-checkout .col-2{
  width:100% !important;
  max-width:100% !important;
  float:none !important;
  margin:0;
  box-sizing:border-box;
}
/* Champs nom/prénom côte à côte dans la carte pleine largeur */
.ebh-checkout .form-row-first,
.ebh-checkout .form-row-last{
  display:inline-block;
  width:calc(50% - 6px);
  vertical-align:top;
}
.ebh-checkout .form-row-first{ margin-right:9px; }

/* ----- Carte (Lieferadresse / Rechnungsadresse / Versand) ----- */
.ebh-checkout__card{
  background:var(--ebh-cream);
  border:1px solid var(--ebh-line2);
  border-radius:20px;
  padding:28px;
}
/* Si la colonne livraison est vide (livraison désactivée), on la masque
   pour que la facturation occupe toute la largeur. */
.ebh-checkout__card--shipping:empty{
  display:none;
}

/* Titres de section internes WooCommerce (Rechnungsdetails / Lieferung …) */
.ebh-checkout__card h3,
.ebh-checkout__card > h3,
.ebh-checkout__card .woocommerce-billing-fields > h3,
.ebh-checkout__card .woocommerce-shipping-fields h3,
.ebh-checkout__card .woocommerce-additional-fields > h3{
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  line-height:1.2;
  margin:0 0 20px;
  color:var(--ebh-ink);
}

/* Champs ----- */
.ebh-checkout .form-row{
  display:block;
  margin:0 0 16px;
  padding:0;
}
.ebh-checkout .form-row label{
  display:block;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:500;
  color:var(--ebh-muted);
  margin-bottom:7px;
}
.ebh-checkout .form-row label .required,
.ebh-checkout .form-row label .optional{
  color:var(--ebh-ember);
  border:0;
  text-decoration:none;
}
.ebh-checkout .form-row .input-text,
.ebh-checkout .form-row input[type="text"],
.ebh-checkout .form-row input[type="email"],
.ebh-checkout .form-row input[type="tel"],
.ebh-checkout .form-row input[type="password"],
.ebh-checkout .form-row input[type="number"],
.ebh-checkout .form-row textarea,
.ebh-checkout .form-row select,
.ebh-checkout .select2-container .select2-selection--single,
.ebh-checkout .select2-container--default .select2-selection--single{
  width:100%;
  box-sizing:border-box;
  background:#fff;
  border:1px solid var(--ebh-chipline);
  border-radius:11px;
  padding:13px 14px;
  font-family:var(--font-body);
  font-size:15px;
  color:var(--ebh-ink);
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease;
  line-height:1.3;
}
.ebh-checkout .form-row textarea{
  min-height:110px;
  resize:vertical;
}
.ebh-checkout .form-row .input-text:focus,
.ebh-checkout .form-row input:focus,
.ebh-checkout .form-row textarea:focus,
.ebh-checkout .form-row select:focus{
  border-color:var(--ebh-brown);
  box-shadow:0 0 0 3px rgba(107,66,38,.10);
}
.ebh-checkout .form-row .input-text::placeholder,
.ebh-checkout .form-row textarea::placeholder{
  color:var(--ebh-muted2);
}

/* Select2 (pays / état) — alignement sur les inputs */
.ebh-checkout .select2-container--default .select2-selection--single{
  height:auto;
  display:flex;
  align-items:center;
}
.ebh-checkout .select2-container--default .select2-selection--single
  .select2-selection__rendered{
  padding:0;
  line-height:1.3;
  color:var(--ebh-ink);
}
.ebh-checkout .select2-container--default .select2-selection--single
  .select2-selection__arrow{
  top:50%;
  transform:translateY(-50%);
  right:10px;
}

/* Champs pleine largeur (adresse, notes, email…) */
.ebh-checkout .form-row-wide,
.ebh-checkout #order_comments_field,
.ebh-checkout .notes{
  grid-column:1 / -1;
}

/* Case « Rechnungsadresse identisch » / créer un compte */
.ebh-checkout .woocommerce-form__label-for-checkbox,
.ebh-checkout #ship-to-different-address label{
  display:flex;
  align-items:center;
  gap:11px;
  margin:20px 0 0;
  font-family:var(--font-body);
  font-size:14.5px;
  font-weight:500;
  color:#4D463C;
  cursor:pointer;
}
.ebh-checkout #ship-to-different-address{
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  color:var(--ebh-ink);
  margin:0 0 20px;
}
.ebh-checkout .woocommerce-form__input-checkbox,
.ebh-checkout #ship-to-different-address input[type="checkbox"]{
  width:20px;
  height:20px;
  accent-color:var(--ebh-brown);
  border-radius:6px;
  flex-shrink:0;
  margin:0;
  cursor:pointer;
}

/* ----- Encart « Ihre Bestellung » (sticky, fond sombre) ----- */
.ebh-checkout__review{
  background:var(--ebh-dark);
  border-radius:20px;
  padding:26px;
  color:#CDBFAA;
  position:sticky;
  top:94px;
}
.ebh-checkout__review-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:18px;
  margin:0 0 18px;
  color:#fff;
}

/* Tableau de récap WooCommerce */
.ebh-checkout__review-body table.shop_table{
  width:100%;
  border:0;
  border-collapse:collapse;
  margin:0;
  background:transparent;
}
.ebh-checkout__review-body table.shop_table th,
.ebh-checkout__review-body table.shop_table td{
  border:0;
  padding:6px 0;
  font-family:var(--font-body);
  font-size:14.5px;
  color:#CDBFAA;
  vertical-align:top;
}
.ebh-checkout__review-body table.shop_table thead{
  display:none;
}

/* Lignes articles (cart-item) */
.ebh-checkout__review-body .cart_item td.product-name{
  font-family:var(--font-display);
  font-weight:600;
  font-size:14.5px;
  color:#fff;
  line-height:1.35;
}
.ebh-checkout__review-body .cart_item td.product-name
  .product-quantity{
  display:inline;
  font-family:var(--font-body);
  font-weight:400;
  font-size:13px;
  color:#A99B85;
}
.ebh-checkout__review-body .cart_item td.product-total{
  text-align:right;
  font-family:var(--font-display);
  font-weight:700;
  font-size:15px;
  color:#fff;
  white-space:nowrap;
}
.ebh-checkout__review-body .cart_item{
  border-bottom:1px solid rgba(255,255,255,.10);
}

/* Sous-total / livraison / réductions */
.ebh-checkout__review-body table.shop_table tfoot th,
.ebh-checkout__review-body .cart-subtotal th,
.ebh-checkout__review-body .woocommerce-shipping-totals th,
.ebh-checkout__review-body .cart-discount th{
  font-family:var(--font-body);
  font-weight:400;
  font-size:14.5px;
  color:#CDBFAA;
}
.ebh-checkout__review-body .cart-subtotal td,
.ebh-checkout__review-body .woocommerce-shipping-totals td,
.ebh-checkout__review-body .cart-discount td{
  text-align:right;
  color:#fff;
  font-size:14.5px;
}
.ebh-checkout__review-body .cart-discount td{
  color:#A9C28F;
}
.ebh-checkout__review-body tfoot tr:first-child th,
.ebh-checkout__review-body tfoot tr:first-child td{
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
}

/* Méthodes de livraison dans le récap */
.ebh-checkout__review-body #shipping_method,
.ebh-checkout__review-body ul#shipping_method{
  list-style:none;
  margin:6px 0 0;
  padding:0;
}
.ebh-checkout__review-body #shipping_method li{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 6px;
  color:#CDBFAA;
}
.ebh-checkout__review-body #shipping_method li input[type="radio"]{
  accent-color:var(--ebh-ember);
}
.ebh-checkout__review-body #shipping_method li label{
  color:#CDBFAA;
  font-size:14px;
}
.ebh-checkout__review-body .woocommerce-shipping-destination{
  font-size:12.5px;
  color:#A99B85;
}

/* Total */
.ebh-checkout__review-body tr.order-total th{
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
  color:#fff;
}
.ebh-checkout__review-body tr.order-total td,
.ebh-checkout__review-body tr.order-total td .amount,
.ebh-checkout__review-body tr.order-total td strong{
  text-align:right;
  font-family:var(--font-display);
  font-weight:800;
  font-size:24px;
  color:#fff;
}
.ebh-checkout__review-body tr.order-total small.includes_tax,
.ebh-checkout__review-body tr.order-total .tax_label{
  display:block;
  font-family:var(--font-body);
  font-weight:400;
  font-size:12px;
  color:#A99B85;
}

/* ----- Zahlungsart (paiement) ----- */
.ebh-checkout__review-body #payment{
  background:transparent;
  border-radius:0;
  margin-top:18px;
}
.ebh-checkout__review-body #payment ul.payment_methods{
  list-style:none;
  margin:0 0 6px;
  padding:18px 0 0;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.ebh-checkout__review-body #payment ul.payment_methods li{
  background:rgba(255,255,255,.04);
  border:1.5px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:14px 16px;
}
.ebh-checkout__review-body #payment ul.payment_methods li
  input[type="radio"]{
  accent-color:var(--ebh-ember);
  margin-right:8px;
}
.ebh-checkout__review-body #payment ul.payment_methods li label{
  display:inline;
  font-family:var(--font-display);
  font-weight:600;
  font-size:14.5px;
  color:#fff;
  cursor:pointer;
}
.ebh-checkout__review-body #payment ul.payment_methods li img{
  max-height:24px;
  margin-left:8px;
  vertical-align:middle;
}
.ebh-checkout__review-body #payment .payment_box{
  background:rgba(0,0,0,.20);
  border-radius:10px;
  margin:10px 0 0;
  padding:12px 14px;
  font-size:13px;
  color:#CDBFAA;
}
.ebh-checkout__review-body #payment .payment_box p{
  margin:0;
  font-size:13px;
  line-height:1.5;
}
.ebh-checkout__review-body #payment .payment_box::before{
  display:none;
}

/* CGV / mentions (Terms & conditions) */
.ebh-checkout__review-body .woocommerce-terms-and-conditions-wrapper{
  margin:16px 0 0;
  font-size:13.5px;
  line-height:1.5;
  color:#CDBFAA;
}
.ebh-checkout__review-body .woocommerce-form__label-for-checkbox{
  display:flex;
  align-items:flex-start;
  gap:11px;
  color:#CDBFAA;
}
.ebh-checkout__review-body .woocommerce-terms-and-conditions-wrapper a{
  color:var(--ebh-tan);
  text-decoration:underline;
}
.ebh-checkout__review-body
  .woocommerce-terms-and-conditions-checkbox-text .required{
  color:var(--ebh-ember);
}

/* Bouton « Kostenpflichtig bestellen » */
.ebh-checkout__review-body #place_order,
.ebh-checkout__review-body button.button.alt{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  background:var(--ebh-forest);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:16px;
  margin-top:18px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  transition:background .2s ease,transform .2s ease;
}
.ebh-checkout__review-body #place_order:hover,
.ebh-checkout__review-body button.button.alt:hover{
  background:#33502f;
  transform:translateY(-1px);
}

/* Mention SSL */
.ebh-checkout__ssl{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  font-family:var(--font-body);
  font-size:13px;
  color:#A99B85;
}
.ebh-checkout__ssl svg{
  width:16px;
  height:16px;
  flex-shrink:0;
}

/* Messages / erreurs WooCommerce dans le checkout */
.ebh-checkout .woocommerce-error,
.ebh-checkout .woocommerce-info,
.ebh-checkout .woocommerce-message,
.ebh-checkout .woocommerce-NoticeGroup{
  list-style:none;
  margin:0 0 22px;
  padding:14px 18px;
  border-radius:12px;
  background:var(--ebh-chip);
  border:1px solid var(--ebh-chipline);
  font-family:var(--font-body);
  font-size:14px;
  color:var(--ebh-text);
}
.ebh-checkout .woocommerce-error{
  background:#FBEDE9;
  border-color:#F0CFC6;
  color:#8A3B26;
}

/* ============================ Responsive ============================ */

/* Tablette : encart sous le formulaire (1 colonne globale),
   facturation/livraison restent côte à côte si possible. */
@media (max-width:1024px){
  .ebh-checkout__grid{
    flex-direction:column;
    gap:24px;
  }
  .ebh-checkout__main,
  .ebh-checkout__aside{
    flex:1 1 auto;
    width:100%;
  }
  .ebh-checkout__review{
    position:static;
    top:auto;
  }
}

/* Mobile : tout en 1 colonne. */
@media (max-width:767px){
  .ebh-checkout__details{
    grid-template-columns:1fr;
    gap:18px;
  }
  .ebh-checkout__card,
  .ebh-checkout__review{
    padding:22px;
    border-radius:18px;
  }
  .ebh-checkout .form-row{
    margin-bottom:14px;
  }
}

/* ===== Page Über uns (ebh-about*) — porté du design-comp l.654-711 ===== */

/* HERO */
.ebh-about__hero{position:relative;min-height:380px;display:flex;align-items:flex-end;overflow:hidden}
.ebh-about__hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ebh-about__hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(22,16,10,.82),rgba(22,16,10,.28))}
.ebh-about__hero-inner{position:relative;width:100%;padding-top:0;padding-bottom:52px}
.ebh-about__hero-kicker{font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:#E7D8BE;margin-bottom:14px}
.ebh-about__hero-title{font-family:var(--font-display);font-weight:700;font-size:56px;line-height:1.06;letter-spacing:-.02em;margin:0;color:#fff;max-width:760px}

/* INTRO */
.ebh-about__intro{background:#fff;padding:var(--ebh-secpad) 0}
.ebh-about__intro-inner{max-width:820px}
.ebh-about__lead{font-family:var(--font-display);font-weight:600;font-size:25px;line-height:1.45;color:var(--ebh-ink);margin:0 0 28px;letter-spacing:-.01em}
.ebh-about__p{font-size:17px;line-height:1.75;color:var(--ebh-text);margin:0 0 20px}
.ebh-about__p:last-child{margin-bottom:0}

/* STATS */
.ebh-about__stats{background:var(--ebh-dark);padding:72px 0}
.ebh-about__stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.ebh-about__stat{text-align:center}
.ebh-about__stat-value{font-family:var(--font-display);font-weight:800;font-size:46px;color:var(--ebh-tan);line-height:1}
.ebh-about__stat-label{font-size:14.5px;color:#A99B85;margin-top:8px}

/* MAIN (Nachhaltigkeit + Werte) */
.ebh-about__main{background:#fff;padding:var(--ebh-secpad) 0}

/* Split média/texte */
.ebh-about__split{display:flex;flex-direction:row;gap:56px;align-items:center;margin-bottom:var(--ebh-secpad)}
.ebh-about__split-media{flex:1}
.ebh-about__split-img{display:block;width:100%;border-radius:22px;object-fit:cover}
.ebh-about__split-body{flex:1}
.ebh-about__split-body .ebh-h2{margin:0 0 18px;font-size:32px;line-height:1.14}
.ebh-about__split-text{font-size:17px;line-height:1.7;color:var(--ebh-text);margin:0 0 20px}
.ebh-about__points{display:flex;flex-direction:column;gap:14px}
.ebh-about__point{display:flex;gap:12px;align-items:flex-start}
.ebh-about__point-icon{flex-shrink:0;margin-top:2px;color:var(--ebh-forest);display:inline-flex}
.ebh-about__point-text{font-size:15.5px;color:#4D463C;line-height:1.5}

/* Werte head */
.ebh-about__values-head{text-align:center;max-width:560px;margin:0 auto 40px}
.ebh-about__values-head .ebh-kicker{margin-bottom:12px}
.ebh-about__values-head .ebh-h2{font-size:32px}

/* Werte cards */
.ebh-about__values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.ebh-about__value{background:var(--ebh-cream);border:1px solid var(--ebh-line2);border-radius:20px;padding:30px}
.ebh-about__value-icon{width:52px;height:52px;border-radius:14px;background:#fff;border:1px solid var(--ebh-chipline);display:flex;align-items:center;justify-content:center;color:var(--ebh-forest);margin-bottom:18px}
.ebh-about__value-title{font-family:var(--font-display);font-weight:600;font-size:18px;margin:0 0 9px;color:var(--ebh-ink)}
.ebh-about__value-text{font-size:14.5px;line-height:1.65;color:var(--ebh-muted);margin:0}

/* ===== Responsive ===== */
@media (max-width:1024px){
  .ebh-about__hero-title{font-size:46px}
  .ebh-about__stats-grid{grid-template-columns:repeat(2,1fr);gap:32px}
  .ebh-about__split{gap:40px}
  .ebh-about__split-body .ebh-h2,.ebh-about__values-head .ebh-h2{font-size:28px}
}
@media (max-width:767px){
  .ebh-about__hero{min-height:320px}
  .ebh-about__hero-inner{padding-bottom:40px}
  .ebh-about__hero-title{font-size:34px}
  .ebh-about__lead{font-size:21px}
  .ebh-about__stats{padding:56px 0}
  .ebh-about__stats-grid{grid-template-columns:1fr;gap:28px}
  .ebh-about__stat-value{font-size:40px}
  .ebh-about__split{flex-direction:column;gap:28px;align-items:stretch}
  .ebh-about__split-body .ebh-h2,.ebh-about__values-head .ebh-h2{font-size:25px}
  .ebh-about__values-grid{grid-template-columns:1fr;gap:18px}
}

/* ===== PAGE LIEFERUNG (ebh-liefer*) ===== */

/* Page head band */
.ebh-liefer-head{
  background:var(--ebh-cream);
  border-bottom:1px solid var(--ebh-line2);
  padding:clamp(40px,5vw,64px) 0;
}
.ebh-liefer-crumb{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:#9A8C74;margin-bottom:16px;
}
.ebh-liefer-crumb a{
  background:none;border:none;color:#9A8C74;cursor:pointer;
  padding:0;font-size:13px;text-decoration:none;transition:color .18s ease;
}
.ebh-liefer-crumb a:hover{color:var(--ebh-brown);}
.ebh-liefer-crumb__cur{color:var(--ebh-brown);}
.ebh-liefer-title{
  font-family:var(--font-display);font-weight:700;
  font-size:clamp(30px,4vw,40px);line-height:1.1;
  margin:0 0 12px;color:var(--ebh-ink);
}
.ebh-liefer-lead{
  font-size:17px;line-height:1.6;color:var(--ebh-text);
  margin:0;max-width:640px;
}

/* Body */
.ebh-liefer-body{
  background:#fff;
  padding:var(--ebh-secpad,clamp(56px,7vw,90px)) 0;
}

/* Zones grid */
.ebh-liefer-zones{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:22px;margin-bottom:clamp(36px,4vw,48px);
}
.ebh-liefer-zone{
  border:1px solid var(--ebh-line);
  border-radius:20px;padding:30px;background:#fff;
  transition:transform .25s cubic-bezier(.32,.72,0,1),box-shadow .25s cubic-bezier(.32,.72,0,1);
}
.ebh-liefer-zone:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(43,43,43,.08);
}
.ebh-liefer-zone__head{
  display:flex;align-items:center;gap:12px;margin-bottom:16px;
}
.ebh-liefer-zone__icon{
  width:46px;height:46px;border-radius:13px;
  background:var(--ebh-chip);
  display:flex;align-items:center;justify-content:center;
  color:var(--ebh-brown);flex-shrink:0;
}
.ebh-liefer-zone__icon svg{width:22px;height:22px;}
.ebh-liefer-zone__name{
  font-family:var(--font-display);font-weight:700;
  font-size:18px;color:var(--ebh-ink);line-height:1.2;
}
.ebh-liefer-zone__body{
  font-size:14.5px;color:var(--ebh-muted);line-height:1.7;
}
.ebh-liefer-zone__body strong{color:var(--ebh-ink);}

/* Free shipping banner */
.ebh-liefer-free{
  background:#EDF3EB;border:1px solid #CFE0C9;border-radius:20px;
  padding:30px;display:flex;flex-direction:row;gap:24px;
  align-items:center;margin-bottom:clamp(40px,5vw,56px);
}
.ebh-liefer-free__icon{
  width:60px;height:60px;border-radius:16px;background:#fff;
  display:flex;align-items:center;justify-content:center;
  color:var(--ebh-forest);flex-shrink:0;
}
.ebh-liefer-free__icon svg{width:28px;height:28px;}
.ebh-liefer-free__text{flex:1;}
.ebh-liefer-free__title{
  font-family:var(--font-display);font-weight:700;
  font-size:19px;color:#2B4A2B;margin-bottom:6px;
}
.ebh-liefer-free__text p{
  font-size:15.5px;line-height:1.6;color:var(--ebh-forest);margin:0;
}

/* FAQ accordion */
.ebh-liefer-faqtitle{
  font-family:var(--font-display);font-weight:700;
  font-size:clamp(24px,3vw,32px);line-height:1.15;
  margin:0 0 26px;color:var(--ebh-ink);
}
.ebh-liefer-faq{
  display:flex;flex-direction:column;gap:14px;max-width:880px;
}
.ebh-liefer-acc{
  border:1px solid var(--ebh-line);border-radius:16px;
  padding:22px 24px;background:#fff;
}
.ebh-liefer-acc__q{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  font-family:var(--font-display);font-weight:600;font-size:16px;
  color:var(--ebh-ink);cursor:pointer;list-style:none;
}
.ebh-liefer-acc__q::-webkit-details-marker{display:none;}
.ebh-liefer-acc__sign{
  flex-shrink:0;display:flex;align-items:center;justify-content:center;
  color:var(--ebh-ember);transition:transform .25s cubic-bezier(.32,.72,0,1);
}
.ebh-liefer-acc__sign svg{width:18px;height:18px;}
.ebh-liefer-acc[open] .ebh-liefer-acc__sign{transform:rotate(45deg);}
.ebh-liefer-acc__a{
  font-size:15px;line-height:1.65;color:var(--ebh-text);
  margin:8px 0 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){
  .ebh-liefer-zones{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:768px){
  .ebh-liefer-zones{grid-template-columns:1fr;}
  .ebh-liefer-free{flex-direction:column;align-items:flex-start;}
  .ebh-liefer-title{font-size:30px;}
}

/* ============================================================
   RATGEBER (blog) — archive.php / single.php / page.php
   Préfixe .ebh-blog* — fidèle au proto lignes 744-770
   ============================================================ */

/* --- En-tête de page (liste + article) --- */
.ebh-blog-head{
  background:var(--ebh-cream);
  border-bottom:1px solid var(--ebh-line2);
  padding:64px 0;
}
.ebh-blog-crumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--ebh-kicker);
  margin-bottom:16px;
}
.ebh-blog-crumb a{
  color:var(--ebh-kicker);
  text-decoration:none;
  transition:color .2s ease;
}
.ebh-blog-crumb a:hover{ color:var(--ebh-brown); }
.ebh-blog-crumb__cur{ color:var(--ebh-brown); }

.ebh-blog-head__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:44px;
  line-height:1.12;
  letter-spacing:-.01em;
  margin:0 0 12px;
  color:var(--ebh-ink);
}
.ebh-blog-head__lead{
  font-size:17px;
  line-height:1.6;
  color:var(--ebh-text);
  margin:0;
  max-width:640px;
}

/* --- Liste des articles --- */
.ebh-blog-list{
  background:#fff;
  padding:var(--ebh-secpad) 0;
}
.ebh-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.ebh-blog-card{
  background:#fff;
  border:1px solid var(--ebh-line);
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .25s cubic-bezier(.32,.72,0,1), box-shadow .25s cubic-bezier(.32,.72,0,1);
  box-shadow:0 4px 16px rgba(43,43,43,.04);
}
.ebh-blog-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 38px rgba(43,43,43,.1);
}
.ebh-blog-card__media{
  display:block;
  aspect-ratio:1.5;
  overflow:hidden;
  background:#F3EEE6;
}
.ebh-blog-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.ebh-blog-card:hover .ebh-blog-card__media img{ transform:scale(1.05); }

.ebh-blog-card__body{
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  gap:11px;
  flex:1;
}
.ebh-blog-card__meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
  color:var(--ebh-muted2);
}
.ebh-blog-card__cat{
  background:var(--ebh-chip);
  color:var(--ebh-brown);
  font-weight:600;
  padding:4px 10px;
  border-radius:999px;
  letter-spacing:.04em;
}
.ebh-blog-card__read{ white-space:nowrap; }

.ebh-blog-card__title{
  font-family:var(--font-display);
  font-weight:600;
  font-size:18.5px;
  line-height:1.3;
  margin:0;
  color:var(--ebh-ink);
}
.ebh-blog-card__title a{
  color:inherit;
  text-decoration:none;
  transition:color .2s ease;
}
.ebh-blog-card__title a:hover{ color:var(--ebh-brown); }

.ebh-blog-card__excerpt{
  font-size:14.5px;
  line-height:1.6;
  color:var(--ebh-muted);
  margin:0;
  flex:1;
}
.ebh-blog-card__more{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:14px;
  color:var(--ebh-brown);
  text-decoration:none;
  margin-top:4px;
}
.ebh-blog-card__more svg{ transition:transform .2s ease; }
.ebh-blog-card__more:hover svg{ transform:translateX(3px); }

.ebh-blog-empty{
  font-size:16px;
  color:var(--ebh-muted);
  margin:0;
}

/* --- Pagination --- */
.ebh-blog-pagination{ margin-top:48px; }
.ebh-blog-pagination .nav-links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.ebh-blog-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 14px;
  border:1px solid var(--ebh-line);
  border-radius:10px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:14px;
  color:var(--ebh-text);
  text-decoration:none;
  background:#fff;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.ebh-blog-pagination a.page-numbers:hover{
  background:var(--ebh-chip);
  border-color:var(--ebh-chipline);
  color:var(--ebh-brown);
}
.ebh-blog-pagination .page-numbers.current{
  background:var(--ebh-brown);
  border-color:var(--ebh-brown);
  color:#fff;
}
.ebh-blog-pagination .page-numbers.dots{
  border-color:transparent;
  background:transparent;
}

/* --- Article (single) --- */
.ebh-blog--single .ebh-blog-head .ebh-article,
.ebh-blog--single .ebh-blog-head{ }
.ebh-article{ max-width:760px; }

.ebh-blog-article__cat{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ebh-ember);
  margin-bottom:10px;
}
.ebh-blog-article__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:44px;
  line-height:1.14;
  letter-spacing:-.01em;
  margin:0 0 14px;
  color:var(--ebh-ink);
}
.ebh-blog-article__meta{
  font-size:15px;
  color:var(--ebh-muted);
  margin:0;
}
.ebh-blog-article__dot{ margin:0 6px; }

.ebh-blog-body{
  background:#fff;
  padding:48px 0 var(--ebh-secpad);
}
.ebh-blog-article__media{
  max-width:900px;
  margin:0 auto 40px;
}
.ebh-blog-article__media img{
  width:100%;
  height:auto;
  border-radius:var(--radius);
  display:block;
}

.ebh-blog-article__content{
  max-width:720px;
  margin:0 auto;
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.75;
  color:var(--ebh-text);
}
.ebh-blog-article__content > *:first-child{ margin-top:0; }
.ebh-blog-article__content p{ margin:0 0 22px; }
.ebh-blog-article__content h2{
  font-family:var(--font-display);
  font-weight:700;
  font-size:27px;
  line-height:1.2;
  letter-spacing:-.01em;
  color:var(--ebh-ink);
  margin:44px 0 16px;
}
.ebh-blog-article__content h3{
  font-family:var(--font-display);
  font-weight:600;
  font-size:21px;
  line-height:1.25;
  color:var(--ebh-ink);
  margin:34px 0 12px;
}
.ebh-blog-article__content a{
  color:var(--ebh-brown);
  text-decoration:underline;
  text-underline-offset:2px;
}
.ebh-blog-article__content a:hover{ color:var(--ebh-brown-h); }
.ebh-blog-article__content ul,
.ebh-blog-article__content ol{
  margin:0 0 22px;
  padding-left:22px;
}
.ebh-blog-article__content li{ margin:0 0 8px; }
.ebh-blog-article__content img{
  max-width:100%;
  height:auto;
  border-radius:var(--radius);
  display:block;
  margin:28px auto;
}
.ebh-blog-article__content blockquote{
  margin:28px 0;
  padding:6px 0 6px 22px;
  border-left:3px solid var(--ebh-ember);
  color:var(--ebh-ink);
  font-size:19px;
  line-height:1.6;
  font-style:italic;
}
.ebh-blog-article__content strong{ color:var(--ebh-ink); }

.ebh-blog-article__back{
  max-width:720px;
  margin:48px auto 0;
  padding-top:32px;
  border-top:1px solid var(--ebh-line);
}
.ebh-blog-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:15px;
  color:var(--ebh-brown);
  text-decoration:none;
}
.ebh-blog-back svg{ transition:transform .2s ease; }
.ebh-blog-back:hover svg{ transform:translateX(-3px); }

/* --- Page générique (page.php) --- */
.ebh-blog--page .ebh-blog-head__title{ margin:0; }
.ebh-blog--page .ebh-blog-article__content{ max-width:760px; }

/* --- Responsive --- */
@media (max-width:1024px){
  .ebh-blog-grid{ grid-template-columns:repeat(2,1fr); }
  .ebh-blog-head{ padding:52px 0; }
  .ebh-blog-head__title,
  .ebh-blog-article__title{ font-size:36px; }
}
@media (max-width:767px){
  .ebh-blog-grid{ grid-template-columns:1fr; }
  .ebh-blog-head{ padding:40px 0; }
  .ebh-blog-head__title,
  .ebh-blog-article__title{ font-size:30px; }
  .ebh-blog-head__lead{ font-size:16px; }
  .ebh-blog-body{ padding:32px 0 var(--ebh-secpad); }
  .ebh-blog-article__content{ font-size:16px; }
  .ebh-blog-article__content h2{ font-size:23px; }
}

/* ============================================================
   PAGE KONTAKT — classes ebh-kontakt* (proto lignes 771-808)
   ============================================================ */
.ebh-kontakt{
  background:#fff;
  padding:var(--ebh-secpad) 0;
}

/* Fil d'Ariane */
.ebh-kontakt-crumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:13px;
  color:#9A8C74;
  margin-bottom:16px;
}
.ebh-kontakt-crumb__home{
  color:#9A8C74;
  text-decoration:none;
  transition:color .18s ease;
}
.ebh-kontakt-crumb__home:hover{ color:var(--ebh-brown); }
.ebh-kontakt-crumb__current{ color:var(--ebh-brown); }

/* Titre + accroche */
.ebh-kontakt-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:38px;
  line-height:1.15;
  margin:0 0 12px;
  color:var(--ebh-ink);
}
.ebh-kontakt-lead{
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  color:var(--ebh-text);
  margin:0 0 40px;
  max-width:600px;
}

/* Grille 2 colonnes : formulaire (1.4) + coordonnées (1) */
.ebh-kontakt-grid{
  display:flex;
  align-items:flex-start;
  gap:30px;
}
.ebh-kontakt-form{
  flex:1.4;
  width:100%;
  background:var(--ebh-cream);
  border:1px solid var(--ebh-line2);
  border-radius:20px;
  padding:30px;
}
.ebh-kontakt-aside{
  flex:1;
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* ---------- FORMULAIRE (rendu via shortcode) ---------- */
.ebh-kontakt-formtitle{
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  margin:0 0 20px;
  color:var(--ebh-ink);
}
.ebh-kontakt-fields{ margin:0; }
.ebh-kontakt-error{
  background:#FBEDEA;
  border:1px solid #E7C3BC;
  border-radius:11px;
  padding:12px 14px;
  margin-bottom:16px;
  font-family:var(--font-body);
  font-size:14px;
  color:#9B3B2A;
}
.ebh-kontakt-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}
.ebh-kontakt-field{
  display:block;
  margin-bottom:16px;
}
.ebh-kontakt-row .ebh-kontakt-field{ margin-bottom:0; }
.ebh-kontakt-field--full{ display:block; }
.ebh-kontakt-field__label{
  display:block;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:500;
  color:var(--ebh-muted);
  margin-bottom:7px;
}
.ebh-kontakt-input{
  width:100%;
  background:#fff;
  border:1px solid var(--ebh-chipline);
  border-radius:11px;
  padding:13px 14px;
  font-size:15px;
  font-family:var(--font-body);
  color:var(--ebh-ink);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
  box-sizing:border-box;
}
.ebh-kontakt-input::placeholder{ color:#A9A091; }
.ebh-kontakt-input:focus{
  border-color:var(--ebh-tan);
  box-shadow:0 0 0 3px rgba(200,169,126,.18);
}
.ebh-kontakt-input--area{
  resize:vertical;
  min-height:120px;
  line-height:1.6;
}
.ebh-kontakt-submit{
  margin-top:4px;
  gap:9px;
}
.ebh-kontakt-submit svg{ width:17px; height:17px; }

/* Etat succès */
.ebh-kontakt-done{
  text-align:center;
  padding:40px 10px;
}
.ebh-kontakt-done__icon{
  width:64px;
  height:64px;
  border-radius:18px;
  background:#EDF3EB;
  border:1px solid #CFE0C9;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--ebh-forest);
  margin-bottom:18px;
}
.ebh-kontakt-done__icon svg{ width:30px; height:30px; }
.ebh-kontakt-done__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  margin:0 0 8px;
  color:var(--ebh-ink);
}
.ebh-kontakt-done__text{
  font-family:var(--font-body);
  font-size:15.5px;
  color:var(--ebh-muted);
  margin:0;
  line-height:1.6;
}

/* ---------- COORDONNÉES (encart sombre) ---------- */
.ebh-kontakt-coords{
  background:var(--ebh-dark);
  border-radius:20px;
  padding:28px;
  color:#CDBFAA;
}
.ebh-kontakt-coord{
  display:flex;
  gap:13px;
  margin-bottom:20px;
}
.ebh-kontakt-coord:last-child{ margin-bottom:0; }
.ebh-kontakt-coord__icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ebh-tan);
  flex-shrink:0;
}
.ebh-kontakt-coord__icon svg{ width:20px; height:20px; }
.ebh-kontakt-coord__label{
  font-family:var(--font-display);
  font-weight:600;
  font-size:15px;
  color:#fff;
  margin-bottom:3px;
}
.ebh-kontakt-coord__value{
  font-family:var(--font-body);
  font-size:14px;
  line-height:1.5;
}
.ebh-kontakt-coord__value a{
  color:inherit;
  text-decoration:none;
  transition:color .18s ease;
}
.ebh-kontakt-coord__value a:hover{ color:#fff; }

/* ---------- HORAIRES (encart clair) ---------- */
.ebh-kontakt-hours{
  background:var(--ebh-cream);
  border:1px solid var(--ebh-line2);
  border-radius:20px;
  padding:28px;
}
.ebh-kontakt-hours__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.ebh-kontakt-hours__head svg{
  width:20px;
  height:20px;
  color:var(--ebh-brown);
}
.ebh-kontakt-hours__head span{
  font-family:var(--font-display);
  font-weight:600;
  font-size:16px;
  color:var(--ebh-ink);
}
.ebh-kontakt-hours__row{
  display:flex;
  justify-content:space-between;
  font-family:var(--font-body);
  font-size:14.5px;
  color:var(--ebh-text);
  padding:7px 0;
  border-bottom:1px solid var(--ebh-chipline);
}
.ebh-kontakt-hours__row--last{ border-bottom:none; }
.ebh-kontakt-hours__time{
  font-weight:500;
  color:var(--ebh-ink);
}
.ebh-kontakt-hours__time--off{ color:#9A917F; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Tablette 768-1024 : la grille reste 2 colonnes mais resserrée */
@media (max-width:1024px){
  .ebh-kontakt-grid{ gap:24px; }
  .ebh-kontakt-form{ padding:26px; }
}

/* Mobile <768 : passage en 1 colonne, formulaire d'abord */
@media (max-width:767px){
  .ebh-kontakt-title{ font-size:30px; }
  .ebh-kontakt-lead{ font-size:16px; margin-bottom:30px; }
  .ebh-kontakt-grid{
    flex-direction:column;
    gap:18px;
  }
  .ebh-kontakt-form{
    flex:none;
    padding:22px;
  }
  .ebh-kontakt-aside{ flex:none; }
  .ebh-kontakt-row{
    grid-template-columns:1fr;
    gap:0;
  }
  .ebh-kontakt-row .ebh-kontakt-field{ margin-bottom:16px; }
  .ebh-kontakt-submit{ width:100%; justify-content:center; }
  .ebh-kontakt-coords,
  .ebh-kontakt-hours{ padding:24px; }
}

/* ============================================================
   PAGES LÉGALES + FAQ — classes ebh-legal* / ebh-faq*
   Source visuelle : eich-buch-holz.dc.html lignes 811-902
   (les @media couvrent mobile <768, tablette 768-1024, desktop >1024)
   ============================================================ */

/* --- Section + colonne lisible (Impressum / Datenschutz / AGB / Widerruf) --- */
.ebh-legal{
  background:#fff;
  padding:64px 0 var(--ebh-secpad);
}
.ebh-legal__wrap{
  max-width:760px;
  margin:0 auto;
  padding:0 var(--ebh-padx);
}
.ebh-legal__wrap--wide{ max-width:860px; }

/* Fil d'Ariane */
.ebh-legal__crumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:13px;
  color:var(--ebh-muted);
  margin:0 0 22px;
}
.ebh-legal__crumb a{
  color:var(--ebh-muted);
  text-decoration:none;
  transition:color .18s ease;
}
.ebh-legal__crumb a:hover{ color:var(--ebh-brown); }
.ebh-legal__crumb span{ color:var(--ebh-tan); }

/* Titre de page */
.ebh-legal__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(28px,4.4vw,40px);
  line-height:1.12;
  letter-spacing:-.01em;
  color:var(--ebh-ink);
  margin:0 0 26px;
}

/* Onglets légaux */
.ebh-legal__tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 36px;
  padding:0 0 26px;
  border-bottom:1px solid var(--ebh-line);
}
.ebh-legal__tab{
  display:inline-flex;
  align-items:center;
  font-family:var(--font-display);
  font-weight:600;
  font-size:14.5px;
  line-height:1;
  color:var(--ebh-text);
  text-decoration:none;
  padding:11px 18px;
  border:1px solid var(--ebh-chipline);
  border-radius:11px;
  background:var(--ebh-chip);
  transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.ebh-legal__tab:hover{
  background:var(--ebh-chip-h);
  color:var(--ebh-brown);
}
.ebh-legal__tab.is-active{
  background:var(--ebh-brown);
  border-color:var(--ebh-brown);
  color:#fff;
}

/* Corps de texte légal (rendu de the_content) */
.ebh-legal__body{
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.8;
  color:#4D463C;
}
.ebh-legal__body > *:last-child{ margin-bottom:0; }
.ebh-legal__body h2,
.ebh-legal__body h3{
  font-family:var(--font-display);
  font-weight:600;
  color:var(--ebh-ink);
  margin:0 0 10px;
}
.ebh-legal__body h2{ font-size:19px; }
.ebh-legal__body h2:not(:first-child){ margin-top:34px; }
.ebh-legal__body h3{ font-size:16.5px; margin-top:26px; }
.ebh-legal__body p{ margin:0 0 24px; }
.ebh-legal__body ul,
.ebh-legal__body ol{ margin:0 0 24px; padding-left:22px; }
.ebh-legal__body li{ margin:0 0 8px; }
.ebh-legal__body a{
  color:var(--ebh-brown);
  text-decoration:underline;
  text-underline-offset:2px;
}
.ebh-legal__body a:hover{ color:var(--ebh-brown-h); }
.ebh-legal__body strong{ color:var(--ebh-ink); }

/* Note de bas de page */
.ebh-legal__note{
  margin:42px 0 0;
  padding:18px 20px;
  border-radius:14px;
  background:var(--ebh-cream);
  border:1px solid var(--ebh-line2);
  font-family:var(--font-body);
  font-size:13.5px;
  line-height:1.65;
  color:var(--ebh-muted);
}

/* ============================================================
   FAQ — accordéon « Häufige Fragen »
   ============================================================ */
.ebh-legal--faq .ebh-legal__crumb{ margin-bottom:0; }

.ebh-faq__head{
  text-align:center;
  margin:0 auto 44px;
  padding-top:18px;
}
.ebh-kicker--center{ justify-content:center; text-align:center; }
.ebh-faq__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(28px,4.4vw,40px);
  line-height:1.12;
  letter-spacing:-.01em;
  color:var(--ebh-ink);
  margin:0 0 12px;
}
.ebh-faq__lead{
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  color:var(--ebh-text);
  margin:0;
}

/* Liste d'items */
.ebh-faq__list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.ebh-faq__item{
  border:1px solid var(--ebh-line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.ebh-faq__item[open]{ border-color:var(--ebh-chipline); }

/* En-tête cliquable (summary) */
.ebh-faq__q{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 24px;
}
.ebh-faq__q::-webkit-details-marker{ display:none; }
.ebh-faq__qtext{
  font-family:var(--font-display);
  font-weight:600;
  font-size:16.5px;
  line-height:1.35;
  color:var(--ebh-ink);
}
.ebh-faq__icon{
  flex-shrink:0;
  width:30px;
  height:30px;
  border-radius:9px;
  background:var(--ebh-chip);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ebh-brown);
  transition:transform .25s ease,background .18s ease;
}
.ebh-faq__item[open] .ebh-faq__icon{ transform:rotate(180deg); }
.ebh-faq__q:hover .ebh-faq__icon{ background:var(--ebh-chip-h); }

/* Réponse */
.ebh-faq__a{
  padding:0 24px 24px;
  font-family:var(--font-body);
  font-size:15.5px;
  line-height:1.7;
  color:var(--ebh-text);
}
.ebh-faq__a > *:first-child{ margin-top:0; }
.ebh-faq__a > *:last-child{ margin-bottom:0; }
.ebh-faq__a p{ margin:0 0 14px; }
.ebh-faq__a a{
  color:var(--ebh-brown);
  text-decoration:underline;
  text-underline-offset:2px;
}
.ebh-faq__a a:hover{ color:var(--ebh-brown-h); }

/* Carte CTA « Frage nicht dabei? » */
.ebh-faq__cta{
  text-align:center;
  margin-top:44px;
  padding:34px;
  background:var(--ebh-cream);
  border:1px solid var(--ebh-line2);
  border-radius:20px;
}
.ebh-faq__cta-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:21px;
  color:var(--ebh-ink);
  margin:0 0 8px;
}
.ebh-faq__cta-text{
  font-family:var(--font-body);
  font-size:15.5px;
  color:var(--ebh-muted);
  margin:0 0 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Tablette 768-1024 */
@media (max-width:1024px){
  .ebh-legal{ padding:56px 0 80px; }
}

/* Mobile <768 */
@media (max-width:767px){
  .ebh-legal{ padding:40px 0 64px; }
  .ebh-legal__wrap,
  .ebh-legal__wrap--wide{ padding:0 20px; }
  .ebh-legal__tabs{ gap:8px; margin-bottom:28px; padding-bottom:20px; }
  .ebh-legal__tab{ padding:10px 14px; font-size:13.5px; }
  .ebh-legal__body{ font-size:15.5px; }

  .ebh-faq__head{ margin-bottom:32px; padding-top:8px; }
  .ebh-faq__lead{ font-size:15.5px; }
  .ebh-faq__q{ padding:18px 18px; gap:12px; }
  .ebh-faq__qtext{ font-size:15.5px; }
  .ebh-faq__a{ padding:0 18px 20px; }
  .ebh-faq__cta{ padding:26px 20px; margin-top:32px; }
}

/* ============================================================ */
/* === Boutons d'action WooCommerce natifs -> brun primaire === */
/* ============================================================ */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
  background: var(--ebh-brown);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  transition: background .2s ease, transform .2s ease;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #place_order:hover,
.woocommerce-checkout #place_order:hover {
  background: var(--ebh-brown-h);
  color: #fff;
  transform: translateY(-2px);
}
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================ */
/* === Stepper quantité (− / +) unifié — PDP & panier ======== */
/* ============================================================ */
.quantity {
  display: inline-flex !important;
  align-items: center;
  background: var(--ebh-cream);
  border: 1px solid var(--ebh-chipline);
  border-radius: 11px;
  overflow: hidden;
  width: auto !important;
}
.ebh-qty-btn {
  width: 38px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ebh-brown);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.ebh-qty-btn:hover { background: rgba(107, 66, 38, .10); }
.ebh-qty-btn:active { background: rgba(107, 66, 38, .18); }
.quantity input.qty {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 44px !important;
  height: 44px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ebh-ink);
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
}
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* =========================================================
   Logo image — rebranding Holz BES
   Header (fond clair) : image dimensionnée en CSS.
   Footer (fond sombre) : pastille blanche pour la lisibilité.
   ========================================================= */
.ebh-header__logo-img {
  max-height: 104px;
  width: auto;
  display: block;
}
.ebh-drawer__name .ebh-header__logo-img {
  max-height: 42px;
}
/* Pastille blanche autour du logo dans le footer sombre. */
.ebh-footer__logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}
.ebh-footer__logo-chip .ebh-footer__logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}

/* Fix récap panier : neutralise le float WooCommerce par défaut sur .cart_totals
   (qui faisait chevaucher coupon/promo et totaux dans la colonne résumé). */
.ebh-cart-summary .cart_totals,
.ebh-cart-summary .ebh-cart-totals {
  float: none !important;
  width: 100% !important;
  margin: 0 0 18px !important;
}
.ebh-cart-summary .ebh-cart-promo-hint,
.ebh-cart-summary .ebh-cart-coupon { width: 100%; box-sizing: border-box; }

/* ============================================================ */
/* === Page de confirmation de commande (Danke) ============== */
/* ============================================================ */
.ebh-confirm { padding: var(--ebh-secpad) 0; background: #fff; }
.ebh-confirm__head { max-width: 780px; margin: 0 auto; text-align: center; }
.ebh-confirm__icon {
  width: 84px; height: 84px; border-radius: 24px;
  background: #EDF3EB; border: 1px solid #CFE0C9; color: var(--ebh-forest);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.ebh-confirm__icon--failed { background: #FBEAE6; border-color: #F0CFC6; color: var(--ebh-ember); }
.ebh-confirm__title {
  font-family: var(--font-display); font-weight: 700; font-size: 38px;
  line-height: 1.12; margin: 0 0 14px; color: var(--ebh-ink);
}
.ebh-confirm__lead { font-size: 17px; line-height: 1.6; color: var(--ebh-text); margin: 0 0 26px; }
.ebh-confirm__order {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ebh-cream); border: 1px solid var(--ebh-line2);
  border-radius: 14px; padding: 16px 26px; margin-bottom: 44px;
}
.ebh-confirm__order-label { font-size: 14px; color: var(--ebh-muted2); }
.ebh-confirm__order-no {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--ebh-brown); letter-spacing: .04em;
}
.ebh-confirm__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 980px; margin: 0 auto 44px; text-align: left;
}
.ebh-confirm__step { background: var(--ebh-cream); border: 1px solid var(--ebh-line2); border-radius: 16px; padding: 24px; }
.ebh-confirm__step-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #fff;
  border: 1px solid var(--ebh-chipline); color: var(--ebh-brown);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.ebh-confirm__step-title { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ebh-ink); margin-bottom: 6px; }
.ebh-confirm__step-text { font-size: 14px; line-height: 1.55; color: var(--ebh-muted); margin: 0; }
.ebh-confirm__details { max-width: 820px; margin: 0 auto 36px; }
.ebh-confirm__details .woocommerce-order-overview,
.ebh-confirm__details .woocommerce-thankyou-order-received { display: none; }
.ebh-confirm__details h2 { font-family: var(--font-display); font-weight: 700; color: var(--ebh-ink); font-size: 20px; margin: 28px 0 14px; }
.ebh-confirm__details .woocommerce-table,
.ebh-confirm__details table.shop_table {
  width: 100%; border-collapse: collapse; border: 1px solid var(--ebh-line);
  border-radius: 14px; overflow: hidden;
}
.ebh-confirm__details table.shop_table th,
.ebh-confirm__details table.shop_table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--ebh-line); }
.ebh-confirm__details ul.wc-bacs-bank-details,
.ebh-confirm__details .woocommerce-bacs-bank-details {
  list-style: none; margin: 0 0 20px; padding: 20px 24px;
  background: var(--ebh-cream); border: 1px solid var(--ebh-line2); border-radius: 14px;
}
.ebh-confirm__details .wc-bacs-bank-details-account-name,
.ebh-confirm__details .woocommerce-bacs-bank-details h2 { color: var(--ebh-brown); }
.ebh-confirm__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
@media (max-width: 767px) {
  .ebh-confirm__title { font-size: 28px; }
  .ebh-confirm__steps { grid-template-columns: 1fr; }
}
