/* ════════════════════════════════════════
   Cœur de Bois – Main Stylesheet v1.0
   ════════════════════════════════════════ */

:root {
  --brun:       #5c3d1e;
  --brun-dark:  #3b2410;
  --brun-mid:   #7a5230;
  --beige:      #f5ede0;
  --beige-mid:  #e8d5b7;
  --vert:       #3a5c2e;
  --orange:     #c4640a;
  --cream:      #faf6f0;
  --text:       #2a1a0a;
  --text-light: #6b4c2a;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(60,30,10,.13);
  --radius:     14px;
  --nav-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--brun-dark);
  color: var(--beige-mid);
  font-size: 13px;
  padding: 7px 0;
  text-align: center;
  letter-spacing: .04em;
  position: relative;
  z-index: 100;
  white-space: nowrap;
  overflow: hidden;
}
.topbar span { margin: 0 18px; }
.flag, .lang-btn {
  cursor: pointer; margin: 0 5px; font-size: 16px;
  transition: transform .2s; display: inline-block;
  user-select: none;
}
.flag:hover, .lang-btn:hover { transform: scale(1.3); }
.lang-current { font-weight: 700; color: #ffd4a0 !important; }

/* ─── NAVBAR ─── */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(60,30,10,.08);
  position: sticky; top: 0; z-index: 1000;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 900;
  color: var(--brun);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo img { height: 48px; width: auto; }
.flame { font-size: 28px; }
.logo em { color: var(--orange); font-style: normal; }

.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 8px 16px; border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--beige); color: var(--brun); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  background: var(--brun); color: var(--white); border: none;
  border-radius: 50px; padding: 9px 20px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  transition: background .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.cart-btn:hover { background: var(--brun-mid); transform: translateY(-1px); }
