/* ================================================
   Distribuidor365 Design System
   Plain CSS — No SCSS
   ================================================ */

/* ---- Design Tokens ---- */
:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --border: #e4e2dc;
  --text: #1c1c1a;
  --text-2: #6b6b65;
  --text-3: #9e9d97;
  --green: #2a5c3f;
  --green-light: #3a7a55;
  --green-pale: #edf4f0;
  --red: #d94f3d;
  --amber: #b45309;
  --amber-pale: #fef3c7;
  --amber-border: #fcd34d;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --header-height: 64px;
  --nav-height: 44px;
  --sticky-offset: calc(var(--header-height) + var(--nav-height) + 12px); /* 120px — used for sticky sidebar/gallery top */

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-2xl: 12px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);

  --transition-fast: 0.12s ease;
  --transition-base: 0.15s ease;
  --transition-slow: 0.3s ease;
}

/* ---- Classic Theme Accent Overrides ---- */
body a:hover,
body a:focus {
  color: var(--green);
}

#header a:hover,
#header a:focus {
  color: var(--green);
}

body .btn-primary,
body .btn-primary:hover,
body .btn-primary:focus,
body .btn-primary:active {
  border-color: var(--green);
  box-shadow: none;
}

body .btn-primary:focus,
body .btn-primary:active,
body .btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

body .text-primary,
body a.text-primary:hover,
body a.text-primary:focus {
  color: var(--green);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 32px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }

/* ---- Typography ---- */
.font-heading { font-family: var(--font-heading); }
h1, .h1 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
h2, .h2 { font-family: var(--font-heading); font-size: clamp(22px, 2.5vw, 26px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
h3, .h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 5px;
}

/* ---- Topbar ---- */
#topbar {
  background: var(--green);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 8px 0;
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.topbar-inner span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-inner svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ---- Header ---- */
#header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: none !important; /* Classic parent applies '0 2px 5px 0 rgba(0,0,0,.11)' to header#header — override it */
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo span { color: var(--green); }

.header-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%;
  height: 38px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 36px 0 14px;
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition-base);
}
.header-search input::placeholder { color: var(--text-3); }
.header-search input:focus { border-color: var(--green); }
.header-search svg {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-3);
  pointer-events: none;
}
.header-nav{
  border-bottom: solid 0px !important;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.h-btn {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: none;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  white-space: nowrap;
  position: relative; /* needed for .count badge absolute positioning */
}
.h-btn:hover {
  background: var(--bg);
  color: var(--text);
}
.h-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.h-btn .count {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-btn--outline {
  border-color: var(--border);
  color: var(--text);
}
.h-btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

/* ---- Main Nav ---- */
#main-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 101; /* creates a stacking context ABOVE the sticky header (100),
                   so .mega-menu (absolute child) always paints over the header */
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}
.nav-item {
  /* No position:relative here — .mega-menu is positioned relative to #main-nav */
  display: flex;
  align-items: center; /* vertically centre the nav-link inside the nav bar */
}
.nav-link {
  display: flex !important;
  align-items: center;  
  gap: 4px;
  padding: 0 16px;
  height: var(--nav-height);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
  white-space: nowrap;
}
.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--text);
  border-color: var(--green);
}
.nav-link svg { width: 10px; height: 10px; color: var(--text-3); transition: transform var(--transition-base); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.nav-badge {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}

/* ---- Mega Menu ---- */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--surface);
  border-top: 2px solid var(--green);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  animation: fadeDown 0.16s ease;
  overflow: hidden;
}
.nav-item:hover .mega-menu { display: flex; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-img {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.mega-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.85);
  transition: transform 0.4s ease;
}
.nav-item:hover .mega-img img { transform: scale(1.04); }
.mega-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(28,28,26,0.72) 0%, transparent 100%);
}
.mega-img-label span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.2;
}
.mega-img-label small {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-top: 3px;
  display: block;
}

.mega-body {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 32px 40px;
}
.mega-col {
  flex: 0 0 auto;          /* don't grow/shrink; columns are all same width */
  width: 200px;
  padding-right: 28px;
  border-right: 1px solid var(--border);
  margin-right: 28px;
  margin-bottom: 20px;
}
.mega-col:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.mega-col ul a {
  display: block;
  padding: 7px 10px;
  font-size: 13.5px;
  color: var(--text-2);
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}
.mega-col ul a:hover {
  background: var(--bg);
  color: var(--green);
  padding-left: 14px;
}

.mega-promo {
  width: 200px;
  flex-shrink: 0;
  background: var(--green-pale);
  border-left: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}
