/* ==========================================================================
   Trimbak Organics — design system
   Plain CSS, mobile-first, no framework, no external font/asset fetches.
   ========================================================================== */

:root {
  /* palette */
  --green-900: #12291b;
  --green-800: #1a3d27;
  --green-700: #205631;
  --green-600: #2c7a45;
  --green-500: #3c9457;
  --green-100: #e6f1e8;
  --green-050: #f2f8f2;
  --cream: #faf7ef;
  --white: #ffffff;
  --charcoal: #23241f;
  --charcoal-soft: #5c5c54;
  --line: #e4ddc9;
  --amber: #d98e2b;
  --amber-dark: #b06f1a;

  /* type */
  --font-head: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --max-width: 1180px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px -12px rgba(18, 41, 27, 0.25);
  --shadow-sm: 0 4px 14px -6px rgba(18, 41, 27, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--green-900);
}
p { margin: 0 0 1em; color: var(--charcoal-soft); }
button { font-family: inherit; cursor: pointer; }

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--green-600);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { margin: 0; }
.bg-tint { background: var(--green-050); }
.bg-deep {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.88);
}
.bg-deep h2, .bg-deep h3, .bg-deep h4 { color: #fff; }
.bg-deep p { color: rgba(255, 255, 255, 0.68); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--green-900); }
.btn-primary:hover { background: var(--amber-dark); }
.btn-outline { border-color: currentColor; color: var(--green-900); }
.btn-outline:hover { background: var(--green-900); color: #fff; border-color: var(--green-900); }
.bg-deep .btn-outline { color: #fff; }
.bg-deep .btn-outline:hover { background: #fff; color: var(--green-900); }
.mobile-menu .btn-outline { color: #fff; }
.mobile-menu .btn-outline:hover { background: #fff; color: var(--green-900); }
.hero .btn-outline { color: #fff; }
.hero .btn-outline:hover { background: #fff; color: var(--green-900); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* placeholder-content marker (visual, subtle — sample copy to replace) */
.sample-copy { position: relative; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 239, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--green-900);
}
.brand .mark {
  width: 38px;
  height: 38px;
  color: var(--green-600);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--charcoal-soft);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links > li { position: relative; }
.nav-links a.link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-900);
  padding: 8px 0;
}
.nav-links a.link:hover { color: var(--green-600); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > .link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
}
.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.submenu li a:hover { background: var(--green-050); color: var(--green-700); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
  padding: 6px 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--green-900); border-radius: 2px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-900);
  padding: 90px 32px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a.link {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .dropdown > .link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.mobile-menu .dropdown.open > .link::after { transform: rotate(225deg); }
.mobile-menu .submenu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: none;
  box-shadow: none;
  padding: 0 0 10px 14px;
  display: none;
}
.mobile-menu .dropdown.open .submenu { display: block; }
.mobile-menu .submenu li a {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 0;
  border: none;
}
.mobile-menu .nav-cta { margin-top: 24px; }
.mobile-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
}
body.nav-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--green-700) 0%, var(--green-900) 62%);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.06) 0, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.05) 0, transparent 40%);
  pointer-events: none;
}
.hero .wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--amber); }
.hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-art .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.25);
}
.hero-art .ring.r1 { width: 340px; height: 340px; }
.hero-art .ring.r2 { width: 430px; height: 430px; border-style: solid; border-color: rgba(255,255,255,0.1); }
.hero-bottles { display: flex; gap: 18px; align-items: flex-end; position: relative; }
.hero-bottles .bottle-wrap:nth-child(2) { transform: translateY(-18px) scale(1.08); z-index: 2; }
.hero-bottles .bottle-wrap:nth-child(3) { transform: translateY(6px); }

/* ==========================================================================
   Value props
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card .icon {
  width: 46px;
  height: 46px;
  color: var(--green-600);
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   About split
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--green-100);
  padding: 40px;
  display: grid;
  place-items: center;
  min-height: 360px;
}
.about-visual .leaf-badge {
  width: 130px;
  height: 130px;
  color: var(--green-600);
}
.about-copy .eyebrow {
  color: var(--green-600);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.about-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 8px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-050);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-800);
}
.badge-chip svg { width: 16px; height: 16px; color: var(--green-600); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-unit .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--amber);
  display: block;
}
.stat-unit p { color: rgba(255,255,255,0.68); margin: 6px 0 0; font-size: 0.9rem; }

/* ==========================================================================
   Product cards / bottle placeholder
   ========================================================================== */
