:root {
  --bg: #060b13;
  --bg-2: #0a1220;
  --ink: #f7fbff;
  --ink-dark: #07111f;
  --muted: #9fb1c9;
  --muted-dark: #64748b;
  --panel: rgba(12, 24, 42, 0.78);
  --panel-strong: rgba(11, 22, 38, 0.94);
  --card: rgba(255, 255, 255, 0.94);
  --line: rgba(160, 190, 230, 0.17);
  --line-dark: rgba(7, 17, 31, 0.12);
  --green: #2fe085;
  --lime: #abf55f;
  --cyan: #54e6ff;
  --gold: #ffc45b;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 16px 48px rgba(8, 17, 31, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 224, 133, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(84, 230, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 70% 78%, rgba(255, 196, 91, 0.14), transparent 32rem),
    linear-gradient(180deg, #050913 0%, #071323 46%, #ecf5ef 46.2%, #f8fbff 100%);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { border: 0; cursor: pointer; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.neural-bg { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(120, 190, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 190, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}
.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.28;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-a { left: -120px; top: 120px; background: var(--green); }
.orb-b { right: -100px; top: 40px; background: var(--cyan); animation-delay: -4s; }
.orb-c { left: 45%; top: 280px; background: var(--gold); opacity: 0.16; animation-delay: -7s; }
@keyframes floatOrb { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px, -26px, 0) scale(1.08); } }

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 70px;
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: rgba(7, 17, 31, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #dce9ff);
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}
.brand-logo img { width: 52px; height: 52px; object-fit: contain; }
.brand-copy { min-width: 0; display: grid; }
.brand-copy strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-copy small { color: rgba(255,255,255,0.62); font-weight: 800; }
.header-search, .catalog-search {
  min-width: 0;
  min-height: 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}
.header-search span, .catalog-search span {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.header-search input, .catalog-search input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}
.header-search input::placeholder { color: rgba(255,255,255,0.46); }
.header-nav { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.nav-chip, .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.07);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta, .btn-primary {
  color: #06110d;
  border-color: transparent;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 16px 40px rgba(47,224,133,0.26);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 20px;
  margin-top: 30px;
}
.hero.hero--solo {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.hero-copy, .ai-panel, .trust-strip, .featured, .catalog, .product-modal {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-copy {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 66px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(7,17,31,0.97), rgba(14,38,64,0.9)),
    radial-gradient(circle at 72% 22%, rgba(47,224,133,0.22), transparent 24rem);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 26px;
  pointer-events: none;
}
.status-pill {
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(47,224,133,0.3);
  border-radius: 999px;
  color: #d9ffe8;
  background: rgba(47,224,133,0.1);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}
.hero-copy h1 {
  position: relative;
  max-width: 900px;
  margin: 26px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
}
.hero-copy p {
  position: relative;
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 760;
}
.hero-actions { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 15px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.09);
}
.btn-ghost.dark { color: var(--ink-dark); border-color: var(--line-dark); background: #fff; }
.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 800px;
  margin-top: 48px;
}
.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}
.hero-stats span, .modal-meta span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.58);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-stats b { font-family: var(--font-display); font-size: 1.5rem; }