.mega-promo-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.mega-promo p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.mega-promo a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 16px;
  transition: gap var(--transition-fast);
}
.mega-promo a:hover { gap: 9px; }

/* ---- Breadcrumb ---- */
#breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 11px 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-inner a,
.breadcrumb-inner span { font-size: 12.5px; color: var(--text-3); }
.breadcrumb-inner a:hover { color: var(--green); }
.breadcrumb-inner .sep { color: var(--border); }
.breadcrumb-inner .current { color: var(--text-2); font-weight: 500; }

/* ---- Hero ---- */
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero h1 { margin-bottom: 16px; }
.hero h1 span { color: var(--green); }
.hero p { font-size: 15px; color: var(--text-2); line-height: 1.75; max-width: 420px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 10px; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.s-num { font-family: var(--font-heading); font-size: 24px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--text); }
.s-label { font-size: 11.5px; color: var(--text-3); margin-top: 3px; }

.hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 16px;
  transition: border-color var(--transition-base), background var(--transition-base);
  cursor: pointer;
}
.hero-tile:hover { border-color: var(--green); background: var(--green-pale); }
.hero-tile--wide { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; }
.tile-label { font-weight: 600; font-size: 13.5px; color: var(--text); }
.tile-sub { font-size: 12px; color: var(--text-3); margin-top: 3px; }
.tile-arrow { color: var(--text-3); font-size: 18px; }

/* ---- Buttons ---- */
.btn-primary {
  height: 42px;
  padding: 0 22px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition-base);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green-light); }
