/* ============ Base — Fresh & Eco Palette ============ */
:root {
  --forest: #2f6b4f;        /* primary eco green */
  --forest-deep: #1f4d3a;
  --leaf: #7cb342;          /* fresh accent green */
  --leaf-soft: #a5d16a;
  --ink: #25302b;           /* dark text */
  --muted: #6b7a72;         /* secondary text */
  --line: #e3ebe5;          /* hairline */
  --bg: #ffffff;
  --bg-alt: #f3f7f2;        /* soft green-grey */
  --bg-warm: #fbfaf5;       /* warm paper */
  --sand: #eef3ec;
  --sky: #eaf3f1;           /* hero tint */
  --radius: 10px;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow: 0 14px 36px rgba(47, 107, 79, 0.10);
  --shadow-lg: 0 26px 60px rgba(47, 107, 79, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 90%); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 16px; position: relative; padding-left: 34px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 24px; height: 1px;
  background: var(--leaf);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: all .3s ease; font-family: inherit;
}
.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: #fff; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest); background: var(--bg-alt); }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .4s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 0 rgba(47,107,79,.08);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.logo { display: flex; align-items: center; gap: 13px; }
/* logo keeps its real colours (no forced white) on both states */
.logo-img { height: 42px; width: auto; transition: filter .4s; }
.logo-text { font-weight: 800; font-size: 17px; line-height: 1; color: var(--ink); letter-spacing: .02em; }
.logo-text small { display: block; font-size: 10px; font-weight: 500; letter-spacing: .22em; opacity: .8; margin-top: 4px; text-transform: uppercase; }
.scrolled .logo-text { color: var(--ink); }

.main-nav { display: flex; gap: 38px; }
.main-nav a {
  font-weight: 500; font-size: 14px; color: var(--ink);
  position: relative; padding: 6px 0; transition: color .3s; letter-spacing: .02em;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--leaf); transition: width .3s; border-radius: 2px;
}
.main-nav a:hover { color: var(--forest); }
.main-nav a:hover::after { width: 100%; }
.scrolled .main-nav a { color: var(--ink); }
.scrolled .main-nav a:hover { color: var(--forest); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.scrolled .btn-primary { background: var(--forest); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }
.scrolled .nav-toggle span { background: var(--ink); }

/* ============ Hero ============ */
.hero { position: relative; padding: 170px 0 120px; color: var(--ink); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1000px 620px at 82% -18%, rgba(124,179,66,.16), transparent 55%),
    radial-gradient(800px 520px at 8% 110%, rgba(47,107,79,.10), transparent 55%),
    linear-gradient(165deg, #f1f7f1 0%, #eaf3f1 50%, #f4f8f1 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(47,107,79,.05) 1px, transparent 1px);
  background-size: 30px 30px; opacity: .5;
}
.hero-bg::before {
  content: ''; position: absolute; right: -8%; top: 12%; width: 460px; height: 460px; z-index: -1;
  border: 1px solid rgba(124,179,66,.30); border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(124,179,66,.06);
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.hero h1 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08; margin-bottom: 22px; letter-spacing: -0.01em; color: var(--ink);
}
.hero h1 .hl { color: var(--forest); font-style: italic; }
.lead { font-size: 17px; color: var(--muted); max-width: 540px; margin-bottom: 34px; font-weight: 300; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { list-style: none; display: flex; gap: 44px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid rgba(47,107,79,.14); }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--forest-deep); }
.hero-stats span { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

.hero-visual { position: relative; padding: 22px 18px 26px; }
.hero-photo-wrap {
  position: relative; border-radius: 28px; padding: 10px;
  background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 30px 70px rgba(31,77,58,.18); backdrop-filter: blur(8px);
  transform: rotate(1.2deg);
}
.hero-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 21px; }
.hero-float {
  position: absolute; display: flex; flex-direction: column; min-width: 150px;
  padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,.94);
  border: 1px solid rgba(47,107,79,.12); box-shadow: 0 12px 30px rgba(31,77,58,.14);
  transform: rotate(-1.2deg); backdrop-filter: blur(10px);
}
.hero-float-top { top: -20px; right: -18px; }
.hero-float-bottom { bottom: -24px; left: -22px; }
.hero-float strong { color: var(--forest-deep); font-family: var(--serif); font-size: 23px; line-height: 1.1; }
.hero-float span { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hero-float-bottom strong { font-family: var(--sans); font-size: 14px; margin-top: 3px; }

/* ============ Sections ============ */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4vw, 46px);
  color: var(--ink); letter-spacing: -0.01em;
}
.section-sub { color: var(--muted); margin-top: 16px; font-size: 16px; font-weight: 300; }

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 15.5px; font-weight: 300; }
.about-text p:first-of-type { font-size: 17px; color: var(--ink); font-weight: 400; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card {
  background: var(--bg-warm); border: 1px solid var(--line); border-top: 3px solid var(--leaf);
  padding: 26px 24px; border-radius: var(--radius); transition: transform .3s, box-shadow .3s;
}
.mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mc-ico { font-size: 24px; display: block; margin-bottom: 12px; }
.mini-card h4 { color: var(--ink); font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.mini-card p { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ============ Products ============ */
.cat-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 50px; }
.chip {
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: 10px 22px; border-radius: 999px; font-weight: 500; font-size: 13px;
  letter-spacing: .04em; cursor: pointer; transition: all .3s; font-family: inherit;
}
.chip:hover { border-color: var(--leaf); color: var(--forest); }
.chip.active { background: var(--forest); color: #fff; border-color: var(--forest); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pc-media {
  height: 250px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f6f9f6, #eef3ec);
  display: flex; align-items: center; justify-content: center;
}
.pc-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.9); color: var(--forest); font-size: 10px; font-weight: 600;
  padding: 5px 12px; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--line);
  border-radius: 999px; backdrop-filter: blur(4px);
}
.pc-img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .6s ease; }
.product-card:hover .pc-img { transform: scale(1.05); }
.pc-noimg {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px; font-family: var(--serif); font-size: 19px; font-weight: 600;
  color: var(--forest); letter-spacing: .01em; line-height: 1.4;
}

