/* =====================================================
   Bintang Timur — Main Stylesheet
   Design tokens + all component styles
   ===================================================== */

:root {
  --bg: #0e0d0b;
  --surface: #18160f;
  --border: #2a2620;
  --border-strong: #3d362a;
  --text: #f5ecd3;
  --text-muted: #9b8f72;
  --accent: #d4a943;
  --accent-hover: #e8bd55;
  --accent-deep: #8a6b1f;
  --shopee: #ee4d2d;
  --shopee-hover: #d63f20;
  --placeholder: #1f1c15;
  --placeholder-2: #26221a;
  --shadow: 0 1px 4px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,169,67,0.08);
  --radius: 6px;
  --radius-lg: 10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- WP block theme overrides ---------- */
.wp-site-blocks { padding: 0 !important; }
.wp-block-group.bt-homepage,
.wp-block-group.bt-catalog-page { padding: 0; margin: 0; max-width: none; }
.entry-content, .wp-block-post-content { margin: 0; padding: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 11, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.logo-mark svg { width: 38px; height: 38px; display: block; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .lt-main {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
}
.logo-text .lt-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}
.logo-text .lt-loc {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--accent);
  font-weight: 700;
  margin-top: 3px;
}
.nav {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.lang {
  justify-self: end;
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang button {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: background 0.15s, color 0.15s;
}
.lang button.active {
  background: var(--accent);
  color: var(--bg);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: #1a1409;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(212, 169, 67, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-shopee {
  background: var(--shopee);
  color: #fff;
  padding: 16px 24px;
  font-size: 15px;
}
.btn-shopee:hover { background: var(--shopee-hover); }

.hero-visual {
  aspect-ratio: 4 / 5;
  background: var(--placeholder);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-visual::after {
  content: "hero product photography";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Diagonal stripe placeholder */
.ph {
  background-color: var(--placeholder);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 14px,
    rgba(212,169,67,0.04) 14px 15px
  );
}

/* ---------- Section base ---------- */
section.block {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.section-head {
  margin-bottom: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-head h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 44ch;
  text-align: right;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.about p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 60ch;
}
.about p strong {
  color: var(--text);
  font-weight: 600;
}
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.stat-icon svg { width: 20px; height: 20px; }
.stat-num {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin: 2px 0 0;
}

/* ---------- Brands grid ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.brand-card-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  line-height: 1;
}
.brand-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brand-tag {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .brand-grid { grid-template-columns: 1fr; }
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-align: left;
  width: 100%;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,169,67,0.35);
  border-color: var(--accent);
  background: #1f1c14;
}
.card-img {
  aspect-ratio: 4 / 3;
  position: relative;
}
.card-img .ph-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-cat {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.card-name {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  text-wrap: balance;
  transition: color 0.18s ease;
}
.card:hover .card-name { color: var(--accent); }
.card-row {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.price small {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 11px;
  margin-right: 2px;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.card:hover .btn-sm {
  background: var(--accent);
  color: #1a1409;
  border-color: var(--accent);
}

/* ---------- Contact section ---------- */
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  transition: border-color 0.15s, transform 0.15s;
}
.contact-row:hover {
  border-color: var(--accent);
  background: rgba(212, 169, 67, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,169,67,0.2);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 2px;
  font-weight: 600;
}
.contact-value {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 36px;
  background: #08070a;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand .logo { margin-bottom: 4px; }
.footer-tag {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  max-width: 36ch;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* ---------- Catalog ---------- */
.catalog-head {
  padding: 56px 0 32px;
}
.catalog-head h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.catalog-head p {
  color: var(--text-muted);
  margin: 0;
}
.filter-bar {
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: var(--text-muted);
}
.search svg { width: 16px; height: 16px; flex-shrink: 0; }
.search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font: inherit;
  color: var(--text);
  padding: 4px 0;
}
.search input::placeholder { color: var(--text-muted); }
.select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.select svg { width: 12px; height: 12px; color: var(--text-muted); }
.select { cursor: pointer; user-select: none; position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 100;
  overflow: hidden;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.dropdown-item:hover { background: var(--bg); }
.dropdown-item.active { color: var(--accent); font-weight: 600; }
.results-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 13px;
}
.results-meta strong { color: var(--text); font-weight: 600; }
.catalog-section { padding-bottom: 96px; }

/* ---------- Product Detail ---------- */
.detail { padding: 32px 0 96px; }
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px 8px 10px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  transition: background 0.15s, color 0.15s;
}
.back-btn:hover { background: var(--surface); color: var(--text); }
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.detail-gallery { display: flex; flex-direction: column; gap: 14px; }
.detail-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.detail-img .ph-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s;
}
.thumb:hover, .thumb.active { border-color: var(--accent); }

.detail-info .cat-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: rgba(212, 169, 67, 0.12);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.detail-info h1 {
  font-size: clamp(26px, 2.4vw, 34px);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-wrap: balance;
}
.detail-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--text-muted);
}
.detail-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }
.stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7bbf7b;
  font-weight: 500;
}
.stock-dot { width: 7px; height: 7px; border-radius: 50%; background: #7bbf7b; }
.detail-price {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
.detail-price small {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 4px;
}
.detail-desc {
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.65;
}
.variant-row { margin-bottom: 26px; }
.variant-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.variant-select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font: inherit;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%239b8f72' stroke-width='1.5'><path d='M3 5l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.variant-select:focus { outline: none; border-color: var(--accent); }
.qty-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty button {
  width: 38px;
  height: 38px;
  color: var(--text-muted);
  font-size: 16px;
  transition: background 0.15s, color 0.15s;
}
.qty button:hover { background: var(--bg); color: var(--text); }
.qty span {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.features {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.feature {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  align-items: center;
}
.feature svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.detail-long {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.detail-long h3 { font-size: 18px; margin: 0; font-weight: 600; }
.detail-long .copy { color: var(--text-muted); line-height: 1.7; }
.detail-long .copy p { margin: 0 0 16px; max-width: 64ch; }
.spec-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.spec {
  display: flex;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec dt { color: var(--text-muted); margin: 0; }
.spec dd { margin: 0; color: var(--text); font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header-inner { padding: 14px 20px; gap: 16px; grid-template-columns: auto 1fr auto; }
  .nav { gap: 20px; justify-self: end; margin-right: 8px; }
  .container { padding: 0 20px; }
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { aspect-ratio: 16 / 10; max-width: 520px; }
  section.block { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: start; gap: 12px; }
  .section-head p { text-align: left; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-long { grid-template-columns: 1fr; gap: 24px; }
  .filter-bar { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
.nav { gap: 14px; }
  .nav-link { font-size: 13px; }
  .spec-grid { grid-template-columns: 1fr; }
}

/* ---------- Catalog placeholder ---------- */
.catalog-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}
.catalog-placeholder-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
}
.catalog-placeholder-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  max-width: 420px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ---------- Mobile — 768px ---------- */
@media (max-width: 768px) {
  .header { padding: 12px 16px; position: sticky; top: 0; }
  .header-inner { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 12px 16px; }
  .logo { flex: 1; min-width: 0; overflow: hidden; }
  .nav { display: none; flex-direction: column; width: 100%; background: var(--surface); border-bottom: 1px solid var(--border); padding: 8px 16px 18px; position: absolute; top: 100%; left: 0; }
  .nav--open { display: flex; }
  .nav a { display: block; padding: 14px 8px; border-bottom: 1px solid var(--border); font-size: 14px; min-height: 44px; position: relative; }
  .nav a:last-child { border-bottom: none; }
  .nav a.active::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 16px; background: var(--accent); border-radius: 2px; }
  .hamburger { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); cursor: pointer; color: var(--text); flex-shrink: 0; }
  .lang-toggle button { padding: 8px 10px; }

  .hero { padding: 32px 16px 36px; }
  .hero-grid { gap: 24px; }
  .hero-visual { aspect-ratio: 4/3; border-radius: 10px; width: 100%; max-width: none; }
  .hero h1 { font-size: 30px; }
  .eyebrow { font-size: 10px; }
  .hero-sub { font-size: 14px; }
  .hero .btn { display: block; width: 100%; text-align: center; padding: 14px 18px; box-sizing: border-box; }

  .about { padding: 40px 16px; }
  .about h2 { font-size: 22px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; padding: 14px 16px; border-radius: 10px; }

  .products { padding: 40px 16px; }
  .products h2 { font-size: 22px; }

  .contact { padding: 40px 16px; }
  .contact h2 { font-size: 22px; }
  .contact-row { padding: 16px 14px; border-radius: 10px; }
  .contact-row::after { content: ''; display: block; width: 16px; height: 16px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239b8f72' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; margin-left: auto; }

  .footer { padding: 32px 16px 24px; }
  .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-nav { justify-content: center; }
  .footer-copy { font-size: 10px; }

  .card-row { flex-direction: column; align-items: stretch; gap: 6px; }
  .btn-sm { display: block; text-align: center; padding: 10px 14px; }
}

/* ---------- Mobile — 560px ---------- */
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-body { padding: 10px 12px 12px; }
  .card-cat { font-size: 9px; }
  .card-name { font-size: 13px; }
  .card-price { font-size: 13px; }
}

/* ---------- Mobile — 480px ---------- */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ---------- Mobile — 360px ---------- */
@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile — narrow header (≤400px) ---------- */
@media (max-width: 400px) {
  .logo-text .lt-sub,
  .logo-text .lt-loc { display: none; }
  .logo-mark { width: 28px; height: 28px; }
  .logo-mark svg { width: 28px; height: 28px; }
  .logo-text .lt-main { font-size: 11px; letter-spacing: 0.06em; }
}

/* ---------- Desktop — hide hamburger ---------- */
@media (min-width: 769px) {
  .hamburger { display: none; }
}

/* ---------- Touch :active states ---------- */
.card:active { opacity: 0.85; }
.contact-row:active { background: var(--surface-hover, #1f1c15); }
.btn:active { opacity: 0.85; }