.btn-secondary {
  height: 42px;
  padding: 0 22px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: border-color var(--transition-base), color var(--transition-base);
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--text-2); }
.btn-add {
  height: 29px;
  padding: 0 11px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(42, 92, 63, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  white-space: nowrap;
}
.btn-add:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ---- Trust Bar ---- */
.trust-bar { background: var(--green); padding: 20px 0; }
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; color: #fff; }
.trust-title { font-size: 13px; font-weight: 600; color: #fff; }
.trust-desc { font-size: 11.5px; color: rgba(255, 255, 255, 0.6); margin-top: 1px; }

/* ---- Section ---- */
.section { max-width: var(--max-width); margin: 0 auto; padding: 56px 32px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; }
.section-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.section-more { font-size: 13px; font-weight: 500; color: var(--green); display: flex; align-items: center; gap: 4px; transition: gap var(--transition-base); }
.section-more:hover { gap: 8px; }
.section-more svg { width: 14px; height: 14px; }

/* ---- Category Cards ---- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.cat-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card:hover .cat-thumb { transform: scale(1.04); }
.cat-thumb { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(0.85); transition: transform var(--transition-slow); }
.cat-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 26, 0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 12px;
}
.cat-name { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; line-height: 1.3; }
.cat-sub { font-size: 10.5px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }
.cat-card--solid { background: var(--green); display: flex; align-items: center; justify-content: center; }
.cat-card--solid .cat-body { background: none; position: static; }

/* ---- Product Cards ---- */
.prod-grid { display: grid; gap: 10px; }
.prod-grid--6 { grid-template-columns: repeat(6, 1fr); }
.prod-grid--5 { grid-template-columns: repeat(5, 1fr); }
.prod-grid--4 { grid-template-columns: repeat(4, 1fr); }
.prod-grid--3 { grid-template-columns: repeat(3, 1fr); }

.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.prod-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.prod-thumb { aspect-ratio: 1; overflow: hidden; background: var(--bg); position: relative; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.prod-card:hover .prod-thumb img { transform: scale(1.04); }

.prod-badge-wrap { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.prod-badge { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-sm); display: inline-block; }
.prod-badge--new { background: var(--green); color: #fff; }
.prod-badge--sale { background: var(--red); color: #fff; }
.prod-badge--out { background: rgba(28, 28, 26, 0.55); color: #fff; }
.prod-badge--info { background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); color: var(--text); border: 1px solid var(--border); }

.prod-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}
.prod-card:hover .prod-wishlist { opacity: 1; }
.prod-wishlist:hover { background: #fff; border-color: var(--red); }
.prod-wishlist svg { width: 13px; height: 13px; color: var(--text-2); }
.prod-wishlist:hover svg { color: var(--red); }
.prod-wishlist.is-active { opacity: 1; }
.prod-wishlist.is-active svg { color: var(--red); fill: var(--red); }

.prod-body { padding: 13px 12px 14px; }
.prod-brand { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.prod-name { font-size: 12.5px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 10px; display: block; }
.prod-name:hover { color: var(--green); }
.prod-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 10px; }
.prod-stars svg { width: 11px; height: 11px; }
.prod-stars .filled { color: #f59e0b; fill: #f59e0b; }
.prod-stars .empty { color: var(--border); fill: var(--border); }
.prod-stars span { font-size: 11px; color: var(--text-3); margin-left: 2px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price-block { display: flex; flex-direction: column; }
.prod-price { font-family: var(--font-heading); font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.prod-price-from { font-size: 10px; color: var(--text-3); margin-bottom: 1px; }

.prod-price--large { font-family: var(--font-heading); font-size: 36px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.prod-price-old { font-size: 18px; color: var(--text-3); text-decoration: line-through; }
.prod-price-save { font-size: 12px; font-weight: 700; color: var(--red); background: #fef2f2; border: 1px solid #fecaca; padding: 2px 8px; border-radius: var(--radius-sm); }
.prod-price-note { font-size: 12px; color: var(--text-3); }

/* ---- About Section ---- */
.about-wrap { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner { max-width: var(--max-width); margin: 0 auto; padding: 72px 32px; display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
.about-img { aspect-ratio: 4/5; border-radius: var(--radius-2xl); overflow: hidden; background: var(--bg); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); }
.about-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.about-pill strong { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--green); display: block; letter-spacing: -0.03em; }
.about-pill span { font-size: 11px; color: var(--text-3); }
.about-text p { font-size: 14.5px; color: var(--text-2); line-height: 1.78; margin-bottom: 14px; }
.about-text .section-title { font-size: 26px; margin-bottom: 14px; } /* larger than default 22px, per mockup */
.about-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 22px 0 26px; }
.about-list li { font-size: 13.5px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.about-list li::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ---- Newsletter ---- */
.nl-wrap { background: var(--bg); border-bottom: 1px solid var(--border); }
.nl-inner { max-width: 520px; margin: 0 auto; padding: 72px 32px; text-align: center; }
.nl-inner h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); margin-bottom: 10px; }
.nl-inner p { color: var(--text-2); font-size: 14px; margin-bottom: 24px; }
.nl-form { display: flex; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.nl-form input { flex: 1; border: none; padding: 12px 14px; font-size: 14px; color: var(--text); outline: none; background: transparent; }
.nl-form input::placeholder { color: var(--text-3); }
.nl-form button { background: var(--green); color: #fff; border: none; padding: 12px 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background var(--transition-base); white-space: nowrap; }
.nl-form button:hover { background: var(--green-light); }
.nl-note { font-size: 11.5px; color: var(--text-3); margin-top: 12px; }

/* ---- Footer ---- */
footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-top { max-width: var(--max-width); margin: 0 auto; padding: 52px 32px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand .logo { display: block; margin-bottom: 12px; }
.foot-brand p { font-size: 13px; color: var(--text-2); line-height: 1.75; max-width: 240px; margin-bottom: 16px; }
.foot-brand .contact { font-size: 13px; color: var(--text-2); }
.foot-brand .contact a { color: var(--green); font-weight: 500; }
.foot-col h5 { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-col ul a { font-size: 13.5px; color: var(--text-2); transition: color var(--transition-fast); }
.foot-col ul a:hover { color: var(--green); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding: 18px 32px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-legal { font-size: 11.5px; color: var(--text-3); line-height: 1.6; max-width: 580px; }
.lang-row { display: flex; gap: 4px; }
.lang-btn { height: 27px; padding: 0 9px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast); }
.lang-btn:hover, .lang-btn.active { color: var(--green); border-color: var(--green); background: var(--green-pale); }

/* ---- Category Banner ---- */
.cat-banner { position: relative; height: 320px; overflow: hidden; background: var(--green); }
.cat-banner--solid { background: var(--green); }
.cat-banner--solid .cat-banner-overlay { background: linear-gradient(to right, rgba(13,28,18,0.85) 0%, rgba(13,28,18,0.6) 100%); }
.cat-banner-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.7); display: block; }
.cat-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,28,18,0.75) 0%, rgba(13,28,18,0.2) 60%, transparent 100%); display: flex; align-items: flex-end; }
.cat-banner-content { max-width: var(--max-width); margin: 0 auto; padding: 0 32px 40px; width: 100%; }
.cat-banner-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.cat-banner-title { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 10px; }
.cat-banner-desc { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 480px; line-height: 1.65; }
.cat-banner-count { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.1); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 4px 12px; }

/* ---- Subcategory Pills ---- */
.subcat-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.subcat-inner { max-width: var(--max-width); margin: 0 auto; padding: 28px 32px; }
.subcat-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.subcat-pills { display: flex; gap: 20px; flex-wrap: wrap; }
.subcat-pill { display: flex; flex-direction: column; align-items: center; gap: 9px; cursor: pointer; text-decoration: none; }
.subcat-circle { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 2px solid var(--border); background: var(--bg); transition: border-color var(--transition-base), transform 0.18s, box-shadow 0.18s; flex-shrink: 0; }
.subcat-circle img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: transform var(--transition-slow), filter var(--transition-fast); }
.subcat-pill:hover .subcat-circle { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(42,92,63,0.18); }
.subcat-pill:hover .subcat-circle img { filter: saturate(1); }
.subcat-pill.active .subcat-circle { border-color: var(--green); border-width: 2.5px; box-shadow: 0 0 0 3px var(--green-pale); }
.subcat-pill.active .subcat-circle img { filter: saturate(1); }
.subcat-name { font-size: 11.5px; font-weight: 500; color: var(--text-2); text-align: center; line-height: 1.3; max-width: 72px; transition: color var(--transition-fast); }
.subcat-pill:hover .subcat-name, .subcat-pill.active .subcat-name { color: var(--green); font-weight: 600; }

/* ---- Category Body ---- */
.category-body { max-width: var(--max-width); margin: 0 auto; padding: 32px 32px 64px; display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }

/* ---- Filter Sidebar ---- */
.sidebar { display: flex; flex-direction: column; gap: 0; position: sticky; top: var(--sticky-offset); }
.filter-block { background: var(--surface); border: 1px solid var(--border); border-bottom: none; overflow: hidden; }
.filter-block:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.filter-block:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.filter-block:only-child { border-radius: var(--radius-lg); border-bottom: 1px solid var(--border); }
.filter-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; cursor: pointer; user-select: none; border-bottom: 1px solid var(--border); }
.filter-head h4 { font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 0px; }
.filter-head svg { width: 14px; height: 14px; color: var(--text-3); transition: transform 0.2s; flex-shrink: 0; }
.filter-block.open .filter-head svg { transform: rotate(180deg); }
.filter-body { padding: 14px 16px; display: none; }
.filter-block.open .filter-body { display: block; }
.filter-options { display: flex; flex-direction: column; gap: 1px; }
.filter-opt { display: flex; align-items: center; gap: 9px; padding: 6px 8px; border-radius: var(--radius-sm); cursor: pointer; transition: background var(--transition-fast); }
.filter-opt:hover { background: var(--bg); }
.filter-opt.checked .filter-check { background: var(--green); border-color: var(--green); }
.filter-check { width: 15px; height: 15px; border: 1.5px solid var(--border); border-radius: 3px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background var(--transition-fast), border-color var(--transition-fast); }
.filter-check input { position: absolute; opacity: 0; pointer-events: none; }
.filter-check svg { width: 9px; height: 9px; color: #fff; display: none; }
.filter-opt.checked .filter-check svg { display: block; }
.filter-opt-label { font-size: 13px; color: var(--text-2); flex: 1; }
.filter-opt.checked .filter-opt-label { color: var(--text); font-weight: 500; }
.filter-opt-count { font-size: 11px; color: var(--text-3); }
.search-filters-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; padding: 0 2px; }
.search-filters-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.filter-head { width: 100%; background: none; border-left: none; border-right: none; border-top: none; text-align: left; }
.search-filters-clear { border: none; background: none; color: var(--green); font-size: 12px; font-weight: 600; cursor: pointer; padding: 0; }
.active-filters { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; margin: 0 0 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.active-filters.hide { display: none; }
.active-filters-list { display: flex; flex-wrap: wrap; gap: 8px; }
.active-filters-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); flex-shrink: 0; }
.active-filter-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; background: var(--bg); border: 1px solid var(--border); color: var(--text-2); text-decoration: none; font-size: 12px; }
.active-filter-chip:hover { color: var(--green); border-color: color-mix(in srgb, var(--green) 35%, var(--border)); }
.active-filter-chip svg { width: 12px; height: 12px; }
.active-filters-clear { border: none; background: none; color: var(--green); font-size: 12px; font-weight: 600; cursor: pointer; padding: 0; flex-shrink: 0; }

.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-input-wrap { position: relative; }
.price-input-wrap span { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--text-3); }
.price-input-wrap input { width: 100%; height: 34px; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 8px 0 22px; font-size: 13px; color: var(--text); outline: none; background: var(--bg); }
.price-input-wrap input:focus { border-color: var(--green); background: var(--surface); }
.filter-clear { font-size: 12px; font-weight: 500; color: var(--green); background: none; border: none; padding: 0; cursor: pointer; margin-top: 2px; }
.filter-clear:hover { text-decoration: underline; }

.active-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.active-filter-tag { display: flex; align-items: center; gap: 5px; background: var(--green-pale); border: 1px solid rgba(42,92,63,0.2); border-radius: 20px; padding: 3px 10px; font-size: 12px; font-weight: 500; color: var(--green); cursor: pointer; transition: background var(--transition-fast); }
.active-filter-tag:hover { background: #d4e9dc; }
.active-filter-tag svg { width: 11px; height: 11px; }
.clear-all { font-size: 12px; font-weight: 500; color: var(--text-3); background: none; border: none; padding: 3px 8px; cursor: pointer; }
.clear-all:hover { color: var(--red); }

/* ---- Toolbar ---- */
.products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.toolbar-count { font-size: 13px; color: var(--text-2); }
.toolbar-count strong { color: var(--text); font-weight: 600; }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select { height: 36px; padding: 0 32px 0 12px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239e9d97' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center; font-size: 13px; color: var(--text); outline: none; cursor: pointer; appearance: none; transition: border-color var(--transition-base); }
.sort-select:focus { border-color: var(--green); }
.grid-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.grid-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: none; color: var(--text-3); cursor: pointer; transition: background var(--transition-fast), color var(--transition-fast); }
.grid-btn:not(:last-child) { border-right: 1px solid var(--border); }
.grid-btn.active, .grid-btn:hover { background: var(--bg); color: var(--text); }
.grid-btn svg { width: 15px; height: 15px; }

/* ---- Pagination ---- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; padding-top: 40px; }
.page-btn { min-width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); font-size: 13px; font-weight: 500; color: var(--text-2); cursor: pointer; transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast); }
.page-btn:hover { border-color: var(--green); color: var(--green); }
.page-btn.active { background: var(--green); border-color: var(--green); color: #fff; font-weight: 600; }
.page-btn--arrow { color: var(--text-3); }
.page-btn--arrow:hover { color: var(--green); }
.page-btn svg { width: 14px; height: 14px; }
.page-sep { font-size: 13px; color: var(--text-3); padding: 0 4px; }

/* ---- Product Page ---- */
.product-wrap { max-width: var(--max-width); margin: 0 auto; padding: 40px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-gallery { position: sticky; top: var(--sticky-offset); }
.product-info { display: flex; flex-direction: column; gap: 0; }

.gallery-main { aspect-ratio: 1; border-radius: var(--radius-2xl); overflow: hidden; background: var(--surface); border: 1px solid var(--border); position: relative; margin-bottom: 10px; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-main:hover img { transform: scale(1.05); }
.gallery-badge { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; }
.g-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-sm); }
.g-badge--green { background: var(--green); color: #fff; }
.g-badge--amber { background: var(--amber-pale); color: var(--amber); border: 1px solid var(--amber-border); }

.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.thumb { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid transparent; cursor: pointer; background: var(--surface); transition: border-color var(--transition-fast); }
.thumb.active { border-color: var(--green); }
.thumb:hover { border-color: var(--border); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.p-category { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.p-title { font-family: var(--font-heading); font-size: 32px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); line-height: 1.1; margin-bottom: 14px; }
.p-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.p-stars { display: flex; align-items: center; gap: 4px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; }
.stars .filled { color: #f59e0b; fill: #f59e0b; }
.stars .empty { color: var(--border); fill: var(--border); }
.p-rating-val { font-size: 13px; font-weight: 600; color: var(--text); }
.p-rating-count { font-size: 12.5px; color: var(--text-3); }
.p-sku { font-size: 12px; color: var(--text-3); padding-left: 14px; border-left: 1px solid var(--border); }
.p-divider { height: 1px; background: var(--border); margin: 20px 0; }

.p-price-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.p-price-note { font-size: 12px; color: var(--text-3); margin-bottom: 20px; }

.p-section-label { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.p-section-label span { font-weight: 400; color: var(--text-3); }

.variant-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.variant-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; background: var(--surface); border-bottom: 1px solid var(--border); cursor: pointer; transition: background var(--transition-fast); gap: 12px; }
.variant-row:last-child { border-bottom: none; }
.variant-row:hover { background: var(--bg); }
.variant-row.active { background: var(--green-pale); }
.variant-row.out { opacity: 0.45; cursor: not-allowed; }
.variant-row-left { display: flex; align-items: center; gap: 10px; }
.variant-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color var(--transition-fast); }
.variant-row.active .variant-radio { border-color: var(--green); }
.variant-radio-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); opacity: 0; transition: opacity var(--transition-fast); }
.variant-row.active .variant-radio-dot { opacity: 1; }
.variant-name { font-size: 13.5px; font-weight: 500; color: var(--text); }
.variant-row.active .variant-name { font-weight: 600; color: var(--green); }
.variant-row.out .variant-name { text-decoration: line-through; }
.variant-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--green-pale); color: var(--green); border-radius: 3px; padding: 1px 6px; }
.variant-row.out .variant-tag { background: var(--bg); color: var(--text-3); }
.variant-price { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; white-space: nowrap; }
.variant-row.active .variant-price { color: var(--green); }
.variant-row.out .variant-price { color: var(--text-3); }

