/* ============================================================
   Yiwu Weiang Trading Co., Ltd. — Camo Nets & Outdoor Gear
   Military-outdoor style stylesheet
   ============================================================ */

:root {
  --olive-900: #232b1c;
  --olive-800: #2f3a26;
  --olive-700: #3c4a2f;
  --olive-600: #4a5a3a;
  --olive-500: #5d6e49;
  --khaki: #c9b98a;
  --sand: #e8e2d0;
  --paper: #f5f3ec;
  --white: #ffffff;
  --ink: #23281e;
  --ink-soft: #5a5f52;
  --accent: #e8762d;
  --accent-dark: #c95f1d;
  --wa: #25d366;
  --border: #dcd7c8;
  --shadow: 0 4px 18px rgba(35, 43, 28, 0.12);
  --radius: 6px;
  --font-head: "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

.section { padding: 78px 0; }
.section-tint { background: var(--white); }
.section-dark { background: var(--olive-800); color: var(--sand); }

.section-head { margin-bottom: 44px; }
.section-head .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(26px, 4vw, 38px); line-height: 1.15; }
.section-head p { margin-top: 12px; color: var(--ink-soft); max-width: 640px; }
.section-dark .section-head p { color: #b9bfa9; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--olive-900);
  color: #aeb59d;
  font-size: 13px;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.topbar a:hover { color: var(--khaki); }
.topbar .tb-right { display: flex; gap: 18px; }

/* ---------- Navbar ---------- */
.navbar {
  background: var(--olive-800);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand .logo {
  width: 42px; height: 42px; border-radius: 6px;
  background: linear-gradient(135deg, var(--olive-600), var(--olive-800));
  display: grid; place-items: center;
  border: 1px solid rgba(201,185,138,0.4);
  flex: none;
}
.brand .logo svg { width: 26px; height: 26px; }
.brand .name { font-family: var(--font-head); font-size: 19px; letter-spacing: 1px; line-height: 1.1; white-space: nowrap; }
.brand .name small { display: block; font-size: 10px; letter-spacing: 2.6px; color: var(--khaki); font-weight: 400; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: #d9ddca; padding: 9px 14px; border-radius: 4px;
  font-family: var(--font-head); font-size: 14.5px; letter-spacing: 1.4px; text-transform: uppercase;
  transition: 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.09); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; border: 1px solid rgba(201,185,138,0.45); border-radius: 4px; overflow: hidden;
}
.lang-toggle button {
  background: transparent; border: 0; color: var(--khaki); cursor: pointer;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; padding: 6px 11px; white-space: nowrap;
}
.lang-toggle button.active { background: var(--khaki); color: var(--olive-900); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-size: 14.5px; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 12px 24px; border-radius: 4px; border: 0; cursor: pointer; transition: 0.18s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: var(--khaki); color: var(--khaki); }
.btn-outline-dark { background: transparent; color: var(--olive-800); border: 1.5px solid var(--olive-800); }
.btn-outline-dark:hover { background: var(--olive-800); color: var(--white); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1fb455; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--sand); margin: 5px 0; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background: var(--olive-900);
  min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero .bg { position: absolute; inset: 0; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24,30,17,0.92) 15%, rgba(24,30,17,0.45) 60%, rgba(24,30,17,0.2));
}
.hero .container { position: relative; z-index: 2; padding: 90px 22px; }
.hero .kicker {
  display: inline-block; font-family: var(--font-head); font-size: 13px; letter-spacing: 3.5px;
  color: var(--khaki); border: 1px solid rgba(201,185,138,0.5); padding: 6px 14px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.08; max-width: 720px; }