.cart-count {
  background: var(--orange); color: var(--white);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.cart-count.bump { transform: scale(1.4); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column;
  gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--brun); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); z-index: 999;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(60,30,10,.12);
  border-top: 1px solid var(--beige-mid);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 12px 16px; border-radius: 8px;
  transition: background .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--beige); color: var(--brun); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--orange); color: var(--white);
  border: none; border-radius: 50px;
  padding: 16px 36px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #a8520a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,100,10,.4); color: var(--white); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4); border-radius: 50px;
  padding: 14px 32px; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all .2s;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ─── SECTION HELPERS ─── */
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; color: var(--orange); text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--brun-dark); margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-light); max-width: 560px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 92vh;
  background: linear-gradient(135deg, #2a1506 0%, #5c3d1e 40%, #3a5c2e 100%);
  display: flex; align-items: center; overflow: hidden; padding: 80px 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 620px; background: rgba(0,0,0,.25); padding: 32px; border-radius: 16px; backdrop-filter: blur(2px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.45); border: 1px solid rgba(196,100,10,.6);
  color: #ffb566; border-radius: 50px;
  padding: 6px 16px; font-size: 13px; font-weight: 600;
  margin-bottom: 28px; letter-spacing: .05em;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900; line-height: 1.1; color: #ffb566; margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.hero h1 em { color: #ffb566; font-style: normal; }
.hero p { font-size: 19px; color: #ffb566; margin-bottom: 40px; line-height: 1.6; text-shadow: 0 1px 6px rgba(0,0,0,.8); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%); width: 480px; height: 480px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.4); z-index: 1;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c4640a, #7a3a10);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 80px; gap: 12px;
}
.hero-placeholder p { font-size: 14px; text-align: center; padding: 0 20px; }
.hero-stats {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; gap: 40px; z-index: 2; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); display: block; }
.stat .label { font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* ─── FEATURES ─── */
.features { background: var(--white); padding: 80px 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.feature-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--beige-mid);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brun), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; background: var(--beige-mid);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--brun-dark); margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* ─── CATEGORIES ─── */
.categories { padding: 80px 60px; background: var(--beige); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.cat-card {
  border-radius: 20px; overflow: hidden; position: relative;
  cursor: pointer; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s; aspect-ratio: 4/5;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(60,30,10,.2); }
.cat-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative;
}
.cat-bg.bois    { background: linear-gradient(160deg, #5c3d1e, #3b2410); }
.cat-bg.pellets { background: linear-gradient(160deg, #3a5c2e, #2a4020); }
.cat-bg.poeles  { background: linear-gradient(160deg, #8b4513, #5c3d1e); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
}
.cat-badge {
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  color: var(--white); border-radius: 50px; padding: 4px 14px;
  font-size: 12px; font-weight: 600; width: fit-content;
  margin-bottom: 12px; border: 1px solid rgba(255,255,255,.25);
}
.cat-overlay h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cat-overlay p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 14px; font-weight: 600;
  text-decoration: none; background: var(--orange); border-radius: 50px;
  padding: 9px 20px; width: fit-content; transition: background .2s;
}
.cat-link:hover { background: #a8520a; }

/* ─── PRODUITS VEDETTES ─── */
.featured-products { padding: 80px 60px; background: var(--white); }

/* ─── PRODUCT GRID ─── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 12px rgba(60,30,10,.08);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--beige-mid);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(60,30,10,.15); }
.product-card-link { text-decoration: none; color: inherit; display: block; }
.product-img {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 64px; position: relative;
  overflow: hidden;
}
.product-img.bois-bg    { background: linear-gradient(135deg, #6b4423, #3b2410); }
.product-img.pellets-bg { background: linear-gradient(135deg, #3a5c2e, #1e3418); }
.product-img.poeles-bg  { background: linear-gradient(135deg, #7a3a10, #4a2008); }
.prod-thumb-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.product-badge-new, .product-badge-promo {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; border-radius: 50px;
  padding: 3px 10px; letter-spacing: .08em; z-index: 2;
}
.product-badge-new   { background: var(--vert); color: var(--white); }
.product-badge-promo { background: var(--orange); color: var(--white); }
.product-info { padding: 20px; }
.product-info h3 { font-size: 14px; font-weight: 600; color: var(--brun-dark); margin-bottom: 6px; line-height: 1.4; text-transform: capitalize; }
.product-info .desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price, .woocommerce-Price-amount { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--orange); }
ins .woocommerce-Price-amount { text-decoration: none; }
del .woocommerce-Price-amount { font-size: 14px; color: var(--text-light); font-weight: 400; }
.add-btn, .add_to_cart_button {
  background: var(--brun); color: var(--white);
  border: none; border-radius: 50px;
  padding: 10px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  display: inline-block; letter-spacing: .02em;
}
.add-btn:hover, .add_to_cart_button:hover { background: var(--orange); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(196,100,10,.3); }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 80px 60px; background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--beige-mid); }
.stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brun), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 15px; color: var(--brun-dark); }
.testi-loc  { font-size: 13px; color: var(--text-light); }

/* ─── FAQ ─── */
.faq { padding: 80px 60px; background: var(--beige); }
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--beige-mid); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 20px 0; text-align: left;
  font-size: 17px; font-weight: 600; color: var(--brun-dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .arrow { font-size: 20px; transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 15px; color: var(--text-light); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s;
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }

/* ─── CAT PAGE ─── */
.cat-page { padding: 60px; }
.breadcrumb {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 32px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--brun); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.cat-page-header {
  background: linear-gradient(135deg, var(--brun-dark), var(--brun));
  border-radius: 20px; padding: 60px; color: var(--white);
  margin-bottom: 48px; display: flex; align-items: center; justify-content: space-between;
}
.cat-page-header h1 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; margin-bottom: 12px; }
.cat-page-header p { font-size: 18px; opacity: .8; max-width: 500px; }
.cat-page-icon { font-size: 100px; opacity: .4; }

/* ─── PRODUCT DETAIL ─── */
.product-detail { padding: 60px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-main-img { border-radius: 20px; overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow); }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.product-thumbs { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.thumb {
  width: 72px; height: 72px; border-radius: 10px;
  border: 2px solid var(--beige-mid); cursor: pointer;
  background-size: cover; background-position: center;
  transition: border-color .2s;
}
.thumb.active, .thumb:hover { border-color: var(--brun); }
.prod-category { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--orange); text-transform: uppercase; margin-bottom: 8px; }
.prod-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--brun-dark); margin-bottom: 16px; line-height: 1.2; }
.prod-price-block { margin-bottom: 28px; }
.prod-price-label { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.prod-price { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--orange); }
.prod-desc { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.prod-tag { background: var(--beige); color: var(--brun-mid); border-radius: 50px; padding: 5px 14px; font-size: 13px; font-weight: 500; }
.prod-guarantees { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--beige-mid); display: flex; flex-direction: column; gap: 12px; }
.guarantee-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-light); }
.gi { font-size: 20px; }