.p-actions { display: grid; grid-template-columns: 120px 1fr; gap: 10px; margin-bottom: 14px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; background: var(--surface); }
.qty-btn { width: 36px; height: 46px; border: none; background: none; font-size: 18px; color: var(--text-2); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition-fast), color var(--transition-fast); flex-shrink: 0; }
.qty-btn:hover { background: var(--bg); color: var(--text); }
.qty-val { flex: 1; text-align: center; font-size: 14px; font-weight: 600; color: var(--text); border: none; outline: none; background: none; }
.btn-cart { height: 46px; background: var(--green); color: #fff; border: none; border-radius: 7px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background var(--transition-base), transform var(--transition-fast); }
.btn-cart:hover { background: var(--green-light); }
.btn-cart:active { transform: scale(0.98); }
.btn-cart svg { width: 18px; height: 18px; }
.btn-wishlist { width: 100%; height: 42px; background: transparent; border: 1px solid var(--border); border-radius: 7px; font-size: 13px; font-weight: 500; color: var(--text-2); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base); margin-bottom: 20px; }
.btn-wishlist:hover { border-color: var(--red); color: var(--red); background: #fef2f2; }
.btn-wishlist svg { width: 16px; height: 16px; }

.delivery-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.delivery-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; }
.delivery-card svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.delivery-card strong { font-size: 12.5px; font-weight: 600; color: var(--text); display: block; }
.delivery-card span { font-size: 11.5px; color: var(--text-3); }

