/* ==========================================================================
   Shengchen International Trade — brand showcase
   Design tokens
   ========================================================================== */
:root {
  --green-950: #0E2E1D;
  --green-900: #123B26;
  --green-800: #16512F;
  --green-700: #1B5E3B;
  --green-100: #DDEBE0;
  --green-050: #EFF6F0;
  --gold: #E8C776;
  --gold-deep: #9A742A;
  --ink: #1C2A22;
  --ink-soft: #4C5A52;
  --paper: #FAF8F3;
  --white: #FFFFFF;
  --line: #E4E0D5;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(18, 43, 28, .06), 0 2px 8px rgba(18, 43, 28, .06);
  --shadow-md: 0 4px 12px rgba(18, 43, 28, .08), 0 12px 32px rgba(18, 43, 28, .10);
  --font-serif: "Noto Serif SC", "Songti SC", serif;
  --font-sans: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --dur: 220ms;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p, dl, dd, dt, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 2px; border-radius: 4px; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }

/* Type ------------------------------------------------------------------- */
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
  letter-spacing: .01em;
  margin-bottom: 16px;
}
.section-sub, .lead { font-size: 17px; color: var(--ink-soft); max-width: 640px; }
.lead { font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.section-sub-light { font-size: 17px; color: rgba(255, 255, 255, .78); max-width: 560px; }
.section { padding-block: clamp(64px, 9vw, 110px); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  white-space: nowrap;
  min-height: 48px; padding: 12px 28px;
  border-radius: 999px; font-weight: 700; font-size: 15.5px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), color var(--dur) var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-800); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--green-950); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: #F0D28A; box-shadow: var(--shadow-md); }
.btn-outline-light { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-sm { min-height: 42px; padding: 8px 20px; font-size: 14.5px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 2px 16px rgba(18, 43, 28, .06); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  background: var(--green-700); color: var(--gold);
  font-family: var(--font-serif); font-weight: 900; font-size: 22px;
  border-radius: 12px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; white-space: nowrap; }
.logo-text strong { font-size: 16px; font-weight: 700; letter-spacing: .02em; }
.logo-text small { font-size: 9.5px; letter-spacing: .1em; color: var(--ink-soft); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 10px 13px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.main-nav a:hover { color: var(--green-800); background: var(--green-050); }
.main-nav a.is-current { color: var(--green-800); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px; min-height: 42px;
  white-space: nowrap; flex: none;
  border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: border-color var(--dur) var(--ease);
}
.lang-toggle:hover { border-color: var(--green-700); }
.lang-opt { opacity: .45; transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease); }
.lang-opt.is-active { opacity: 1; color: var(--green-800); }
.lang-sep { opacity: .35; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(232, 199, 118, .16), transparent 60%),
    linear-gradient(160deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-800) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
  padding-block: clamp(64px, 8vw, 104px);
}
.hero .eyebrow { color: var(--gold); }
.hero-title {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(34px, 5.2vw, 56px); line-height: 1.22; letter-spacing: .01em;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255, 255, 255, .82); max-width: 540px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px);
  padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .16);
}
.stat-num {
  font-family: "Manrope", sans-serif; font-weight: 800;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.1; color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat-num i { font-style: normal; color: var(--gold); }
.hero-stats dd { font-size: 14px; color: rgba(255, 255, 255, .7); margin-top: 6px; }

.hero-img-card {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
  transform: rotate(1.2deg);
}
.hero-img-card img { width: 100%; height: auto; }
.hero-badge {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 12px;
  background: rgba(14, 46, 29, .82); backdrop-filter: blur(8px);
  font-size: 13.5px; font-weight: 600; color: #fff; line-height: 1.45;
}
.hero-badge svg { width: 18px; height: 18px; flex: none; color: var(--gold); }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(36px, 6vw, 72px); align-items: start;
}
.about-copy p:not(.lead):not(.eyebrow) { color: var(--ink-soft); margin-bottom: 14px; }

.about-points { display: grid; gap: 14px; }
.about-points li {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.about-points li:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.point-icon {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  border-radius: 12px; background: var(--green-050); color: var(--green-700);
}
.point-icon svg { width: 22px; height: 22px; }
.about-points h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
.about-points p { font-size: 14.5px; color: var(--ink-soft); }

.cat-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(36px, 5vw, 56px);
}
.cat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; min-height: 44px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.cat-chip:hover { border-color: var(--green-700); background: var(--green-050); }
.cat-chip svg { width: 18px; height: 18px; color: var(--green-700); flex: none; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon {
  display: grid; place-items: center; width: 54px; height: 54px;
  border-radius: 14px; background: var(--green-700); color: var(--gold);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card > p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.service-list { display: grid; gap: 8px; }
.service-list li {
  position: relative; padding-left: 22px;
  font-size: 14.5px; font-weight: 600; color: var(--green-800);
}
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep);
  transform: rotate(-45deg);
}

.oem-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: clamp(36px, 5vw, 56px); padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px dashed var(--line);
}
.oem-num {
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 15px;
  color: var(--gold-deep); letter-spacing: .08em;
}
.oem-step h4 { font-size: 16.5px; font-weight: 700; margin: 6px 0 4px; }
.oem-step p { font-size: 14px; color: var(--ink-soft); }

