/*
Theme Name:  Leuningmakers
Theme URI:   https://leuningmakers.nl
Author:      Leuningmakers.nl
Description: Stalen trapleuningen & interieur – WooCommerce thema
Version:     1.0.0
License:     GPL-2.0-or-later
Text Domain: leuningmakers
Tags:        woocommerce, e-commerce, dark, custom-menu, custom-logo, footer-widgets, responsive-layout
*/

/* ============================================================
   LEUNINGMAKERS — Gedeelde stijlen
   Kleurpalet: zwart #0d0d0d · wit #ffffff · brons #c9a96e · grijs #888
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ── Reset & basis ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0d0d0d;
  --white:      #ffffff;
  --bronze:     #c9a96e;
  --bronze-dk:  #a8843e;
  --grey-lt:    #f5f5f5;
  --grey-md:    #e0e0e0;
  --grey:       #888888;
  --grey-dk:    #444444;
  --font-body:  'DM Sans', sans-serif;
  --font-serif: 'DM Sans', sans-serif;
  --radius:     2px;
  --transition: 0.22s ease;
  --max-w:      1320px;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typografie hulpklassen ── */
.serif    { font-family: var(--font-serif); letter-spacing: -0.01em; }
.label    { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); }
.bronze   { color: var(--bronze); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Knoppen ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border-radius: var(--radius);
  text-align: center;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #2a2a2a; }
.btn-bronze { background: var(--bronze); color: var(--white); }
.btn-bronze:hover { background: var(--bronze-dk); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-lg { padding: 16px 40px; font-size: 14px; }

/* ── Badges ── */
.badge { display: inline-block; padding: 3px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-radius: var(--radius); }
.badge-black  { background: var(--black);  color: var(--white); }
.badge-bronze { background: var(--bronze); color: var(--white); }
.badge-sale   { background: #c0392b;       color: var(--white); }

/* ╔══════════════════════════════════════════╗
   ║  NAVIGATIE                               ║
   ╚══════════════════════════════════════════╝ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-md);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  text-transform: uppercase;
}
.nav-logo span { color: var(--bronze); }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--black);
  transition: color var(--transition); position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--bronze);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--bronze); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--bronze); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-icon {
  position: relative; display: flex; align-items: center;
  justify-content: center; width: 40px; height: 40px;
  color: var(--black); transition: color var(--transition); cursor: pointer;
  background: none; border: none;
}
.nav-icon:hover { color: var(--bronze); }
.nav-icon svg { width: 20px; height: 20px; stroke-width: 1.6; fill: none; stroke: currentColor; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; background: var(--bronze); color: var(--white);
  font-size: 9px; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: transform var(--transition); }
.search-bar { display: none; border-top: 1px solid var(--grey-md); padding: 12px 0; background: var(--white); }
.search-bar.open { display: block; }
.search-input { width: 100%; border: none; border-bottom: 1.5px solid var(--black); padding: 8px 0; font-size: 16px; font-family: var(--font-body); outline: none; background: transparent; }

/* ╔══════════════════════════════════════════╗
   ║  BREADCRUMB                              ║
   ╚══════════════════════════════════════════╝ */

.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--grey-md); font-size: 12px; color: var(--grey); }
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--bronze); }
.breadcrumb span { margin-inline: 6px; }

/* ╔══════════════════════════════════════════╗
   ║  PAGE HERO (klein)                       ║
   ╚══════════════════════════════════════════╝ */

.page-hero { background: var(--black); color: var(--white); padding: 56px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 48px); font-weight: 600; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 520px; margin-inline: auto; }

/* ╔══════════════════════════════════════════╗
   ║  PRODUCT KAART                           ║
   ╚══════════════════════════════════════════╝ */

.product-card {
  position: relative; background: var(--white); border: 1px solid var(--grey-md);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px); }