/* WooCommerce single product overrides */
.woo-add-to-cart .quantity { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.woo-add-to-cart .qty {
  width: 80px; border: 2px solid var(--beige-mid); border-radius: 50px;
  padding: 10px 16px; font-size: 16px; font-weight: 600;
  text-align: center; font-family: 'DM Sans', sans-serif;
  background: var(--cream); color: var(--brun-dark);
}
.woo-add-to-cart .single_add_to_cart_button {
  background: var(--brun); color: var(--white); border: none;
  border-radius: 50px; padding: 14px 32px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.woo-add-to-cart .single_add_to_cart_button:hover { background: var(--orange); transform: translateY(-2px); }

/* ─── CONTACT ─── */
.contact-page { padding: 80px 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info { background: linear-gradient(135deg, var(--brun-dark), var(--brun)); border-radius: 20px; padding: 40px; color: var(--white); }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.contact-info p { font-size: 15px; opacity: .8; margin-bottom: 32px; line-height: 1.7; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; font-size: 15px; }
.contact-item .ci-icon { width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item div strong { display: block; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact-item div span  { color: rgba(255,255,255,.7); font-size: 14px; }
.contact-map-placeholder { margin-top: 28px; border-radius: 14px; background: rgba(255,255,255,.08); padding: 20px; text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--brun-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 2px solid var(--beige-mid); border-radius: 10px;
  padding: 12px 16px; font-size: 15px; color: var(--text);
  background: var(--cream); transition: border-color .2s; font-family: 'DM Sans', sans-serif;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--brun); background: var(--white); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #4caf50; border-radius: 10px; padding: 16px 20px; color: #2e7d32; font-size: 15px; margin-bottom: 20px; align-items: center; gap: 10px; }
.form-error   { display: none; background: #fde8e8; border: 1px solid #e53935; border-radius: 10px; padding: 16px 20px; color: #b71c1c; font-size: 15px; margin-bottom: 20px; align-items: center; gap: 10px; }
.form-success.show, .form-error.show { display: flex; }

/* ─── WooCommerce wrappers ─── */
.woo-wrapper { background: var(--cream); padding: 60px; }
.woo-inner { max-width: 1400px; margin: 0 auto; }
.woo-pagination {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.woo-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--beige-mid); color: var(--text);
  text-decoration: none; font-weight: 600; margin: 0 2px;
  transition: all .2s;
}
.woo-pagination .page-numbers.current,
.woo-pagination .page-numbers:hover { background: var(--brun); color: var(--white); border-color: var(--brun); }
/* WooCommerce native pagination */
.woocommerce-pagination ul.page-numbers {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 6px; list-style: none; padding: 0; margin: 32px 0; flex-wrap: wrap;
}
.woocommerce-pagination ul.page-numbers li { display: inline-flex; }
.woocommerce-pagination ul.page-numbers li .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--beige-mid); color: var(--text);
  text-decoration: none; font-weight: 600; transition: all .2s;
}
.woocommerce-pagination ul.page-numbers li .page-numbers.current,
.woocommerce-pagination ul.page-numbers li .page-numbers:hover { background: var(--brun); color: var(--white); border-color: var(--brun); }

/* ─── FOOTER ─── */
.site-footer { background: var(--brun-dark); color: rgba(255,255,255,.75); padding: 70px 60px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--beige); margin-bottom: 16px; display: flex; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: background .2s; text-decoration: none; }
.social-btn:hover { background: var(--orange); }
.footer-col h4 { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--beige-mid); margin-bottom: 20px; }
.footer-widget-title { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--beige-mid); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--beige); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 16px; }
.payment-icons { display: flex; gap: 8px; }
.pay-icon { background: rgba(255,255,255,.1); border-radius: 6px; padding: 4px 10px; font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; }

/* ─── TOAST ─── */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--brun-dark); color: var(--white); border-radius: 12px; padding: 16px 24px; font-size: 15px; font-weight: 500; box-shadow: 0 8px 32px rgba(0,0,0,.25); z-index: 3000; opacity: 0; transform: translateY(20px); transition: all .3s; pointer-events: none; display: flex; align-items: center; gap: 10px; }
.toast.show { opacity: 1; transform: translateY(0); }
.t-icon { font-size: 20px; }

/* ─── PAGE CONTENT ─── */
.page-content { padding: 60px; max-width: 900px; margin: 0 auto; }
.entry-content { margin-top: 32px; line-height: 1.8; color: var(--text-light); }
.entry-content h2, .entry-content h3 { font-family: 'Playfair Display', serif; color: var(--brun-dark); margin: 32px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 16px 0 16px 24px; }
.entry-content li { margin-bottom: 8px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 20px; flex-direction: column; min-height: auto; }
  .hero-content { padding: 20px; border-radius: 12px; }
  .hero-visual { position: static; transform: none; width: 100%; max-width: 320px; height: 280px; margin: 24px auto 0; border-radius: 50%; }
  .hero-stats { position: static; margin-top: 40px; }
  .features-grid, .cat-grid, .testi-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features, .categories, .testimonials, .faq, .featured-products { padding: 40px 20px; }
  .cat-page, .contact-page, .product-detail, .woo-wrapper { padding: 40px 20px; }
  .product-detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer { padding: 40px 20px 20px; }
  .cat-page-header { flex-direction: column; gap: 16px; padding: 30px; }
  .cat-page-header h1 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { font-size: 11px; padding: 5px 0; }
  .topbar span { margin: 0 8px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .topbar { font-size: 11px; }
  .topbar span { margin: 0 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* ─── WooCommerce notices ─── */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-radius: 10px; padding: 14px 20px; margin-bottom: 20px;
  font-size: 15px; border-left: 4px solid var(--orange);
  background: var(--beige); color: var(--text);
}
