:root {
  --gb-bg: #f7f4f1;
  --gb-surface: #ffffff;
  --gb-soft: #fffaf5;
  --gb-primary: #6cbf73;
  --gb-primary-dark: #3c8c45;
  --gb-primary-strong: #8cdc8d;
  --gb-secondary: #1d1f20;
  --gb-text: #161616;
  --gb-muted: #66615d;
  --gb-line: #e9e0d6;
  --gb-panel: #fffaf2;
  --gb-success: #1e9b63;
  --gb-green-soft: #edf9ee;
  --gb-shadow: 0 12px 26px rgba(21, 14, 9, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #faf7f4 0%, #f5f1ee 100%);
  color: var(--gb-text);
}

main {
  background: transparent;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button {
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
button:hover { transform: translateY(-1px); }
img { max-width: 100%; display: block; }

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid var(--gb-line);
  box-shadow: 0 1px 0 rgba(22, 16, 10, 0.02);
  backdrop-filter: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 18px;
}

.category-rail {
  background: #fff;
  border-bottom: 1px solid var(--gb-line);
}

.category-rail-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-rail-inner::-webkit-scrollbar { display: none; }

.category-rail-inner a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  background: var(--gb-green-soft);
  color: var(--gb-text);
  border: 1px solid rgba(76, 145, 81, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.category-rail-inner a:first-child {
  background: rgba(108, 191, 115, 0.12);
  color: var(--gb-primary-dark);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gb-primary-dark), var(--gb-primary));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(60, 140, 69, 0.18);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--gb-muted);
}

.search-shell {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4fbf4;
  border: 1px solid var(--gb-line);
  border-radius: 999px;
  padding: 0.68rem 1rem;
  color: var(--gb-muted);
  min-width: 0;
}

.search-shell input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  color: var(--gb-text);
  font: inherit;
}

.search-shell input::placeholder {
  color: var(--gb-muted);
}

.search-icon {
  color: var(--gb-primary-dark);
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gb-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 6px 0;
  color: #2f2a27;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gb-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.primary-btn {
  background: linear-gradient(135deg, var(--gb-primary-dark), var(--gb-primary));
  color: #fff;
  box-shadow: 0 8px 18px rgba(60, 140, 69, 0.18);
}

.secondary-btn {
  background: #ffffff;
  color: var(--gb-text);
  border: 1px solid var(--gb-line);
}

.ghost-btn {
  background: #fff;
  color: var(--gb-text);
  border: 1px solid var(--gb-line);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--gb-line);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(22, 28, 23, 0.32);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(420px, 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  box-shadow: -16px 0 40px rgba(20, 35, 22, 0.16);
  transform: translateX(105%);
  transition: transform 0.24s ease;
}

.cart-drawer.open { transform: translateX(0); }
.cart-open { overflow: hidden; }

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gb-line);
}

.cart-drawer-header .eyebrow { margin-bottom: 8px; }
.cart-drawer-header h2 { margin: 0; font-size: 1.55rem; }
.cart-close { width: 40px; height: 40px; padding: 0; font-size: 1.35rem; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 8px 0; }

.cart-drawer-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gb-line);
}

.cart-drawer-item .product-image { width: 58px; height: 58px; border-radius: 10px; }
.cart-drawer-item strong, .cart-drawer-item span { display: block; }
.cart-drawer-item span { margin-top: 5px; color: var(--gb-muted); font-size: 0.82rem; }
.cart-remove { background: transparent; color: var(--gb-muted); font-size: 1.3rem; padding: 6px; }
.cart-drawer-empty { flex: 1; padding-top: 48px; color: var(--gb-muted); }
.cart-drawer-summary { padding: 16px 0; border-top: 1px solid var(--gb-line); }
.cart-drawer-summary div { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; }
.cart-drawer-summary span { color: var(--gb-muted); }
.cart-drawer-actions { display: grid; gap: 10px; }

.hero {
  background: var(--gb-bg);
  padding: 10px 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 20px;
  align-items: center;
}