.product-card__img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--grey-lt); }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
.product-card__body { padding: 16px; }
.product-card__cat { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 5px; }
.product-card__name { font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.product-card__price { display: flex; align-items: baseline; gap: 8px; }
.product-card__price-current { font-size: 17px; font-weight: 700; }
.product-card__price-old { font-size: 13px; color: var(--grey); text-decoration: line-through; }
.product-card__actions { margin-top: 14px; display: flex; gap: 8px; }
.product-card__wishlist {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1.5px solid var(--grey-md);
  border-radius: var(--radius); cursor: pointer;
  transition: border-color var(--transition), color var(--transition); flex-shrink: 0; background: none;
}
.product-card__wishlist:hover { border-color: var(--bronze); color: var(--bronze); }
.product-card__wishlist svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* ╔══════════════════════════════════════════╗
   ║  PRODUCTGRID                             ║
   ╚══════════════════════════════════════════╝ */

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }

/* ╔══════════════════════════════════════════╗
   ║  FORMULIER                               ║
   ╚══════════════════════════════════════════╝ */

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 7px; color: var(--grey-dk); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grey-md);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 14px;
  color: var(--black); background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--black); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ╔══════════════════════════════════════════╗
   ║  FOOTER                                  ║
   ╚══════════════════════════════════════════╝ */

.site-footer { background: var(--black); color: rgba(255,255,255,0.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--bronze); }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.55); }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: var(--white); font-size: 13px; font-family: var(--font-body); border-radius: var(--radius); outline: none; transition: border-color var(--transition); }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-input:focus { border-color: var(--bronze); }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--bronze); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: rgba(255,255,255,0.6); transition: border-color var(--transition), color var(--transition); }
.footer-social a:hover { border-color: var(--bronze); color: var(--bronze); }
.footer-social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--bronze); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ╔══════════════════════════════════════════╗
   ║  USP BALK                                ║
   ╚══════════════════════════════════════════╝ */

.usp-bar { background: var(--grey-lt); border-top: 1px solid var(--grey-md); border-bottom: 1px solid var(--grey-md); padding: 14px 0; }
.usp-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.usp-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; }
.usp-item svg { width: 18px; height: 18px; color: var(--bronze); fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ╔══════════════════════════════════════════╗
   ║  SECTION HELPERS                         ║
   ╚══════════════════════════════════════════╝ */

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 40px; }
.section-header--center { text-align: center; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; }
.section-header p { font-size: 15px; color: var(--grey); max-width: 520px; }
.section-header--center p { margin-inline: auto; }
.divider { display: flex; align-items: center; gap: 16px; margin: 48px 0; color: var(--grey); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--grey-md); }
.sidebar-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }

/* ╔══════════════════════════════════════════╗
   ║  ACTIEBALK (top van pagina)              ║
   ╚══════════════════════════════════════════╝ */

.promo-bar { background: var(--bronze); color: var(--black); padding: 10px 0; position: relative; z-index: 1001; }
.promo-bar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.promo-bar-badge { background: var(--black); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; padding: 3px 8px; border-radius: 2px; flex-shrink: 0; }
.promo-bar-text { font-size: 13px; font-weight: 500; text-align: center; }
.promo-bar-text strong { font-weight: 800; }
.promo-bar-cta { background: var(--black); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; transition: background var(--transition); flex-shrink: 0; }
.promo-bar-cta:hover { background: #333; }
.promo-bar-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 18px; cursor: pointer; color: rgba(0,0,0,0.5); line-height: 1; padding: 4px; transition: color var(--transition); }
.promo-bar-close:hover { color: var(--black); }

/* ╔══════════════════════════════════════════╗
   ║  PROMO BANNER (homepage sectie)          ║
   ╚══════════════════════════════════════════╝ */

.promo-section { background: var(--black); border-top: 3px solid var(--bronze); border-bottom: 3px solid var(--bronze); padding: 48px 0; position: relative; overflow: hidden; }
.promo-section::before { content: '−20%'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: var(--font-serif); font-size: clamp(100px, 18vw, 200px); font-weight: 600; color: rgba(201,169,110,0.07); line-height: 1; pointer-events: none; white-space: nowrap; }
.promo-section-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.promo-section-label { display: inline-flex; align-items: center; gap: 8px; background: var(--bronze); color: var(--black); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; margin-bottom: 16px; }
.promo-section h2 { font-family: var(--font-serif); font-size: clamp(24px, 4vw, 44px); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 10px; }
.promo-section h2 span { color: var(--bronze); }
.promo-section p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 440px; line-height: 1.7; }
.promo-discount-box { flex-shrink: 0; text-align: center; background: var(--bronze); border-radius: 4px; padding: 28px 40px; min-width: 180px; }
.promo-discount-box .pct { font-family: var(--font-serif); font-size: 72px; font-weight: 600; color: var(--black); line-height: 1; }
.promo-discount-box .pct-label { font-size: 13px; font-weight: 700; color: rgba(0,0,0,0.65); letter-spacing: 0.05em; margin-top: 4px; }