.ai-panel {
  position: relative;
  min-height: 540px;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(10, 20, 35, 0.82), rgba(17, 43, 69, 0.72)),
    radial-gradient(circle at 50% 26%, rgba(84,230,255,0.2), transparent 18rem);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.ai-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(47,224,133,0.18), transparent, rgba(84,230,255,0.14), transparent);
  animation: rotateScan 18s linear infinite;
}
@keyframes rotateScan { to { transform: rotate(360deg); } }
.ai-core {
  position: relative;
  z-index: 1;
  width: min(270px, 72%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 38px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.ai-core img { width: 68%; opacity: 0.76; filter: drop-shadow(0 24px 50px rgba(0,0,0,0.38)); }
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 22px var(--cyan);
  animation: scan 2.8s ease-in-out infinite;
}
@keyframes scan { 0%,100% { top: 14%; } 50% { top: 86%; } }
.ai-panel-copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ai-panel h2 { margin: 0; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; letter-spacing: -0.055em; }
.ai-panel ul { margin: 18px 0 0; padding-left: 18px; color: rgba(255,255,255,0.72); font-weight: 760; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.trust-strip div { padding: 22px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip b { display: block; font-family: var(--font-display); font-size: 1.08rem; }
.trust-strip span { display: block; margin-top: 5px; color: var(--muted); font-weight: 760; }

.featured, .catalog {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(248, 251, 255, 0.92);
  color: var(--ink-dark);
  backdrop-filter: blur(18px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.section-head span { display: block; margin-top: 8px; color: var(--muted-dark); font-weight: 760; }
.section-head a { color: #087a5b; font-weight: 950; text-decoration: none; }
.featured-rail { display: flex; gap: 12px; overflow-x: auto; padding: 2px 2px 10px; }
.featured-pill {
  min-width: 290px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
  color: var(--ink-dark);
  text-align: left;
  box-shadow: 0 10px 26px rgba(8,17,31,0.07);
}
.featured-icon, .product-icon, .modal-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 17px;
  background: linear-gradient(135deg, #eef7ff, #ecfff3);
  font-size: 1.55rem;
  font-weight: 950;
}
.featured-icon img { width: 100%; height: 100%; object-fit: cover; }

/* Telegram custom-emoji rendering: the renderer swaps <tg-emoji> for an
   <img>/<video> or Lottie holder. Make sure those inner elements fill the
   icon container nicely instead of looking like a tiny inline emoji. */
.featured-icon tg-emoji,
.product-icon tg-emoji,
.modal-icon tg-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  line-height: 1;
}
.featured-icon tg-emoji img, .featured-icon tg-emoji video,
.product-icon tg-emoji img, .product-icon tg-emoji video,
.modal-icon tg-emoji img, .modal-icon tg-emoji video {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.modal-icon tg-emoji img, .modal-icon tg-emoji video { width: 70%; height: 70%; }
.featured-icon tg-emoji .lottie-holder,
.product-icon tg-emoji .lottie-holder,
.modal-icon tg-emoji .lottie-holder { width: 78%; height: 78%; }
.modal-icon tg-emoji .lottie-holder { width: 70%; height: 70%; }
.featured-pill strong, .featured-pill span span { max-width: 200px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.featured-pill strong { font-weight: 950; }
.featured-pill span span { color: var(--muted-dark); font-size: 0.84rem; font-weight: 850; }

.catalog-head { align-items: center; }
.catalog-search { width: min(560px, 100%); border-color: var(--line-dark); background: #fff; }
.catalog-search span { color: var(--muted-dark); }
.catalog-search input { color: var(--ink-dark); }
.catalog-search input::placeholder { color: #94a3b8; }
.category-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.chip {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #26354b;
  background: #fff;
  font-weight: 950;
}
.chip.active { color: #06110d; border-color: transparent; background: linear-gradient(135deg, var(--lime), var(--green)); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card {
  min-width: 0;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}
.product-card:hover { transform: translateY(-3px); border-color: rgba(47,224,133,0.48); box-shadow: 0 24px 58px rgba(8,17,31,0.16); }
.product-media {
  position: relative;
  height: 112px;
  display: flex;
  align-items: center;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(47,224,133,0.15), rgba(84,230,255,0.11), rgba(255,196,91,0.14)),
    #f8fbff;
  overflow: hidden;
}
.product-media::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold)); }
.product-media img { width: 64px; height: 64px; object-fit: cover; border-radius: 18px; }
.product-badge {
  position: absolute;
  right: 16px;
  top: 18px;
  max-width: 150px;
  overflow: hidden;
  padding: 7px 10px;
  border: 1px solid rgba(47,224,133,0.26);
  border-radius: 999px;
  color: #087a5b;
  background: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-body { flex: 1; display: flex; flex-direction: column; gap: 12px; padding: 18px; min-height: 0; }
.product-title {
  min-height: 48px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}
.product-desc {
  min-height: 66px;
  max-height: 66px;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--muted-dark);
  font-weight: 760;
  overflow-wrap: anywhere;
}
.product-meta, .modal-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.product-meta { margin-top: auto; }
.meta-box, .modal-meta div {
  min-width: 0;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #f4f8fd;
}
.meta-box span { display: block; color: var(--muted-dark); font-size: 0.68rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.meta-box b { display: block; margin-top: 3px; font-size: 0.93rem; overflow-wrap: anywhere; }
.stock-good { color: #087a5b; }
.stock-bad { color: var(--red); }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; padding: 0 18px 18px; }
.product-actions .btn { min-height: 46px; flex: 1 1 130px; padding: 10px 13px; }
.product-actions .btn-ghost { color: var(--ink-dark); border-color: var(--line-dark); background: #fff; }
.sold-button { color: #fff; background: var(--red); box-shadow: none; cursor: not-allowed; }

.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 22px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1, 6, 14, 0.72); backdrop-filter: blur(12px); }
.product-modal {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(880px, calc(100vh - 44px));
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  color: var(--ink-dark);
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(7,17,31,0.72);
  font-weight: 950;
}
.modal-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 40px;
  color: #fff;
  background:
    linear-gradient(145deg, #07111f, #15375b),
    radial-gradient(circle at 30% 20%, rgba(47,224,133,0.22), transparent 20rem);
}
.modal-visual::before { content: "Product signal"; position: absolute; left: 30px; top: 30px; color: rgba(255,255,255,0.62); font-size: 0.72rem; font-weight: 950; letter-spacing: 0.14em; text-transform: uppercase; }
.modal-visual img { width: min(210px, 82%); aspect-ratio: 1; object-fit: cover; border-radius: 32px; box-shadow: 0 28px 80px rgba(0,0,0,0.34); }
.modal-icon { width: 170px; height: 170px; border-radius: 38px; color: var(--ink-dark); font-size: 4rem; }
.modal-info { min-width: 0; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 40px 38px 32px; }
.modal-info h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 3.4rem); line-height: 0.98; letter-spacing: -0.06em; overflow-wrap: anywhere; }
.modal-description { color: #26354b; font-weight: 780; overflow-wrap: anywhere; }
.modal-meta { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 20px 0; }
.modal-meta span { color: var(--muted-dark); }
.modal-meta b { display: block; font-size: 0.93rem; overflow-wrap: anywhere; }
.long-details { display: grid; gap: 12px; }
.detail-block { padding: 15px; border: 1px solid var(--line-dark); border-radius: 18px; background: #fbfdff; }
.detail-block b { display: block; margin-bottom: 6px; font-family: var(--font-display); }
.detail-block p { margin: 0; color: #26354b; white-space: pre-wrap; overflow-wrap: anywhere; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.modal-note { color: var(--muted-dark); font-weight: 760; }

.muted { color: var(--muted-dark); font-weight: 760; }

@media (max-width: 1240px) {
  .site-header { grid-template-columns: 1fr; }
  .header-nav { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; }
  .ai-panel { min-height: auto; grid-template-columns: 230px minmax(0,1fr); align-items: center; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .site-shell { width: min(100vw - 22px, 820px); padding-top: 10px; }
  .site-header { position: relative; top: auto; }
  .hero-copy { min-height: auto; padding: 34px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 10vw, 4.7rem); }
  .ai-panel { grid-template-columns: 1fr; }
  .ai-core { width: min(230px, 70%); }
  .trust-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-head, .catalog-head { align-items: stretch; flex-direction: column; }
  .catalog-search { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-modal { grid-template-columns: 1fr; overflow: auto; }
  .modal-visual { min-height: 230px; }
  .modal-meta { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  body { font-size: 14px; background: linear-gradient(180deg, #050913 0%, #071323 52%, #ecf5ef 52.2%, #f8fbff 100%); }
  .site-shell { width: calc(100vw - 14px); }
  .site-header { border-radius: 22px; }
  .brand-logo { width: 48px; height: 48px; border-radius: 16px; }
  .brand-logo img { width: 43px; height: 43px; }
  .header-search { order: 3; grid-column: 1 / -1; width: 100%; }
  .hide-sm { display: none; }
  .nav-chip, .nav-cta { min-height: 38px; padding: 8px 11px; font-size: 0.76rem; }
  .hero-copy, .ai-panel, .featured, .catalog { border-radius: 22px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .hero-stats { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; margin-top: 28px; }
  .hero-stats div { padding: 12px 9px; }
  .hero-stats b { font-size: 1.12rem; }
  .hero-actions, .modal-actions, .product-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .trust-strip, .product-grid { grid-template-columns: 1fr; }
  .category-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .chip { flex: 0 0 auto; }
  .product-card { min-height: 0; }
  .product-title { min-height: auto; }
  .product-actions .btn { flex: 0 0 auto; }
  .modal { padding: 10px; align-items: end; }
  .product-modal { max-height: calc(100vh - 20px); border-radius: 24px 24px 0 0; }
  .modal-info { padding: 24px; }
  .modal-visual { min-height: 190px; }
  .modal-visual img { width: 132px; border-radius: 26px; }
}
@media (max-width: 430px) {
  .brand-copy strong { font-size: 0.94rem; }
  .hero-copy { padding: 28px; }
  .product-meta { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .meta-box { padding: 9px; }
  .modal-meta { grid-template-columns: 1fr; }
  .featured-pill { min-width: 235px; }
}