.hero h1 .accent { color: var(--accent); }
.hero p.sub { margin: 20px 0 34px; max-width: 560px; color: #d5d8c6; font-size: 18px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 42px; margin-top: 54px; flex-wrap: wrap;
}
.hero-stats .stat b { font-family: var(--font-head); font-size: 32px; color: var(--khaki); display: block; line-height: 1; }
.hero-stats .stat span { font-size: 13.5px; color: #b9bfa9; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Marquee strip ---------- */
.strip { background: var(--accent); color: #fff; padding: 11px 0; overflow: hidden; white-space: nowrap; }
.strip .track { display: inline-block; animation: slide 26s linear infinite; font-family: var(--font-head); letter-spacing: 2.5px; font-size: 14px; }
.strip .track span { margin: 0 26px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(24,30,17,0.88)); }
.cat-card .body { position: relative; z-index: 2; padding: 22px; color: #fff; width: 100%; }
.cat-card .body h3 { font-size: 21px; margin-bottom: 6px; }
.cat-card .body p { font-size: 14px; color: #d5d8c6; margin-bottom: 12px; }
.cat-card .body .more { font-family: var(--font-head); font-size: 13px; letter-spacing: 2px; color: var(--khaki); }
.cat-card:hover .body .more { color: var(--accent); }

/* five-up category row (Camo · Tarps · Tactical · Camping · Heating) */
.cat-grid-5 { grid-template-columns: repeat(5, 1fr); }
.cat-grid-5 .cat-card { min-height: 280px; }
.cat-grid-5 .cat-card .body { padding: 18px 16px; }
.cat-grid-5 .cat-card .body h3 { font-size: 17.5px; }
.cat-grid-5 .cat-card .body p { font-size: 13px; }

/* ---------- Application gallery ---------- */
.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 22px; }
.app-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin: 0;
}
.app-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.app-card figcaption { padding: 18px 18px 20px; }
.app-card figcaption h3 { font-size: 16.5px; margin-bottom: 6px; color: var(--olive-800); }
.app-card figcaption p { font-size: 13.8px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Mini stats (trust row) ---------- */
.mini-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 22px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; margin: 4px 0 24px;
}
.mini-stats b { font-family: var(--font-head); font-size: 26px; color: var(--olive-700); display: block; line-height: 1.1; }
.mini-stats span { font-size: 12.5px; letter-spacing: 0.6px; color: var(--ink-soft); text-transform: uppercase; }

/* ---------- Heating element section ---------- */
.heat-cols { margin-bottom: 34px; }
.heat-cols .check-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 34px; margin: 0;
}
.heat-grid { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 24px; }
.prod-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: 0.2s;
  border: 1px solid var(--border);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(35,43,28,0.18); }
.prod-card .thumb { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.prod-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.prod-card:hover .thumb img { transform: scale(1.05); }
.prod-card .tag {
  position: absolute; top: 12px; left: 12px; background: var(--olive-800); color: var(--khaki);
  font-family: var(--font-head); font-size: 11.5px; letter-spacing: 1.6px; padding: 4px 10px; border-radius: 3px;
  text-transform: uppercase;
}
.prod-card .info { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-card .info h3 { font-size: 17.5px; line-height: 1.25; }
.prod-card .info .meta { font-size: 13.5px; color: var(--ink-soft); }
.prod-card .info .row { margin-top: auto; display: flex; gap: 10px; }
.prod-card .btn { padding: 9px 16px; font-size: 13px; flex: 1; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.filter-bar button {
  font-family: var(--font-head); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--white); border: 1.5px solid var(--border); color: var(--ink-soft);
  padding: 9px 20px; border-radius: 4px; cursor: pointer; transition: 0.18s;
}
.filter-bar button:hover { border-color: var(--olive-600); color: var(--olive-700); }
.filter-bar button.active { background: var(--olive-800); border-color: var(--olive-800); color: var(--khaki); }

/* ---------- Feature / why-us ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.feat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,185,138,0.25);
  border-radius: var(--radius); padding: 28px 24px;
}
.feat .ico {
  width: 52px; height: 52px; border-radius: 6px; background: rgba(232,118,45,0.15);
  display: grid; place-items: center; margin-bottom: 16px; color: var(--accent);
}
.feat h3 { color: var(--sand); font-size: 18px; margin-bottom: 8px; }
.feat p { color: #b9bfa9; font-size: 14.5px; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center; }
.split .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 16px; }
.split p { color: var(--ink-soft); margin-bottom: 14px; }
.check-list { list-style: none; margin: 18px 0 26px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 4px; background: var(--olive-700); color: var(--khaki);
  font-size: 12.5px; display: grid; place-items: center; font-weight: 700;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-size: 34px; color: rgba(74,90,58,0.22); display: block; margin-bottom: 6px;
}
.step h3 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Certs / badges ---------- */
.badges { display: flex; gap: 16px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--white);
  border: 1px solid var(--border); border-radius: 4px; padding: 12px 20px;
  font-family: var(--font-head); letter-spacing: 1.5px; font-size: 14.5px; color: var(--olive-700);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(100deg, var(--olive-900), var(--olive-700));
  color: #fff; text-align: center; padding: 72px 22px;
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.cta-band p { color: #c8cdb6; margin-bottom: 30px; font-size: 17px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: start; }
.info-card {
  background: var(--olive-800); color: var(--sand); border-radius: var(--radius);
  padding: 30px 26px; margin-bottom: 20px;
}
.info-card h3 { color: var(--white); font-size: 18px; margin-bottom: 14px; }
.info-line { display: flex; gap: 14px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid rgba(201,185,138,0.18); font-size: 15px; }
.info-line:last-child { border-bottom: 0; }
.info-line .ic { color: var(--accent); flex: none; margin-top: 2px; }
.info-line a:hover { color: var(--khaki); }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 24px; margin-bottom: 6px; }
.form-card .hint { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-head); font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 6px; color: var(--olive-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; background: var(--paper); color: var(--ink);
  transition: 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive-600); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-size: 16.5px;
  letter-spacing: 0.6px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--accent); transition: 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(24,30,17,0.72); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 22px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 8px; max-width: 880px; width: 100%;
  max-height: 88vh; overflow-y: auto; overflow-x: hidden; position: relative; animation: pop 0.22s ease;
}
@keyframes pop { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal .close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  border: 0; background: rgba(35,43,28,0.85); color: #fff; font-size: 17px; cursor: pointer; z-index: 5;
}
.modal .layout { display: grid; grid-template-columns: 400px minmax(0, 1fr); align-items: stretch; }
.modal .layout .img { position: relative; min-height: 400px; background: var(--sand); }
.modal .layout .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* White-background studio shots (heating line) must not be cover-cropped — the product
   would lose its ends in this portrait panel. Contain it on a matching white field. */