/* ── Categorie promo banner ── */
.cat-promo-banner { background: linear-gradient(90deg, var(--black) 0%, #1a1a1a 100%); border-radius: var(--radius); padding: 20px 28px; display: flex; align-items: center; gap: 20px; margin-bottom: 28px; border-left: 4px solid var(--bronze); flex-wrap: wrap; }
.cat-promo-banner .pct-pill { background: var(--bronze); color: var(--black); font-size: 20px; font-weight: 800; font-family: var(--font-serif); padding: 6px 16px; border-radius: 2px; flex-shrink: 0; }
.cat-promo-banner-text { flex: 1; }
.cat-promo-banner-text strong { display: block; color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.cat-promo-banner-text span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── Product promo callout ── */
.product-promo-callout { display: flex; align-items: center; gap: 14px; background: linear-gradient(90deg, rgba(201,169,110,0.12), rgba(201,169,110,0.04)); border: 1.5px solid var(--bronze); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 20px; }
.product-promo-callout .badge-pct { background: var(--bronze); color: var(--black); font-size: 18px; font-weight: 800; font-family: var(--font-serif); padding: 4px 12px; border-radius: 2px; flex-shrink: 0; }
.product-promo-callout p { font-size: 13px; font-weight: 500; color: var(--grey-dk); line-height: 1.5; }
.product-promo-callout p strong { color: var(--black); }

/* ── Toast notificatie ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--black); color: var(--white); padding: 14px 20px; border-left: 3px solid var(--bronze); font-size: 14px; font-weight: 500; border-radius: var(--radius); opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s; z-index: 9999; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }

/* ╔══════════════════════════════════════════╗
   ║  RESPONSIVE GRID UTILITIES               ║
   ╚══════════════════════════════════════════╝ */

.grid-2  { display: grid; grid-template-columns: 1fr 1fr; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-2-2 { display: grid; grid-template-columns: 1fr 1fr; }

/* ╔══════════════════════════════════════════╗
   ║  MOBILE NAV OVERLAY                      ║
   ╚══════════════════════════════════════════╝ */

.nav-menu.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--white); border-top: 1px solid var(--grey-md); padding: 16px 24px 40px; z-index: 998; overflow-y: auto; gap: 0; }
.nav-menu.open a { display: block; padding: 18px 0; font-size: 17px; border-bottom: 1px solid var(--grey-md); letter-spacing: 0.03em; }
.nav-menu.open a::after { display: none; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ╔══════════════════════════════════════════╗
   ║  CONTACT                                 ║
   ╚══════════════════════════════════════════╝ */

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 64px 0; }
.contact-channel { display: flex; gap: 20px; padding: 24px; border: 1px solid var(--grey-md); border-radius: var(--radius); margin-bottom: 16px; background: #fff; transition: box-shadow var(--transition); }
.contact-channel:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.contact-channel-icon { width: 48px; height: 48px; background: var(--grey-lt); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-channel-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--bronze); stroke-width: 1.8; }
.contact-channel h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-channel p { font-size: 13px; color: var(--grey); line-height: 1.6; }
.contact-channel a { color: var(--black); font-weight: 500; }
.contact-channel a:hover { color: var(--bronze); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--grey-md); }
.hours-row span:first-child { color: var(--grey); }
.hours-row span:last-child { font-weight: 500; }

/* ╔══════════════════════════════════════════╗
   ║  OVER ONS                                ║
   ╚══════════════════════════════════════════╝ */

.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--grey-md); margin-inline: auto; margin-bottom: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.team-avatar svg { width: 40px; height: 40px; fill: none; stroke: var(--grey); stroke-width: 1.5; }
.value-card { padding: 32px 28px; border: 1px solid var(--grey-md); border-radius: var(--radius); background: #fff; }
.value-card svg { width: 32px; height: 32px; fill: none; stroke: var(--bronze); stroke-width: 1.6; margin-bottom: 16px; }
.value-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--grey); line-height: 1.7; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--grey-md); }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -29px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 2px solid var(--bronze); }
.timeline-year { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze); margin-bottom: 6px; }
.timeline-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ╔══════════════════════════════════════════╗
   ║  KLANTENSERVICE                          ║
   ╚══════════════════════════════════════════╝ */