.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text-2); background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 4px 10px; }
.trust-pill svg { width: 12px; height: 12px; color: var(--green); }

/* ---- Tabs ---- */
.tabs-wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 32px 60px; }
.tabs-nav { display: flex; border-bottom: 1px solid var(--border); }
.tab-btn { padding: 14px 22px; font-size: 13.5px; font-weight: 500; color: var(--text-3); border: none; background: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color var(--transition-base), border-color var(--transition-base); white-space: nowrap; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); font-weight: 600; }
.tab-pane { display: none; padding: 36px 0; }
.tab-pane.active { display: block; }

.desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.desc-text p { font-size: 14.5px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.desc-text p:last-child { margin-bottom: 0; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 12px 0; font-size: 13.5px; }
.specs-table td:first-child { font-weight: 600; color: var(--text); width: 40%; }
.specs-table td:last-child { color: var(--text-2); }
.spec-tag { display: inline-block; background: var(--green-pale); color: var(--green); font-size: 11.5px; font-weight: 600; padding: 2px 8px; border-radius: var(--radius-sm); margin-right: 4px; }

.reviews-header { display: flex; align-items: center; gap: 32px; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.reviews-score { text-align: center; }
.reviews-score .big { font-family: var(--font-heading); font-size: 56px; font-weight: 700; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.reviews-score .out-of { font-size: 13px; color: var(--text-3); margin-top: 4px; }
.reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-2); }
.bar-row .label { width: 40px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--green); border-radius: 3px; }
.bar-row .count { width: 20px; flex-shrink: 0; color: var(--text-3); }