/* ---- category navigation + grouped blocks ---- */
.cat-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 56px; }
.cat-nav .chip.active { background: var(--forest); color: #fff; border-color: var(--forest); }

.cat-block { margin-bottom: 64px; scroll-margin-top: 100px; }
.cat-block:last-child { margin-bottom: 0; }
.cat-block-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding-bottom: 18px; margin-bottom: 30px; border-bottom: 2px solid var(--leaf);
}
.cat-kicker { display: block; font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--leaf); margin-bottom: 8px; }
.cat-title { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--ink); }
.cat-tagline { color: var(--muted); font-size: 14.5px; font-weight: 300; margin-top: 8px; max-width: 620px; }
.cat-count { flex: none; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--forest); background: var(--sky); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; }

.product-card { cursor: pointer; }
.pc-view { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--forest); letter-spacing: .02em; }
.catalog-noscript { text-align: center; color: var(--muted); padding: 30px; }
.pc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; border-top: 2px solid transparent; }
.product-card:hover .pc-body { border-top-color: var(--leaf); }
.pc-title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.4; min-height: 44px; }
.pc-meta { font-size: 12.5px; color: var(--muted); margin: 8px 0 16px; font-weight: 300; letter-spacing: .01em; }
.pc-meta b { color: var(--ink); font-weight: 600; }
.pc-points { list-style: none; margin-top: auto; display: flex; flex-direction: column; gap: 7px; }
.pc-points li { font-size: 13px; color: var(--muted); padding-left: 20px; position: relative; font-weight: 300; }
.pc-points li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 2px; background: var(--leaf); border-radius: 2px;
}

/* ============ Category Cards (7 home entry) ============ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  font-family: inherit;
  padding: 0;
  width: 100%;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--leaf);
}

.cc-media {
  height: 210px;
  overflow: hidden;
  background: linear-gradient(160deg, #f6f9f6, #eef3ec);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .6s ease;
}
.category-card:hover .cc-media img { transform: scale(1.06); }

.cc-noimg {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  padding: 24px;
  text-align: center;
  line-height: 1.4;
}

.cc-body {
  padding: 20px 24px 24px;
  border-top: 3px solid transparent;
  transition: border-color .35s;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-card:hover .cc-body { border-top-color: var(--leaf); }

.cc-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cc-tagline {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.cc-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .03em;
}

/* ============ Category Products View ============ */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--forest);
  cursor: pointer;
  transition: all .3s;
  font-family: inherit;
  margin-bottom: 24px;
}
.btn-back:hover {
  border-color: var(--forest);
  background: var(--bg-alt);
}

.cat-products-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.cat-products-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cat-products-head .section-sub {
  color: var(--muted);
  margin-top: 14px;
  font-size: 15px;
  font-weight: 300;
}