.service-card { padding: 28px; background: #fff; border: 1px solid var(--grey-md); border-radius: var(--radius); transition: box-shadow var(--transition), transform var(--transition); cursor: pointer; display: block; color: inherit; text-decoration: none; }
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-card svg { width: 28px; height: 28px; fill: none; stroke: var(--bronze); stroke-width: 1.8; margin-bottom: 14px; }
.service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--grey); line-height: 1.7; }
.service-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--bronze); font-weight: 500; margin-top: 14px; }
.faq-item { border-bottom: 1px solid var(--grey-md); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 500; gap: 16px; transition: color var(--transition); list-style: none; }
.faq-question:hover { color: var(--bronze); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform var(--transition); }
.faq-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { font-size: 14px; color: var(--grey-dk); line-height: 1.8; padding-bottom: 20px; display: none; }
.faq-item.open .faq-answer { display: block; }
.shipping-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.shipping-table th, .shipping-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--grey-md); }
.shipping-table thead th { background: var(--black); color: var(--white); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 600; }
.shipping-table tbody tr:hover { background: var(--grey-lt); }
.shipping-table .price { font-weight: 700; }
.shipping-table .free { color: var(--bronze); font-weight: 700; }

/* ╔══════════════════════════════════════════╗
   ║  INSPIRATIE GALERIJ                      ║
   ╚══════════════════════════════════════════╝ */

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ╔══════════════════════════════════════════╗
   ║  WOOCOMMERCE — WINKELWAGEN               ║
   ╚══════════════════════════════════════════╝ */