/* ==========================================================================
   Brands
   ========================================================================== */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.brand-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.brand-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-050); }
.brand-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms var(--ease);
}
.brand-card:hover .brand-media img { transform: scale(1.04); }
.brand-body { padding: 24px 26px 28px; }
.brand-body h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 900;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.brand-en { font-family: "Manrope", sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; color: var(--gold-deep); }
.brand-tag { font-size: 13.5px; font-weight: 700; color: var(--green-700); margin: 6px 0 10px; }
.brand-body > p:last-child { font-size: 14.5px; color: var(--ink-soft); }

/* ==========================================================================
   Products
   ========================================================================== */
.products { background: var(--white); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-chip {
  padding: 10px 22px; min-height: 44px;
  border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  transition: all var(--dur) var(--ease);
}
.filter-chip:hover { border-color: var(--green-700); color: var(--green-800); }
.filter-chip.is-active { background: var(--green-700); border-color: var(--green-700); color: #fff; }

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease),
              opacity 300ms var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card.is-hidden { display: none; }
.product-media {
  aspect-ratio: 1 / 1; display: grid; place-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F1E8 100%);
  padding: 18px; overflow: hidden;
}
.product-media img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.product-media.tall img { max-height: 100%; }
.product-body { padding: 16px 18px 20px; }
.product-brand {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--gold-deep); text-transform: uppercase;
}
.product-body h3 { font-size: 16px; font-weight: 700; margin: 4px 0 2px; line-height: 1.4; }
.product-cat { font-size: 12.5px; color: var(--ink-soft); }
.products-note { margin-top: 28px; font-size: 14px; color: var(--ink-soft); }

/* ==========================================================================
   Global
   ========================================================================== */
.global {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(232, 199, 118, .12), transparent 55%),
    linear-gradient(150deg, var(--green-950), var(--green-900));
  color: #fff;
}
.global .section-title { color: #fff; }
.global-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
.channel-list { display: grid; gap: 18px; margin: 32px 0; }
.channel-list li { display: flex; gap: 16px; align-items: flex-start; }
.channel-list svg {
  width: 24px; height: 24px; flex: none; margin-top: 3px; color: var(--gold);
}
.channel-list h3 { font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.channel-list p { font-size: 14.5px; color: rgba(255, 255, 255, .72); }

.global-stats {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 44px);
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .16);
}
.gstat { display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; color: rgba(255, 255, 255, .7); }
.gstat-num {
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 30px; color: #fff;
  font-variant-numeric: tabular-nums;
}
.gstat-num i { font-style: normal; color: var(--gold); }

.global-gallery {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.global-gallery figure {
  border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}
.global-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms var(--ease);
}
.global-gallery figure:hover img { transform: scale(1.05); }
.gallery-note {
  grid-column: 1 / -1; text-align: center;
  font-size: 13px; color: rgba(255, 255, 255, .6); letter-spacing: .06em;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 72px); align-items: start;
}
.contact-email {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 22px 0; padding: 16px 24px;
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 17px; color: var(--green-800);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-email:hover { border-color: var(--green-700); box-shadow: var(--shadow-sm); }
.contact-email svg { width: 22px; height: 22px; color: var(--gold-deep); }
.contact-points { display: grid; gap: 10px; }
.contact-points li {
  position: relative; padding-left: 24px; font-size: 15px; color: var(--ink-soft);
}
.contact-points li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--green-700); border-bottom: 2px solid var(--green-700);
  transform: rotate(-45deg);
}

.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; min-height: 48px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--green-700); background: var(--white);
}
.form-field input.is-invalid, .form-field textarea.is-invalid { border-color: #C0392B; }
.form-error { color: #C0392B; font-size: 14px; margin-bottom: 14px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--ink-soft); text-align: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-950); color: rgba(255, 255, 255, .8); }
.footer-inner {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 6vw, 72px);
}
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text small { color: rgba(255, 255, 255, .55); }
.footer-brand p { margin-top: 18px; font-size: 14.5px; max-width: 320px; color: rgba(255, 255, 255, .66); }
.footer-nav { display: grid; gap: 10px; align-content: start; }
.footer-nav a {
  font-size: 14.5px; color: rgba(255, 255, 255, .72); width: fit-content;
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-contact a {
  font-family: "Manrope", sans-serif; font-weight: 600; color: var(--gold);
  font-size: 15px;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 22px; font-size: 13px; color: rgba(255, 255, 255, .5);
}
.footer-bottom p { margin: 0; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
html.js .reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid, .brand-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .oem-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 640px; }
  .global-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* header collapses to burger earlier so EN labels never wrap */
@media (max-width: 1080px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; z-index: 99;
    flex-direction: column; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    box-shadow: 0 16px 32px rgba(18, 43, 28, .12);
    transform: translateY(-120%); visibility: hidden;
    transition: transform 280ms var(--ease), visibility 0s 280ms;
  }
  .main-nav.is-open { transform: translateY(0); visibility: visible; transition: transform 280ms var(--ease); }
  .main-nav a { padding: 14px 10px; font-size: 16px; border-radius: 10px; }
  .nav-burger { display: flex; }
}

@media (max-width: 760px) {
  .header-cta { display: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .global-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-body h3 { font-size: 14.5px; }
  .logo-text small { display: none; }
}