/* ============ Advantages ============ */
.section-adv { background: var(--bg-warm); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-adv .eyebrow { color: var(--forest); }
.section-adv .eyebrow::before { background: var(--leaf); }
.section-adv .section-head h2 { color: var(--ink); }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.adv-card {
  padding: 40px 28px 36px; position: relative; transition: background .3s;
}
.adv-card:not(:last-child) { border-right: 1px solid var(--line); }
.adv-card:hover { background: var(--bg-alt); }
.adv-num { font-family: var(--serif); font-size: 38px; font-weight: 600; color: var(--leaf); margin-bottom: 14px; }
.adv-card h4 { color: var(--ink); font-size: 17px; margin-bottom: 10px; font-weight: 600; }
.adv-card p { font-size: 13.5px; color: var(--muted); font-weight: 300; }

/* ============ Contact ============ */
.section-contact { background: linear-gradient(165deg, #eef5f0, #e6f0ec); color: var(--ink); }
.section-contact .eyebrow { color: var(--forest); }
.section-contact .eyebrow::before { background: var(--leaf); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-copy h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; color: var(--ink); }
.contact-copy p { color: var(--muted); margin-bottom: 28px; font-weight: 300; }
.contact-info { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-info li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink); }
.contact-info span { font-size: 18px; opacity: .9; }

.contact-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; box-shadow: var(--shadow);
}
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.contact-form .field { display: flex; flex-direction: column; gap: 7px; }
.contact-form .field-full { grid-column: 1 / -1; }
.contact-form label { font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--line); background: var(--bg-warm); border-radius: 8px;
  padding: 13px 15px; font-size: 14px; font-family: inherit; color: var(--ink); transition: border .3s; width: 100%; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aeb8b1; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--leaf); }
.form-note { grid-column: 1 / -1; font-size: 13px; color: var(--forest); min-height: 18px; font-weight: 500; }
.form-fallback { color: var(--forest-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.contact-form button:disabled { cursor: wait; opacity: .68; transform: none; }

/* ============ Footer ============ */
.site-footer { background: var(--forest-deep); color: rgba(255,255,255,.72); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer-brand .logo-img { filter: none; height: 40px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 13.5px; margin-top: 16px; max-width: 300px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.62); }
.footer-col h5 { color: #fff; font-size: 13px; margin-bottom: 18px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; transition: color .3s; font-weight: 300; }
.footer-col a:hover { color: var(--leaf-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.55); }

/* ============ To Top ============ */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 48px; height: 48px; background: var(--forest); color: #fff;
  display: grid; place-items: center; font-size: 20px; border-radius: 50%;
  opacity: 0; pointer-events: none; transition: all .3s; transform: translateY(10px); box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--forest-deep); }

/* ---- product lightbox ---- */
.lb-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(31, 77, 58, .55); backdrop-filter: blur(4px);
}
.lb-overlay.open { display: flex; }
.lb-modal {
  position: relative; width: min(960px, 100%); max-height: 90vh; overflow: auto;
  background: #fff; border-radius: 16px; display: grid; grid-template-columns: 1.1fr .9fr;
  box-shadow: var(--shadow-lg);
}
.lb-close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 24px; line-height: 1; cursor: pointer; box-shadow: var(--shadow);
}
.lb-close:hover { background: #fff; color: var(--forest); }
.lb-main { background: linear-gradient(160deg, #f6f9f6, #eef3ec); display: flex; align-items: center; justify-content: center; padding: 32px; }
.lb-main img { max-width: 100%; max-height: 60vh; object-fit: contain; }
.lb-media .pc-noimg { font-size: 22px; min-height: 240px; }
.lb-info { padding: 38px 34px; }
.lb-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--leaf); padding: 4px 12px; border-radius: 999px; background: var(--sky); }
.lb-title { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--ink); margin: 14px 0 10px; line-height: 1.2; }
.lb-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.lb-points { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.lb-points li { font-size: 14px; color: var(--ink); padding-left: 20px; position: relative; font-weight: 300; }
.lb-points li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 2px; background: var(--leaf); }
.lb-variants { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 4px; }
.lb-variants h5 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.lb-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lb-thumb { border: 1px solid var(--line); background: var(--bg-warm); border-radius: 8px; padding: 6px; cursor: pointer; text-align: center; transition: border .2s; }
.lb-thumb:hover { border-color: var(--leaf); }
.lb-thumb.active { border-color: var(--forest); box-shadow: 0 0 0 2px rgba(47,107,79,.15); }
.lb-thumb-img { display: block; height: 56px; background: var(--sand); border-radius: 5px; overflow: hidden; margin-bottom: 6px; }
.lb-thumb-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.lb-thumb-img .pc-noimg { font-size: 11px; height: 56px; padding: 4px; }
.lb-thumb-label { display: block; font-size: 10.5px; color: var(--muted); line-height: 1.3; }

@media (max-width: 760px) {
  .lb-modal { grid-template-columns: 1fr; }
  .lb-main { padding: 24px; }
  .lb-thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ============ Responsive ============ */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-card:nth-child(2n) { border-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav {
    position: fixed; top: 82px; right: 0; width: 280px; height: calc(100vh - 82px);
    background: #fff; flex-direction: column; padding: 26px; gap: 4px;
    transform: translateX(100%); transition: transform .35s; box-shadow: -12px 0 40px rgba(0,0,0,.10);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: var(--ink) !important; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .cc-media { height: 180px; }
  .adv-grid { grid-template-columns: 1fr; }
  .adv-card { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .about-cards { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-visual { padding: 20px 8px 32px; }
  .hero-float-top { right: -4px; }
  .hero-float-bottom { left: -4px; }
  .section { padding: 80px 0; }
}