.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; padding: 48px 0; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead tr { border-bottom: 2px solid var(--black); }
.cart-table th { padding: 12px 0; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); text-align: left; }
.cart-table th:last-child { text-align: right; }
.cart-table tbody tr { border-bottom: 1px solid var(--grey-md); }
.cart-table td { padding: 20px 0; vertical-align: middle; }
.cart-table td:last-child { text-align: right; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product-img { width: 80px; height: 80px; background: var(--grey-lt); border: 1px solid var(--grey-md); border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.cart-product-info p { font-size: 12px; color: var(--grey); line-height: 1.6; }
.cart-qty { display: flex; align-items: center; border: 1.5px solid var(--grey-md); border-radius: var(--radius); width: fit-content; }
.cart-qty-btn { width: 34px; height: 36px; border: none; background: transparent; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.cart-qty-btn:hover { background: var(--grey-lt); }
.cart-qty-input { width: 44px; height: 36px; border: none; border-left: 1.5px solid var(--grey-md); border-right: 1.5px solid var(--grey-md); text-align: center; font-size: 14px; font-weight: 600; font-family: var(--font-body); outline: none; }
.cart-remove { background: none; border: none; color: var(--grey); cursor: pointer; font-size: 18px; padding: 4px; transition: color var(--transition); }
.cart-remove:hover { color: #c0392b; }
.cart-summary { background: var(--grey-lt); border: 1px solid var(--grey-md); border-radius: var(--radius); padding: 28px; position: sticky; top: calc(var(--nav-h) + 24px); }
.cart-summary h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 14px; }
.summary-row.total { border-top: 2px solid var(--black); padding-top: 16px; margin-top: 8px; font-size: 18px; font-weight: 700; }
.summary-row .label-text { color: var(--grey); }
.summary-row.total .label-text { color: var(--black); font-weight: 700; }
.coupon-form { display: flex; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--grey-md); }
.coupon-input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--grey-md); border-radius: var(--radius); font-size: 13px; font-family: var(--font-body); outline: none; transition: border-color var(--transition); }
.coupon-input:focus { border-color: var(--black); }
.shipping-progress { background: #fff; border: 1px solid var(--grey-md); border-radius: var(--radius); padding: 16px; margin-bottom: 20px; font-size: 13px; }
.progress-bar { height: 4px; background: var(--grey-md); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--bronze); border-radius: 2px; }
.checkout-steps { border-bottom: 1px solid var(--grey-md); padding: 16px 0; background: #fff; }
.checkout-steps-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.checkout-step { display: flex; align-items: center; gap: 8px; }
.checkout-step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.checkout-step-num.active { background: var(--black); color: #fff; }
.checkout-step-num.done { background: var(--grey); color: #fff; }
.checkout-step-num.inactive { border: 2px solid var(--grey-md); color: var(--grey); }
.checkout-step-text { font-size: 13px; }
.checkout-step-text.active { font-weight: 600; }
.checkout-step-text.inactive { opacity: 0.4; }
.checkout-line { width: 60px; height: 1px; background: var(--grey-md); margin: 0 16px; }

/* ╔══════════════════════════════════════════╗
   ║  WOOCOMMERCE — CHECKOUT                  ║
   ╚══════════════════════════════════════════╝ */

.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; padding: 48px 0; }
.checkout-section { background: #fff; border: 1px solid var(--grey-md); border-radius: var(--radius); margin-bottom: 24px; overflow: hidden; }
.checkout-section-header { padding: 20px 24px; border-bottom: 1px solid var(--grey-md); display: flex; align-items: center; justify-content: space-between; background: var(--grey-lt); }
.checkout-section-header h2 { font-size: 14px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.step-num { width: 26px; height: 26px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.checkout-section-body { padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-option { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1.5px solid var(--grey-md); border-radius: var(--radius); margin-bottom: 10px; cursor: pointer; transition: border-color var(--transition); }
.payment-option:hover { border-color: var(--black); }
.payment-option.active { border-color: var(--black); background: var(--grey-lt); }
.payment-logo { width: 48px; height: 28px; background: var(--grey-md); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--grey); flex-shrink: 0; }
.payment-option-name { font-size: 14px; font-weight: 600; }
.payment-option-desc { font-size: 12px; color: var(--grey); margin-top: 2px; }
.delivery-option { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1.5px solid var(--grey-md); border-radius: var(--radius); margin-bottom: 10px; cursor: pointer; transition: border-color var(--transition); }
.delivery-option.active { border-color: var(--black); background: var(--grey-lt); }
.order-summary { background: var(--grey-lt); border: 1px solid var(--grey-md); border-radius: var(--radius); padding: 28px; position: sticky; top: calc(var(--nav-h) + 24px); }
.order-summary h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 24px; }
.order-item { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--grey-md); }
.order-item:last-of-type { border-bottom: none; }
.order-item-img { width: 56px; height: 56px; background: var(--grey-md); border-radius: var(--radius); overflow: hidden; flex-shrink: 0; position: relative; }
.order-item-qty { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; background: var(--grey); color: #fff; border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.order-item-name { font-size: 13px; font-weight: 600; line-height: 1.3; }
.order-item-variant { font-size: 11px; color: var(--grey); margin-top: 3px; }
.order-item-price { font-size: 14px; font-weight: 700; align-self: center; }
.order-totals { margin-top: 20px; border-top: 1px solid var(--grey-md); padding-top: 16px; }
.order-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.order-row.total { font-weight: 700; font-size: 18px; border-top: 2px solid var(--black); padding-top: 14px; margin-top: 6px; }
.order-row .lbl { color: var(--grey); }
.order-row.total .lbl { color: var(--black); font-weight: 700; }

/* ╔══════════════════════════════════════════╗
   ║  WOOCOMMERCE — BEVESTIGING               ║
   ╚══════════════════════════════════════════╝ */

.confirm-icon { width: 72px; height: 72px; background: #27ae60; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 24px; }
.confirm-icon svg { width: 36px; height: 36px; fill: none; stroke: #fff; stroke-width: 2.5; }
.order-card { background: #fff; border: 1px solid var(--grey-md); border-radius: var(--radius); overflow: hidden; }
.order-card-header { background: var(--black); color: #fff; padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; }
.order-card-body { padding: 28px; }
.order-detail-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--grey-md); font-size: 14px; }
.order-detail-row:last-child { border-bottom: none; }
.order-detail-row .lbl { color: var(--grey); }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.next-step { text-align: center; padding: 28px 20px; background: #fff; border: 1px solid var(--grey-md); border-radius: var(--radius); }
.next-step-icon { width: 48px; height: 48px; background: var(--grey-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 14px; }
.next-step-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--bronze); stroke-width: 1.8; }

/* ╔══════════════════════════════════════════╗
   ║  WOOCOMMERCE — PRODUCT DETAIL            ║
   ╚══════════════════════════════════════════╝ */

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 48px 0; }
.gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.gallery-main { aspect-ratio: 1; background: var(--grey-lt); border: 1px solid var(--grey-md); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb { width: 72px; height: 72px; background: var(--grey-lt); border: 2px solid transparent; border-radius: var(--radius); cursor: pointer; overflow: hidden; flex-shrink: 0; transition: border-color var(--transition); }
.gallery-thumb.active { border-color: var(--black); }
.gallery-thumb:hover { border-color: var(--grey); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.product-title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 32px); font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.product-price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.product-price-current { font-size: 28px; font-weight: 700; }
.product-price-old { font-size: 18px; color: var(--grey); text-decoration: line-through; }
.product-price-note { font-size: 12px; color: var(--grey); }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.stock-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #27ae60; }
.stock-badge.low::before { background: #e67e22; }
.option-group { margin-bottom: 24px; }
.option-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; color: var(--grey-dk); }
.option-label span { font-weight: 400; color: var(--grey); text-transform: none; letter-spacing: 0; }
.option-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn { padding: 9px 18px; border: 1.5px solid var(--grey-md); border-radius: var(--radius); font-size: 13px; font-family: var(--font-body); cursor: pointer; background: transparent; transition: border-color var(--transition), background var(--transition), color var(--transition); }
.option-btn:hover { border-color: var(--black); }
.option-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }
.option-btn.disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.qty-wrapper { display: flex; align-items: center; width: fit-content; border: 1.5px solid var(--grey-md); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 44px; height: 50px; border: none; background: transparent; font-size: 20px; font-weight: 300; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.qty-btn:hover { background: var(--grey-lt); }
.qty-input { width: 60px; height: 50px; border: none; border-left: 1.5px solid var(--grey-md); border-right: 1.5px solid var(--grey-md); text-align: center; font-size: 16px; font-weight: 600; font-family: var(--font-body); outline: none; background: transparent; }
.product-cta { display: flex; gap: 12px; margin-top: 24px; }
.length-input-wrap { display: flex; align-items: center; gap: 10px; }
.length-input { width: 120px; padding: 12px 14px; border: 1.5px solid var(--grey-md); border-radius: var(--radius); font-size: 16px; font-weight: 600; font-family: var(--font-body); outline: none; transition: border-color var(--transition); }
.length-input:focus { border-color: var(--black); }
.info-tabs { border-top: 1px solid var(--grey-md); margin-top: 40px; }
.info-tab-btns { display: flex; }
.info-tab-btn { padding: 16px 24px; border: none; border-bottom: 2px solid transparent; background: none; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: border-color var(--transition), color var(--transition); color: var(--grey); }
.info-tab-btn.active { border-bottom-color: var(--black); color: var(--black); }
.info-tab-content { padding: 28px 0; display: none; }
.info-tab-content.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--grey-md); }
.spec-table td { padding: 12px 8px; }
.spec-table td:first-child { font-weight: 600; width: 40%; color: var(--grey-dk); }
.product-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--grey-md); padding: 12px 16px; z-index: 900; gap: 12px; align-items: center; box-shadow: 0 -4px 16px rgba(0,0,0,0.08); }
.product-sticky-cta p { font-size: 18px; font-weight: 700; flex: 1; }

/* ╔══════════════════════════════════════════╗
   ║  WOOCOMMERCE — ARCHIEF/CATEGORIE         ║
   ╚══════════════════════════════════════════╝ */

.shop-filter-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--grey-md); margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill { padding: 7px 14px; border: 1.5px solid var(--grey-md); border-radius: 50px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all var(--transition); background: transparent; font-family: var(--font-body); }
.filter-pill:hover { border-color: var(--black); }
.filter-pill.active { background: var(--black); color: var(--white); border-color: var(--black); }
.sort-select { padding: 8px 12px; border: 1.5px solid var(--grey-md); border-radius: var(--radius); font-size: 13px; font-family: var(--font-body); outline: none; cursor: pointer; }

/* ╔══════════════════════════════════════════╗
   ║  WOOCOMMERCE CORE OVERRIDES              ║
   ╚══════════════════════════════════════════╝ */

.woocommerce-notices-wrapper { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.woocommerce-message, .woocommerce-error, .woocommerce-info { padding: 14px 20px; margin: 16px 0; border-radius: var(--radius); font-size: 14px; list-style: none; }
.woocommerce-message { background: #d4edda; border-left: 3px solid #27ae60; color: #155724; }
.woocommerce-error { background: #f8d7da; border-left: 3px solid #c0392b; color: #721c24; }
.woocommerce-info { background: #d1ecf1; border-left: 3px solid #17a2b8; color: #0c5460; }
.woocommerce-error li { list-style: none; }

/* Review-badge — terugkerende link naar klantervaringen pagina */
.lm-review-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #fff;                   /* donkere achtergrond: witte tekst */
    transition: color 0.18s;
    line-height: 1;
}
.lm-review-link:hover { color: rgba(255,255,255,0.75); }
.lm-review-link .lm-stars {
    color: #f59e0b;                /* oranje sterren — leesbaar op élke achtergrond */
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1;
}
.lm-review-link .lm-arrow { opacity: 0.55; transition: opacity 0.18s, transform 0.18s; }
.lm-review-link:hover .lm-arrow { opacity: 1; transform: translateX(3px); }
/* Lichte variant (witte/lichte achtergrond) */
.lm-review-link--light { color: #1a1a1a; }
.lm-review-link--light:hover { color: #444; }

/* WooCommerce knoppen — overschrijf de standaard paarse kleur */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.disabled,
.woocommerce button.button:disabled {
    background-color: var(--black) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius) !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 12px 24px !important;
    cursor: pointer !important;
    transition: background 0.22s !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
    background-color: #2a2a2a !important;
    color: #fff !important;
}
/* Toevoegen aan winkelwagen op productpagina — brons als primaire CTA */
.woocommerce .single_add_to_cart_button.button {
    background-color: var(--bronze) !important;
    color: #fff !important;
    width: 100% !important;
    padding: 16px 40px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.woocommerce .single_add_to_cart_button.button:hover {
    background-color: var(--bronze-dk) !important;
}

/* ╔══════════════════════════════════════════╗
   ║  RESPONSIVE BREAKPOINTS                  ║
   ╚══════════════════════════════════════════╝ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr !important; gap: 32px !important; }
  .grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .gallery { position: static; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .usp-bar-inner { gap: 18px; justify-content: flex-start; }
  .usp-item { font-size: 12px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .btn-lg { padding: 13px 24px; font-size: 13px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .product-sticky-cta { display: flex; }
  body.single-product { padding-bottom: 72px; }
  .product-cta { display: none; }
  .gallery-thumbs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .info-tab-btns { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .info-tab-btn { white-space: nowrap; flex-shrink: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .next-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cart-table thead { display: none; }
  .cart-table tbody tr { display: flex; flex-wrap: wrap; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--grey-md); align-items: flex-start; }
  .cart-table td { border: none; padding: 0; }
  .cart-table td:first-child { width: 100%; }
  .cart-table td:nth-child(2), .cart-table td:nth-child(3), .cart-table td:nth-child(4) { flex: 1; }
  .cart-table td:last-child { text-align: right; }
  .form-grid { grid-template-columns: 1fr; }
  .checkout-step-text { display: none; }
  .checkout-line { width: 24px; }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr !important; gap: 20px !important; }
  .grid-4 { grid-template-columns: 1fr !important; }
  .grid-2-2 { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .container { padding-inline: 16px; }
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 26px; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form .btn { width: 100%; justify-content: center; }
  .contact-channel { flex-direction: column; gap: 12px; }
  .checkout-section-body { padding: 20px 16px; }
  .checkout-section-header { padding: 16px; }
  .option-btns { gap: 6px; }
  .option-btn { padding: 7px 12px; font-size: 12px; }
}
