/* Kiwi Nails Fasteners Ltd — site stylesheet (v2)
 * Brand palette matches the official 2020 product catalogue:
 *   Navy   #1f3a6b / #16294d  (headings, structure)
 *   Orange #E87722              (accent, CTAs, links)
 */

:root {
  --orange: #E87722;
  --orange-dark: #c4631a;
  --orange-soft: #fbe9d8;
  --navy: #1f3a6b;
  --navy-deep: #16294d;
  --navy-soft: #e8eef8;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-light: #fafbfc;
  --bg-dark: #16294d;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(16,32,80,0.04), 0 2px 8px rgba(16,32,80,0.04);
  --shadow-md: 0 6px 24px rgba(16,32,80,0.08);
  --shadow-lg: 0 20px 50px rgba(16,32,80,0.12);

  --container: 1280px;
  --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: 200ms cubic-bezier(.4,.0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

a { color: var(--orange-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Top utility bar ────────────────────────────────────────────── */
.topbar {
  background: var(--navy-deep);
  color: #cfd6e3;
  font-size: 13px;
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.topbar a { color: #ffce99; }
.topbar a:hover { color: #fff; }
.topbar .sep { color: #4f6396; margin: 0 10px; }
.topbar .pill {
  background: rgba(232,119,34,0.18); color: #ffd2a8;
  padding: 2px 10px; border-radius: 999px; font-size: 11px; letter-spacing: 1px; font-weight: 600;
}
@media (max-width: 700px) {
  .topbar .right { display: none; }
}

/* ── Header / nav ──────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.brand img { height: 56px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav a.active, .nav a:hover { color: var(--orange-dark); }
.nav a.active::after, .nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--orange);
}
.nav .cta {
  background: var(--orange); color: #fff; padding: 10px 18px; border-radius: var(--radius-sm);
  font-weight: 600; transition: background var(--transition), transform var(--transition);
}
.nav .cta:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); }
.nav .cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--navy); }

@media (max-width: 980px) {
  .nav { position: absolute; top: 84px; left: 0; right: 0; flex-direction: column;
         background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px;
         box-shadow: var(--shadow-md); display: none; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #25446e 100%);
  color: #fff;
  padding: 90px 24px 110px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; right: -200px; top: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,119,34,0.25), transparent 60%);
  pointer-events: none;
}
.hero .inner {
  max-width: var(--container); margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: center;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: rgba(232,119,34,0.2); color: #ffce99;
  border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; margin: 0 0 22px;
  font-weight: 800; letter-spacing: -0.6px;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead { font-size: 18px; color: #d4dbeb; margin: 0 0 30px; max-width: 540px; line-height: 1.6; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; padding: 14px 24px;
  border-radius: var(--radius-sm); font-weight: 600;
  border: 0; transition: all var(--transition);
  font-size: 15px; text-decoration: none;
}
.btn:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn.outline { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn.outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn.navy { background: var(--navy); color: #fff; }
.btn.navy:hover { background: var(--navy-deep); }
.btn.ghost { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn.ghost:hover { background: var(--navy-soft); color: var(--navy); }

.hero .btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-cert {
  display: flex; flex-wrap: wrap; gap: 22px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-cert div { display: flex; flex-direction: column; gap: 2px; }
.hero-cert div b { color: var(--orange); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.hero-cert div span { color: #d4dbeb; font-size: 13.5px; }

.hero-art {
  background: rgba(255,255,255,0.05); border-radius: var(--radius-lg);
  padding: 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero { padding: 60px 24px 70px; }
  .hero .inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 480px; margin: 0 auto; }
}

/* ── Cert strip (under hero) ───────────────────────────────────── */
.cert-strip {
  background: var(--bg-light);
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}
.cert-strip .inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cert-strip .label { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.cert-strip .badges { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.cert-strip .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy); font-size: 14px;
}
.cert-strip .badge svg { width: 24px; height: 24px; color: var(--orange); }

/* ── Section base ──────────────────────────────────────────────── */
section { padding: 90px 0; }
section.soft { background: var(--bg-soft); }
section.dark { background: var(--navy-deep); color: #fff; }
section.dark .section-head .eyebrow { background: rgba(232,119,34,0.15); color: var(--orange); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 3vw, 40px); margin: 0 0 14px; letter-spacing: -0.4px; color: var(--navy); font-weight: 800; }
section.dark .section-head h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 17.5px; margin: 0; }
section.dark .section-head p { color: #c0c8da; }
.section-head .eyebrow {
  display: inline-block; padding: 6px 16px; background: var(--orange-soft);
  color: var(--orange-dark); border-radius: 999px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 16px;
}

/* ── Feature grid (Why us) ─────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: all var(--transition);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange-soft); }
.feature .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.feature p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }

/* ── Bento product grid (homepage + category) ─────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento .cell {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.bento .cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,119,34,0.4);
}
.bento .cell .photo {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #fbfbfa 0%, #efefe9 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bento .cell .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.bento .cell:hover .photo img { transform: scale(1.05); }

.bento .cell .body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.bento .cell h3 { margin: 0 0 6px; font-size: 19px; color: var(--navy); }
.bento .cell p { margin: 0 0 14px; color: var(--muted); font-size: 14px; flex: 1; line-height: 1.55; }
.bento .cell .footer-row {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 14px;
  font-size: 13px;
}
.bento .cell .footer-row .count { color: var(--muted); font-weight: 500; }
.bento .cell .footer-row .arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--orange-dark); font-weight: 600;
  transition: gap var(--transition);
}
.bento .cell:hover .footer-row .arrow { gap: 8px; }

.bento.dense-2 { grid-template-columns: repeat(2, 1fr); }
.bento.dense-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .bento, .bento.dense-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .bento, .bento.dense-2, .bento.dense-4 { grid-template-columns: 1fr; } }

/* ── Certifications page ──────────────────────────────────────── */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cert-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; transition: all var(--transition);
  display: flex; gap: 24px; align-items: flex-start;
}
.cert-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-soft); }
.cert-card .logo-cube {
  width: 72px; height: 72px; flex-shrink: 0;
  background: var(--navy-soft);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 800; font-size: 17px; letter-spacing: 1px;
}
.cert-card.featured { background: linear-gradient(135deg, var(--navy-soft) 0%, #fff 70%); border-color: var(--navy-soft); }
.cert-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 21px; }
.cert-card .tag { display: inline-block; padding: 3px 10px; background: var(--orange-soft); color: var(--orange-dark); border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
.cert-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 720px) { .cert-grid { grid-template-columns: 1fr; } }

/* ── Category page (sub-category bento) ───────────────────────── */
.crumbs { font-size: 13px; color: var(--muted); margin: 26px 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--orange-dark); }
.crumbs span.sep { margin: 0 6px; }

.cat-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff; padding: 60px 0;
}
.cat-header .inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.cat-header .crumbs { color: rgba(255,255,255,0.7); margin: 0 0 16px; }
.cat-header .crumbs a { color: rgba(255,255,255,0.8); }
.cat-header .crumbs a:hover { color: var(--orange); }
.cat-header h1 { font-size: clamp(28px, 3.4vw, 44px); margin: 0 0 12px; font-weight: 800; letter-spacing: -0.4px; }
.cat-header p { font-size: 17px; color: #d4dbeb; margin: 0; max-width: 720px; }

/* ── Sub-category page (spec tables) ──────────────────────────── */
.subcat-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 56px 0;
}
.subcat-hero .img-wrap {
  background: linear-gradient(180deg, #fbfbfa, #efefe9);
  border-radius: var(--radius-lg); aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: 1px solid var(--line);
}
.subcat-hero .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.subcat-hero .img-wrap svg { width: 70%; max-height: 70%; }
.subcat-hero h1 { color: var(--navy); font-size: clamp(28px, 3vw, 40px); margin: 8px 0 14px; font-weight: 800; }
.subcat-hero .meta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 18px; }
.subcat-hero .meta-row .pill { background: var(--navy-soft); color: var(--navy); padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.subcat-hero p { color: var(--muted); font-size: 16px; line-height: 1.65; }

@media (max-width: 800px) { .subcat-hero { grid-template-columns: 1fr; padding: 32px 0; } }

table.sku-table { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
table.sku-table th { background: var(--navy); color: #fff; text-align: left; padding: 14px 16px; font-weight: 600; font-size: 12.5px; letter-spacing: 0.6px; text-transform: uppercase; }
table.sku-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink); }
table.sku-table tr:last-child td { border-bottom: 0; }
table.sku-table tr:hover td { background: #fbfafa; }
table.sku-table td.code { font-family: "SF Mono", Menlo, monospace; font-weight: 600; color: var(--navy); }
table.sku-table td.barcode { font-family: "SF Mono", Menlo, monospace; color: var(--muted); font-size: 12.5px; }

/* ── Product detail page ──────────────────────────────────────── */
.product-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; padding: 40px 0 64px; }
.product-hero .gallery {
  background: linear-gradient(180deg, #fbfbfa, #efefe9);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-hero .gallery img { width: 100%; height: 100%; object-fit: contain; }
.product-hero .gallery svg { width: 75%; max-height: 75%; }
.product-hero h1 { font-size: clamp(26px, 3vw, 38px); margin: 8px 0 6px; color: var(--navy); font-weight: 800; line-height: 1.15; }
.product-hero .sub { color: var(--muted); margin: 0 0 24px; }
.product-hero .sub code { background: var(--navy-soft); color: var(--navy); padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 13px; }

.spec-grid { display: grid; grid-template-columns: 150px 1fr; gap: 14px 22px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.spec-grid dt { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.spec-grid dd { margin: 0; font-weight: 600; color: var(--ink); }

.product-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.product-info-note {
  margin-top: 28px; background: var(--navy-soft); color: var(--navy);
  padding: 14px 18px; border-radius: var(--radius); font-size: 13.5px; line-height: 1.55;
}

@media (max-width: 800px) {
  .product-hero { grid-template-columns: 1fr; padding: 24px 0 40px; }
}

/* ── Manufacturing / image-text rows ──────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split img, .split .img-block {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover;
  background: linear-gradient(135deg, var(--navy-soft), #fff);
  display: flex; align-items: center; justify-content: center;
}
.split .img-block svg { width: 65%; }
.split h2 { color: var(--navy); font-size: clamp(26px, 3vw, 38px); margin: 0 0 18px; letter-spacing: -0.4px; font-weight: 800; }
.split p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin: 0 0 16px; }
.split ul { padding-left: 0; list-style: none; }
.split li {
  padding: 10px 0 10px 32px; position: relative; font-size: 16px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.split li:last-child { border-bottom: 0; }
.split li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 18px; height: 18px;
  background: var(--orange); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ── Logistics / NZ delivery ──────────────────────────────────── */
.delivery-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.delivery-grid h2 { color: #fff; }
.delivery-grid .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.delivery-grid .stat {
  background: rgba(255,255,255,0.06);
  padding: 22px 22px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.delivery-grid .stat b { color: var(--orange); font-size: 30px; font-weight: 800; display: block; line-height: 1; margin-bottom: 8px; }
.delivery-grid .stat span { color: #cfd6e3; font-size: 14px; line-height: 1.5; }
.delivery-grid p { color: #d4dbeb; font-size: 17px; line-height: 1.7; }

@media (max-width: 900px) { .delivery-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ── Trade CTA strip ──────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; padding: 80px 0;
}
.cta-strip .inner { max-width: 1024px; margin: 0 auto; padding: 0 24px; text-align: center; }
.cta-strip h2 { font-size: clamp(28px, 3vw, 40px); margin: 0 0 16px; font-weight: 800; }
.cta-strip p { font-size: 18px; max-width: 640px; margin: 0 auto 30px; opacity: 0.95; }
.cta-strip .btn { background: #fff; color: var(--orange-dark); }
.cta-strip .btn:hover { background: var(--navy-soft); color: var(--navy); }
.cta-strip .btn.outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.cta-strip .btn.outline:hover { background: #fff; color: var(--orange-dark); }

/* ── Footer ────────────────────────────────────────────────────── */
footer.site-footer { background: var(--navy-deep); color: #cfd6e3; padding: 70px 0 30px; font-size: 14.5px; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
footer h5 { color: #fff; margin: 0 0 18px; font-size: 13.5px; text-transform: uppercase; letter-spacing: 1.8px; font-weight: 700; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { color: #b8c0d2; transition: color var(--transition); }
footer a:hover { color: var(--orange); }
footer .brand-block img { height: 60px; margin-bottom: 18px; opacity: 0.95; }
footer p { max-width: 320px; line-height: 1.65; }
footer .legal { display: flex; justify-content: space-between; padding-top: 26px; font-size: 12.5px; color: #8b94aa; flex-wrap: wrap; gap: 12px; }
@media (max-width: 800px) { footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { footer .cols { grid-template-columns: 1fr; } }

/* ── Forms ─────────────────────────────────────────────────────── */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md);
}
.form-card h3 { margin: 0 0 8px; font-size: 22px; color: var(--navy); }
.form-card .form-note { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.form-card form { display: grid; gap: 14px; }
.form-card label { font-size: 12.5px; color: var(--muted); font-weight: 600; letter-spacing: 0.4px; display: block; margin-bottom: 5px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: inherit; transition: border var(--transition);
  background: #fff;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { outline: none; border-color: var(--orange); }
.form-card .btn { justify-content: center; }

/* ── About-grid ────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.timeline { border-left: 2px solid var(--orange); padding-left: 26px; margin: 24px 0; }
.timeline .step { margin-bottom: 26px; }
.timeline .step b { color: var(--orange); display: block; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 4px; }
.timeline .step span { color: var(--ink); font-size: 15px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ── Misc ──────────────────────────────────────────────────────── */
.search-box { position: relative; max-width: 560px; margin: 0 auto 40px; }
.search-box input {
  width: 100%; padding: 16px 20px 16px 50px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 15px; box-shadow: var(--shadow-sm);
}
.search-box svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }

.dl-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dl-item {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px;
  transition: all var(--transition);
}
.dl-item:hover { border-color: var(--orange-soft); box-shadow: var(--shadow-sm); }
.dl-item .icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--navy-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dl-item .icon svg { width: 22px; height: 22px; }
.dl-item h4 { margin: 0; font-size: 15px; color: var(--navy); }
.dl-item small { color: var(--muted); font-size: 13px; }
.dl-item a.btn-sm {
  margin-left: auto; padding: 9px 16px; background: var(--orange); color: #fff;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.dl-item a.btn-sm:hover { background: var(--orange-dark); color: #fff; }
@media (max-width: 700px) { .dl-list { grid-template-columns: 1fr; } }

.alert {
  background: #fff5e6; border: 1px solid #f5d4a3; color: #7a4a13;
  padding: 14px 18px; border-radius: var(--radius); font-size: 14px;
}

/* ── "Real photo coming soon" placeholder card ────────────────────
 * Plain, sober, no AI art. Shown when a SKU doesn't have a real
 * photograph on file yet.
 */
.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--navy-soft);
  color: var(--navy);
  text-align: center;
  padding: 28px 18px;
  box-sizing: border-box;
}
.photo-placeholder svg {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  opacity: 0.6;
}
.photo-placeholder span {
  flex: 0 0 auto;
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.72;
  white-space: nowrap;
}

.subcat-hero .img-wrap .photo-placeholder,
.product-hero .gallery .photo-placeholder {
  min-height: 100%;
  border-radius: var(--radius-lg);
}