.review-list { display: flex; flex-direction: column; }
.review-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--green); flex-shrink: 0; }
.reviewer-name { font-weight: 600; font-size: 13.5px; color: var(--text); }
.reviewer-date { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.review-stars { display: flex; gap: 2px; margin-left: auto; }
.review-stars svg { width: 13px; height: 13px; color: #f59e0b; fill: #f59e0b; }
.review-text { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
.review-verified { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.review-verified svg { width: 11px; height: 11px; }

/* ---- Related Products ---- */
.related-wrap { background: var(--surface); border-top: 1px solid var(--border); }
.related-inner { max-width: var(--max-width); margin: 0 auto; padding: 56px 32px; }

/* ──────────────────────────────────────────────────────
   CART PAGE
   ────────────────────────────────────────────────────── */
.cart-wrap { max-width: var(--max-width); margin: 0 auto; padding: 40px 32px 72px; display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }

.cart-title-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.cart-page-title { font-family: var(--font-heading); font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
.cart-page-count { font-size: 14px; color: var(--text-3); font-weight: 400; }

.cart-items { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 18px; padding: 20px 22px; border-bottom: 1px solid var(--border); align-items: center; transition: background 0.12s; }
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #fdfcfb; }

.cart-item-img { width: 88px; height: 88px; border-radius: 8px; overflow: hidden; background: var(--bg); border: 1px solid var(--border); flex-shrink: 0; display: block; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-brand { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 5px; display: block; transition: color 0.12s; }
.cart-item-name:hover { color: var(--green); }
.cart-item-variant { font-size: 12px; color: var(--text-3); margin-bottom: 12px; }

.cart-item-actions { display: flex; align-items: center; gap: 12px; }
.cart-qty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; height: 32px; }
.cart-qty-btn { width: 30px; height: 100%; border: none; background: none; font-size: 16px; color: var(--text-2); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.12s, color 0.12s; text-decoration: none; }
.cart-qty-btn:hover { background: var(--bg); color: var(--text); }
.cart-qty-val { width: 34px; text-align: center; font-size: 13.5px; font-weight: 600; color: var(--text); }
.cart-btn-remove { background: none; color: var(--text-3); cursor: pointer; padding: 4px; border-radius: 4px; display: flex; align-items: center; transition: color 0.12s, background 0.12s; border: none; }
.cart-btn-remove svg { width: 15px; height: 15px; }
.cart-btn-remove:hover { color: var(--red); background: var(--red-pale); }

.cart-item-right { text-align: right; }
.cart-item-price { font-family: var(--font-heading); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.cart-item-unit { font-size: 11px; color: var(--text-3); margin-top: 3px; }

.cart-footer-row { display: flex; align-items: center; padding: 16px 22px; background: var(--bg); border-top: 1px solid var(--border); }
.cart-footer-row a { font-size: 13px; color: var(--green); font-weight: 500; display: flex; align-items: center; gap: 5px; transition: gap 0.12s; }
.cart-footer-row a:hover { gap: 9px; }
.cart-footer-row a svg { width: 14px; height: 14px; }

.cart-coupon { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; margin-top: 16px; }
.cart-coupon-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.cart-coupon-label svg { width: 15px; height: 15px; color: var(--green); }
.cart-coupon-form { display: flex; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; }
.cart-coupon-form input { flex: 1; border: none; padding: 10px 14px; font-family: var(--font-body); font-size: 13.5px; color: var(--text); outline: none; background: var(--bg); letter-spacing: 0.06em; }
.cart-coupon-form input::placeholder { color: var(--text-3); letter-spacing: 0; }
.cart-coupon-form button { background: var(--text); color: #fff; border: none; padding: 10px 18px; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.cart-coupon-form button:hover { background: var(--green); }
.cart-coupon-active { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12.5px; color: var(--green); font-weight: 500; }
.cart-coupon-active svg { width: 14px; height: 14px; flex-shrink: 0; }
.remove-voucher { margin-left: auto; color: var(--text-3); font-size: 14px; text-decoration: none; transition: color 0.12s; }
.remove-voucher:hover { color: var(--red); }

.cart-empty { padding: 64px 24px; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; }
.cart-empty svg { width: 48px; height: 48px; color: var(--text-3); margin-bottom: 16px; }
.cart-empty p { font-size: 15px; color: var(--text-2); margin-bottom: 24px; }

.cart-summary { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; position: sticky; top: 120px; }
.cart-summary-head { padding: 18px 22px; border-bottom: 1px solid var(--border); }
.cart-summary-head h2 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.cart-summary-body { padding: 20px 22px; }

.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-label { font-size: 13.5px; color: var(--text-2); }
.summary-value { font-size: 13.5px; font-weight: 500; color: var(--text); }
.summary-discount .summary-label, .summary-discount .summary-value { color: var(--red); font-weight: 600; }
.summary-shipping .summary-value { color: var(--green); font-weight: 600; }

.summary-total-row { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 4px; }
.summary-total-label { font-size: 15px; font-weight: 600; color: var(--text); }
.summary-total-value { font-family: var(--font-heading); font-size: 24px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.summary-tax-note { font-size: 11px; color: var(--text-3); margin-bottom: 20px; }

.btn-checkout { width: 100%; height: 48px; background: var(--green); color: #fff; border: none; border-radius: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.15s; margin-bottom: 12px; text-decoration: none; }
.btn-checkout svg { width: 18px; height: 18px; }
.btn-checkout:hover { background: #3a7a55; }
.btn-continue-shopping { width: 100%; height: 42px; background: transparent; color: var(--text-2); border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: border-color 0.15s, color 0.15s; text-decoration: none; }
.btn-continue-shopping svg { width: 15px; height: 15px; }
.btn-continue-shopping:hover { border-color: var(--text-2); color: var(--text); }

.cart-shipping-progress { padding: 18px 22px; border-top: 1px solid var(--border); background: #edf4f0; }
.shipping-msg { font-size: 12.5px; color: var(--green); font-weight: 500; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.shipping-msg svg { width: 14px; height: 14px; flex-shrink: 0; }
.progress-track { height: 5px; background: rgba(42,92,63,0.15); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 3px; transition: width 0.4s ease; }

.cart-payment-methods { padding: 16px 22px; border-top: 1px solid var(--border); }
.payment-label { font-size: 11px; color: var(--text-3); margin-bottom: 10px; text-align: center; letter-spacing: 0.04em; }
.payment-icons { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pay-icon { height: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 3px 10px; display: flex; align-items: center; justify-content: center; }
.pay-icon span { font-size: 10px; font-weight: 700; color: var(--text-2); letter-spacing: 0.04em; }

.cart-guarantees { padding: 16px 22px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.guarantee-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-2); }
.guarantee-item svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.cart-recommended { max-width: var(--max-width); margin: 0 auto; padding: 0 32px 72px; }

/* ---- Utilities ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.bg-green { background: var(--green); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---- Responsive ---- */
/* ═══════════════════════════════════════════
   MOBILE MENU — hamburger, overlay, sidebar
   ═══════════════════════════════════════════ */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-1);
  order: -1; /* leftmost in header-nav */
}
.menu-toggle svg { width: 22px; height: 22px; display: block; }

#menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1200;
  backdrop-filter: blur(2px);
}
#menu-overlay.is-open { display: block; }

#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 300px;
  max-width: 88vw;
  background: var(--surface);
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,0.18);
}
#mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-2);
  line-height: 0;
}
.mobile-menu-close svg { width: 20px; height: 20px; display: block; }

.mobile-menu-body {
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.mob-item { border-bottom: 1px solid var(--border); }

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
  gap: 8px;
}
.mob-top--plain {
  display: block;
  text-decoration: none;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}
.mob-top-link {
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.mob-arrow { width: 10px; height: 10px; color: var(--text-3); transition: transform 0.2s; flex-shrink: 0; }
.mob-item.is-open .mob-arrow { transform: rotate(180deg); }

.mob-sub {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.mob-item.is-open .mob-sub { display: flex; }

.mob-sub-link {
  padding: 11px 20px 11px 32px;
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mob-sub-link:last-child { border-bottom: none; }
.mob-sub-link:hover, .mob-sub-link:focus { color: var(--green); }
.mob-see-all { color: var(--green); font-weight: 600; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid--6 { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-wrap { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .category-body { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .desc-grid { grid-template-columns: 1fr; }
  .cart-wrap { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  #main-nav { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  :root { --header-height: 56px; }
  .container { padding: 0 16px; }
  .topbar-inner { gap: 16px; padding: 0 16px; }
  .topbar-inner span:nth-child(2),
  .topbar-inner span:nth-child(3) { display: none; }
  .header-search { display: none; }
  .nav-inner { overflow-x: auto; }
  #main-nav { display: none; }
  .menu-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid--6, .prod-grid--5, .prod-grid--4, .prod-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .about-inner { padding: 40px 16px; }
  .nl-inner { padding: 48px 16px; }
  .section { padding: 40px 16px; }
  .delivery-cards { grid-template-columns: 1fr; }
  .p-actions { grid-template-columns: 1fr; }
  .p-title { font-size: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .cart-wrap { padding: 24px 16px 48px; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item-right { display: none; }
}

/* ─── Search page ─── */
.search-header { margin-bottom: 20px; }
.search-title { font-size: 22px; font-weight: 700; color: var(--text-1); }
.search-title em { font-style: normal; color: var(--green); }
.search-count { font-size: 13px; color: var(--text-3); display: block; margin-top: 4px; }
.no-results { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 64px 24px; text-align: center; grid-column: 1/-1; }
.no-results svg { width: 48px; height: 48px; color: var(--text-3); }
.no-results p { font-size: 15px; color: var(--text-2); }