.hero-copy {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(17, 12, 8, 0.02);
  padding: 26px 24px 20px;
  min-height: 346px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(108, 191, 115, 0.12);
  color: var(--gb-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.1vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero-copy p {
  margin: 18px 0 0;
  color: var(--gb-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.hero-stats strong {
  display: block;
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.hero-stats span {
  color: var(--gb-muted);
  font-size: 0.8rem;
}


.hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4fbf4 0%, #ffffff 100%);
  border: 1px solid var(--gb-line);
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
}

.dashboard-card {
  width: min(420px, 100%);
  background: linear-gradient(160deg, #ffffff 0%, #f4fbf4 100%);
  border: 1px solid rgba(108, 191, 115, 0.18);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 22px rgba(60, 140, 69, 0.06);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.chip {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 158, 98, 0.12);
  color: var(--gb-success);
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.mini-metrics div {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 16px;
  padding: 16px;
}

.mini-metrics span {
  display: block;
  color: var(--gb-muted);
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.mini-metrics strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.sparkline {
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 0 8px 8px;
}

.bar {
  display: block;
  width: 100%;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #a7e5ab 0%, var(--gb-primary-dark) 100%);
}

.b1 { height: 38%; }
.b2 { height: 52%; }
.b3 { height: 44%; }
.b4 { height: 68%; }
.b5 { height: 82%; }
.b6 { height: 74%; }
.b7 { height: 96%; }

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--gb-line);
  border-radius: 16px;
  box-shadow: var(--gb-shadow);
  padding: 12px 16px;
}

.floating-card strong { font-size: 0.95rem; }
.floating-card span { color: var(--gb-muted); font-size: 0.8rem; }

.card-one { left: 18px; bottom: 18px; }
.card-two { right: 18px; top: 22px; }

.trust-strip {
  background: linear-gradient(180deg, #f7f5f1 0%, #f3efe8 100%);
  border-top: 1px solid var(--gb-line);
  border-bottom: 1px solid var(--gb-line);
  padding: 16px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  text-align: center;
  font-weight: 700;
  color: var(--gb-muted);
}

.trust-grid > div {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.promo-banner,
.offer-strip,
.category-showcase,
.brands-strip,
.feature-section,
.catalog,
.pricing {
  padding: 32px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #fffaf2 0%, #fff 100%);
  border: 1px solid var(--gb-line);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 22px rgba(17, 12, 8, 0.02);
}

.promo-copy {
  padding: 8px 4px;
}

.promo-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.promo-copy p {
  margin: 12px 0 0;
  color: var(--gb-muted);
  line-height: 1.7;
}

.deal-card {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(29, 31, 32, 0.03);
}

.deal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.deal-top span {
  color: var(--gb-muted);
  font-weight: 700;
}

.deal-top strong {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.deal-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--gb-muted);
  line-height: 2;
}

.offer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.offer-row.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.offer-row.carousel-track .offer-item {
  flex: 0 0 min(360px, 78vw);
  scroll-snap-align: start;
}

.offer-item {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 16px;
  padding: 18px 16px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-main { background: linear-gradient(135deg, #fff7e9 0%, #fff 100%); }
.offer-light { background: linear-gradient(135deg, #fff 0%, #fffaf2 100%); }

.offer-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.44rem 0.68rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gb-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-item h3 {
  margin: 14px 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.offer-item p {
  margin: 0;
  color: var(--gb-muted);
  line-height: 1.7;
}

.offer-item strong {
  margin-top: 12px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  letter-spacing: -0.05em;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.text-link {
  color: var(--gb-primary-dark);
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.carousel-track {
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-control {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gb-line);
  border-radius: 50%;
  background: #fff;
  color: var(--gb-primary-dark);
  font-weight: 800;
}

.category-grid.carousel-track {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
}

.category-grid.carousel-track .category-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
}

.brand-row.carousel-track {
  min-width: 0;
  padding: 4px 0;
}

.category-card {
  min-height: 146px;
  border-radius: 16px;
  border: 1px solid var(--gb-line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: none;
}

.category-card span {
  color: var(--gb-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.category-card strong {
  margin-top: 8px;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.category-1 { background: linear-gradient(135deg, #fff2de, #ffe4ad); }
.category-2 { background: linear-gradient(135deg, #fff6ea, #f7e3a7); }
.category-3 { background: linear-gradient(135deg, #fff3ef, #ffe0bc); }
.category-4 { background: linear-gradient(135deg, #fff4ea, #ffd8bf); }
.category-5 { background: linear-gradient(135deg, #fff8ea, #f9deab); }

.brand-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.brand-row::-webkit-scrollbar { display: none; }

.brand-pill { flex: 0 0 auto; }

.brand-pill {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 999px;
  padding: 0.82rem 1.15rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(16, 15, 12, 0.02);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 210px;
  box-shadow: 0 10px 22px rgba(14, 13, 10, 0.02);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--gb-muted);
  line-height: 1.8;
}

.market-highlights {
  padding-bottom: 36px;
}

.feedback-section {
  padding: 10px 0 36px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feedback-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 16px;
}

.feedback-card p {
  margin: 12px 0 16px;
  color: var(--gb-muted);
  line-height: 1.7;
}

.feedback-card > span:last-child {
  margin-top: 5px;
  color: var(--gb-muted);
  font-size: 0.78rem;
}

.feedback-rating {
  color: #e5a52e;
  letter-spacing: 0.08em;
}

.feedback-empty { grid-column: 1 / -1; }

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 18px;
  padding: 18px 16px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gb-primary-dark);
  font-weight: 800;
}

.highlight-card h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
}

.highlight-card p {
  margin: 0;
  color: var(--gb-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(22, 16, 10, 0.018);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card .product-image {
  border-bottom: 1px solid rgba(233, 224, 214, 0.75);
  min-height: 154px;
}

.product-body {
  padding: 14px 14px 16px;
}

.product-card:hover {
  box-shadow: 0 12px 20px rgba(19, 16, 10, 0.04);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(19, 16, 10, 0.05);
}

.product-image {
  height: 154px;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image .badge {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 800;
}

.img-1 { background: linear-gradient(135deg, #e9d7c7, #d39a63); }
.img-2 { background: linear-gradient(135deg, #f5d88a, #d98c29); }
.img-3 { background: linear-gradient(135deg, #d4f0f7, #6ba9bf); }
.img-4 { background: linear-gradient(135deg, #dfeeb7, #88b55f); }
.img-5 { background: linear-gradient(135deg, #f3df9a, #d29a31); }
.img-6 { background: linear-gradient(135deg, #d4efba, #7cc76a); }

.product-body {
  padding: 14px 14px 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--gb-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-body h3 {
  margin: 12px 0 16px;
  font-size: 1.08rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-foot strong {
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.product-foot button {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gb-primary-dark);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(20, 18, 12, 0.02);
}

.highlight-plan {
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
  border-color: rgba(245, 158, 11, 0.18);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-badge {
  display: inline-flex;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gb-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-top h3 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 20px 0;
}

.price-line span {
  font-size: 1.5rem;
  font-weight: 800;
}

.price-line strong {
  font-size: 3.8rem;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.price-line small { color: var(--gb-muted); }

.pricing-card ul {
  padding-left: 18px;
  line-height: 2;
  color: var(--gb-muted);
  margin: 0 0 22px;
}

.info-panel h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gb-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gb-line);
}

.meta-row strong { color: var(--gb-text); }

.site-footer {
  background: #171819;
  color: rgba(255,255,255,0.8);
  padding-top: 38px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 18px;
}

.footer-inner h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-inner p {
  margin: 8px 0;
  color: rgba(255,255,255,0.7);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 24px;
  color: rgba(255,255,255,0.7);
}

.full { width: 100%; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid,
  .promo-grid,
  .feature-grid,
  .product-grid,
  .pricing-grid,
  .trust-grid,
  .footer-inner,
  .offer-row {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-grid { grid-template-columns: 1fr 1fr; }

  .nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--gb-line);
    border-radius: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--gb-shadow);
    display: none;
  }

  .nav.open { display: flex; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .split-heading { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero-grid,
  .promo-grid,
  .feature-grid,
  .product-grid,
  .pricing-grid,
  .trust-grid,
  .footer-inner,
  .offer-row,
    .category-grid,
    .feedback-grid {
    grid-template-columns: 1fr;
  }

  .nav-actions .ghost-btn,
  .nav-actions .primary-btn {
    display: none;
  }

  .carousel-shell { gap: 6px; }
  .carousel-control { width: 34px; height: 34px; }

  .hero-copy {
    padding: 22px;
    min-height: auto;
  }

  .promo-grid { padding: 18px; }
  .hero-copy h1 { font-size: 2.4rem; }
  .card-one, .card-two { position: static; margin-top: 12px; }
  .hero-visual { display: block; min-height: auto; }
}