.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.category-tabs a {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  transition: all 0.15s ease;
}
.category-tabs a:hover { border-color: var(--green-600); color: var(--green-700); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  --accent: var(--green-600);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-photo {
  background: linear-gradient(160deg, var(--green-050) 0%, #fff 70%);
  padding: 26px 26px 8px;
  display: grid;
  place-items: center;
  min-height: 200px;
}
.product-photo img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  object-fit: contain;
}
.product-card .category-tag {
  align-self: flex-start;
  margin: 16px 20px 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.product-card .body { padding: 8px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.08rem; margin-bottom: 4px; }
.product-card .spec-line {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin-bottom: 12px;
}
.product-card .desc { font-size: 0.88rem; margin-bottom: 16px; flex: 1; }
.product-card .card-actions { display: flex; justify-content: space-between; align-items: center; }
.product-card .view-link {
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.product-card .view-link svg { width: 14px; height: 14px; }

/* bottle SVG placeholder (colors set via fill/stroke="var(--accent)" attributes
   directly on the <symbol> children — class selectors from this sheet can't
   reach into a <use> element's cloned shadow content) */
.bottle { width: 92px; height: 168px; }
.bottle-wrap.lg .bottle { width: 118px; height: 214px; }

/* ==========================================================================
   Featured product banner
   ========================================================================== */
.feature-banner {
  background: var(--green-700);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.feature-banner .tag {
  display: inline-block;
  background: var(--amber);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.feature-banner h3 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.feature-banner p { color: rgba(255,255,255,0.75); max-width: 46ch; }
.feature-banner .bottle { --accent: var(--amber); width: 130px; height: 236px; }
.feature-banner > img { width: auto; max-width: 150px; max-height: 236px; object-fit: contain; border-radius: 8px; }

/* ==========================================================================
   Recommended crops band
   ========================================================================== */
.crop-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.crop-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-800);
}
.crop-chip svg { width: 26px; height: 26px; color: var(--green-600); margin: 0 auto 8px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 16px;
}
.info-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.info-card .row { display: flex; gap: 14px; margin-bottom: 18px; }
.info-card .row:last-child { margin-bottom: 0; }
.contact-solo { max-width: 560px; margin: 0 auto; }
.contact-solo .info-card { margin-bottom: 0; }
.btn-whatsapp { background: #25d366; color: #fff; width: 100%; justify-content: center; margin-top: 22px; }
.btn-whatsapp:hover { background: #1da851; }
.btn-whatsapp svg { width: 18px; height: 18px; }
.info-card .row svg { width: 22px; height: 22px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green-800);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--cream);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: #fff;
}
.form-note { font-size: 0.78rem; color: var(--charcoal-soft); margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 64px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { color: #fff; }
.footer-brand p { max-width: 34ch; margin-top: 14px; }
.footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--amber); border-color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Products page — spec cards
   ========================================================================== */
.catalog-category { margin-bottom: 64px; }
.catalog-category:last-child { margin-bottom: 0; }
.catalog-category h2 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.catalog-category h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.catalog-category > p { max-width: 60ch; margin-top: -6px; margin-bottom: 32px; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.spec-card {
  --accent: var(--green-600);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 26px;
}
.spec-card .product-photo {
  min-height: 0;
  padding: 0;
  background: none;
  align-self: start;
}
.spec-card .product-photo img {
  max-height: 230px;
}
.spec-card h3 { font-size: 1.12rem; margin-bottom: 2px; }
.spec-card .spec-line { color: var(--accent); font-weight: 700; font-size: 0.8rem; margin-bottom: 10px; }
.spec-card dl { margin: 14px 0 0; font-size: 0.85rem; }
.spec-card dt {
  font-weight: 700;
  color: var(--green-800);
  margin-top: 10px;
}
.spec-card dt:first-child { margin-top: 0; }
.spec-card dd { margin: 3px 0 0; color: var(--charcoal-soft); }
.spec-card .crop-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.spec-card .crop-tags span {
  background: var(--green-050);
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.catalog-hero {
  background: var(--green-900);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.catalog-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.catalog-hero p { color: rgba(255,255,255,0.7); max-width: 56ch; margin: 12px auto 0; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .crop-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid { grid-template-columns: 1fr; }
  .feature-banner { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .feature-banner .bottle, .feature-banner > img { margin: 0 auto; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav .nav-cta .btn-primary { display: none; }
  .hero .wrapper { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art .ring, .hero-bottles { transform: scale(0.85); }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .value-grid, .product-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .crop-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .spec-card { grid-template-columns: 1fr; }
  .spec-card .product-photo { justify-self: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