.modal .layout .img.studio { background: #fff; }
.modal .layout .img.studio img { object-fit: contain; padding: 6%; }
.modal .body { padding: 32px 28px; min-width: 0; }
.modal .body .cat-tag { color: var(--accent); font-family: var(--font-head); font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; }
.modal .body h3 { font-size: 25px; margin: 6px 0 14px; line-height: 1.2; }
.modal .body p.desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 14.5px; table-layout: fixed; }
.spec-table th, .spec-table td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border); word-break: break-word; vertical-align: top; }
.spec-table th { color: var(--olive-700); font-family: var(--font-head); letter-spacing: 0.8px; font-size: 13px; width: 40%; }
.modal .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(37,211,102,0.42);
  transition: 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Page header (inner pages) ---------- */
.page-head {
  background: var(--olive-800); color: #fff; padding: 64px 0;
  position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; inset: 0; opacity: 0.12;
  background-image: radial-gradient(circle at 20% 30%, var(--khaki) 0 6%, transparent 7%),
    radial-gradient(circle at 68% 60%, var(--olive-500) 0 9%, transparent 10%),
    radial-gradient(circle at 85% 20%, var(--accent) 0 5%, transparent 6%),
    radial-gradient(circle at 40% 80%, var(--khaki) 0 7%, transparent 8%);
  background-size: 420px 420px;
}
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { font-size: clamp(30px, 5vw, 44px); }
.page-head .crumb { color: var(--khaki); font-family: var(--font-head); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; }

/* ---------- Footer ---------- */
footer { background: var(--olive-900); color: #a7ae95; padding: 60px 0 0; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 38px; padding-bottom: 44px; }
.foot-grid h4 { color: var(--white); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 9px; }
.foot-grid a:hover { color: var(--khaki); }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { line-height: 1.7; }
.foot-bottom {
  border-top: 1px solid rgba(201,185,138,0.15); padding: 18px 0; text-align: center;
  font-size: 13px; color: #7d846c;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cat-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .modal .layout { grid-template-columns: 1fr; }
  .modal .layout .img { min-height: 280px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 66px; left: 0; right: 0; background: var(--olive-800);
    flex-direction: column; align-items: stretch; padding: 12px 22px 20px; gap: 4px;
    display: none; box-shadow: 0 12px 22px rgba(0,0,0,0.35);
  }
  .nav-links.open { display: flex; }
  .nav-cta .btn { display: none; }
  .section { padding: 56px 0; }
}
@media (max-width: 700px) {
  .heat-cols .check-list { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr 1fr; }
  /* The topbar wraps to three rows on phones and eats the first screen.
     Drop the location chip and tighten the type so it fits in two lines. */
  .topbar { font-size: 12px; padding: 6px 0; }
  .topbar .container { gap: 6px 12px; }
  .topbar .tb-right { gap: 12px; }
  .topbar .tb-right > span:last-child { display: none; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero .container { padding: 64px 22px; }
  .cat-grid-5 { grid-template-columns: 1fr; }
}
