:root {
  --bg: #0b0e14;
  --bg-alt: #12161f;
  --card: #161b26;
  --border: #232938;
  --text: #e8ebf1;
  --text-dim: #9aa3b5;
  --accent: #ff6a1a;
  --accent-dim: #a84711;
  --ok: #35c98a;
  --warn: #e0b429;
  --radius: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Top banner ---------- */
.announce {
  background: var(--accent);
  color: #14100b;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  letter-spacing: .02em;
}

/* ---------- Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,14,20,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.cart-link:hover { border-color: var(--accent); }
#cart-count {
  background: var(--accent);
  color: #14100b;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 999px;
}
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .1s ease, opacity .15s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent); color: #14100b; }
.btn-primary:hover { opacity: .92; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 24px 60px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,106,26,.14), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.hero p.lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 46ch;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 28px; }
.hero-media {
  background: radial-gradient(circle at 50% 40%, #1c2130 0%, #0d1018 70%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}
.trust-row span { display: flex; align-items: center; gap: 6px; }
.trust-row .dot-ok { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

/* ---------- Sections ---------- */
section { padding: 64px 24px; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: 30px; margin: 0 0 10px; letter-spacing: -.01em; }
.section-head p { color: var(--text-dim); margin: 0; }

/* ---------- Feature grid ---------- */
.feature-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,106,26,.14);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; margin: 0 0 8px; }
.feature-card p { font-size: 13.5px; color: var(--text-dim); margin: 0; }

/* ---------- Product grid ---------- */
.product-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease, transform .15s ease;
}
.pcard:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.pcard-media {
  aspect-ratio: 1/1;
  background: #0d1018;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pcard-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.pcard-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(160deg, #171c28, #0d1018);
  color: var(--text-dim);
}
.pcard-placeholder svg { width: 46px; height: 46px; opacity: .55; }
.pcard-placeholder span { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: #14100b;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-restricted {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(224,180,41,.15);
  color: var(--warn);
  border: 1px solid rgba(224,180,41,.4);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.pcard-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard-body .sku { font-size: 11px; color: var(--text-dim); letter-spacing: .06em; text-transform: uppercase; }
.pcard-body h3 { font-size: 16px; margin: 0; }
.pcard-body .tagline { font-size: 13px; color: var(--text-dim); margin: 0 0 6px; min-height: 34px; }
.pcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag {
  font-size: 10.5px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 999px;
}
.pcard-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price { font-size: 18px; font-weight: 800; }
.price-note { font-size: 13px; color: var(--text-dim); }
.pcard-footer .btn { padding: 9px 16px; font-size: 13px; }

/* ---------- Filters ---------- */
.filter-bar {
  max-width: var(--maxw);
  margin: 0 auto 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-chip {
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.filter-chip.active { border-color: var(--accent); color: var(--accent); background: rgba(255,106,26,.08); }

/* ---------- Compliance banner ---------- */
.compliance {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.compliance .icon { color: var(--warn); flex-shrink: 0; margin-top: 2px; }
.compliance h3 { margin: 0 0 6px; font-size: 15px; }
.compliance p { margin: 0; color: var(--text-dim); font-size: 13.5px; }
.compliance a { color: var(--accent); font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
  background: var(--bg-alt);
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}
.footer-grid h4 { font-size: 13px; margin: 0 0 14px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-grid ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Product detail ---------- */
.pd-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 44px 24px 20px;
}
.pd-gallery-main {
  aspect-ratio: 1/1;
  background: #0d1018;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.pd-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-thumbs img {
  width: 68px; height: 68px; object-fit: contain;
  background: #0d1018; border: 1px solid var(--border); border-radius: 8px; padding: 6px; cursor: pointer;
}
.pd-thumbs img.active { border-color: var(--accent); }
.breadcrumb { font-size: 13px; color: var(--text-dim); max-width: var(--maxw); margin: 22px auto 0; padding: 0 24px; }
.breadcrumb a:hover { color: var(--accent); }
.pd-sku { font-size: 12px; color: var(--text-dim); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.pd-info h1 { font-size: 30px; margin: 0 0 8px; letter-spacing: -.01em; }
.pd-info .tagline { color: var(--text-dim); font-size: 15px; margin: 0 0 18px; }
.pd-price { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.pd-price-note { font-size: 13px; color: var(--text-dim); margin-bottom: 22px; }
.variant-row { margin-bottom: 22px; }
.variant-row label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.variant-options { display: flex; gap: 10px; flex-wrap: wrap; }
.variant-opt {
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
}
.variant-opt.active { border-color: var(--accent); color: var(--accent); background: rgba(255,106,26,.08); }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; }
.qty-control button {
  background: none; border: none; color: var(--text); font-size: 18px; width: 38px; height: 38px; cursor: pointer;
}
.qty-control input {
  width: 40px; text-align: center; background: none; border: none; color: var(--text); font-size: 15px; font-weight: 700;
}
.pd-actions { display: flex; gap: 12px; margin-bottom: 26px; }
.pd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.pd-restricted {
  background: rgba(224,180,41,.1);
  border: 1px solid rgba(224,180,41,.35);
  color: var(--warn);
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 22px;
}
.pd-desc { color: var(--text-dim); font-size: 14.5px; margin-bottom: 26px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 11px 4px; }
.spec-table td:first-child { color: var(--text-dim); width: 42%; }
.spec-table td:last-child { font-weight: 600; }
.related-head { max-width: var(--maxw); margin: 60px auto 24px; padding: 0 24px; }
.related-head h2 { font-size: 22px; margin: 0; }

/* ---------- Cart ---------- */
.cart-wrap { max-width: 900px; margin: 0 auto; padding: 56px 24px 100px; }
.cart-wrap h1 { font-size: 30px; margin-bottom: 30px; }
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.cart-row img { width: 80px; height: 80px; object-fit: contain; background: #0d1018; border-radius: 8px; padding: 8px; }
.cart-row .placeholder-thumb {
  width: 80px; height: 80px; border-radius: 8px; background: linear-gradient(160deg,#171c28,#0d1018);
  display: flex; align-items: center; justify-content: center; color: var(--text-dim);
}
.cart-row .placeholder-thumb svg { width: 26px; height: 26px; opacity: .5; }
.cart-row h4 { margin: 0 0 4px; font-size: 15px; }
.cart-row .meta { font-size: 12.5px; color: var(--text-dim); }
.cart-row .remove { color: var(--text-dim); font-size: 13px; cursor: pointer; background:none; border:none; }
.cart-row .remove:hover { color: var(--accent); }
.cart-summary {
  margin-top: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text-dim); }
.cart-summary-row.total { font-size: 18px; font-weight: 800; color: var(--text); border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; }
.empty-cart { text-align: center; padding: 60px 0; color: var(--text-dim); }

/* checkout form */
.checkout-form { max-width: 520px; margin: 40px auto 0; }
.checkout-form h2 { font-size: 20px; margin-bottom: 6px; }
.checkout-form .note { color: var(--text-dim); font-size: 13px; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.form-row input, .form-row textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.success-box {
  text-align: center;
  padding: 50px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.success-box .check {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(53,201,138,.15); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.success-box h2 { margin: 0 0 10px; }
.success-box p { color: var(--text-dim); max-width: 42ch; margin: 0 auto 22px; }

/* ---------- Static pages ---------- */
.page-hero { padding: 56px 24px 30px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: 34px; margin: 0 0 10px; }
.page-hero p { color: var(--text-dim); max-width: 60ch; margin: 0; }
.prose { max-width: 780px; margin: 0 auto; padding: 48px 24px 80px; }
.prose h2 { font-size: 20px; margin: 34px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-dim); font-size: 15px; margin: 0 0 14px; }
.prose ul { color: var(--text-dim); font-size: 15px; padding-left: 20px; }
.prose li { margin-bottom: 8px; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.3);
  transition: transform .15s ease, box-shadow .15s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37,211,102,.6), 0 2px 8px rgba(0,0,0,.35);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-tooltip {
  position: fixed;
  right: 88px;
  bottom: 36px;
  z-index: 200;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.whatsapp-float:hover + .whatsapp-tooltip,
.whatsapp-tooltip.show { opacity: 1; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.3), 0 0 0 10px rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-tooltip { display: none; }
}

/* ---------- AI chat widget ---------- */
.chatbot-launcher {
  position: fixed;
  right: 92px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255,106,26,.45), 0 2px 6px rgba(0,0,0,.3);
  transition: transform .15s ease;
}
.chatbot-launcher:hover { transform: scale(1.08); }
.chatbot-launcher svg { width: 26px; height: 26px; }
.chatbot-launcher .cb-close-icon { display: none; }
.chatbot-launcher.open .cb-chat-icon { display: none; }
.chatbot-launcher.open .cb-close-icon { display: block; }
.chatbot-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ok);
  border: 2px solid var(--bg);
}

.chatbot-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 199;
  width: 350px;
  max-width: calc(100vw - 32px);
  height: 480px;
  max-height: calc(100vh - 140px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #14100b;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-header .dot-ok { width: 8px; height: 8px; border-radius: 50%; background: #14100b; display: inline-block; }
.chatbot-header strong { font-size: 14.5px; display: block; }
.chatbot-header span { font-size: 11.5px; opacity: .8; display: flex; align-items: center; gap: 5px; }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cb-msg-bot {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 2px;
  padding: 10px 13px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
  max-width: 88%;
  align-self: flex-start;
}
.cb-msg-user {
  background: var(--accent);
  color: #14100b;
  border-radius: 12px 12px 2px 12px;
  padding: 9px 13px;
  font-size: 13.5px;
  font-weight: 600;
  max-width: 80%;
  align-self: flex-end;
}
.cb-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
}
.cb-option-btn {
  text-align: left;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.cb-option-btn:hover { border-color: var(--accent); color: var(--accent); }
.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
}
.chatbot-input-row input {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
}
.chatbot-input-row input:focus { outline: none; border-color: var(--accent); }
.chatbot-input-row button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #14100b;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .chatbot-launcher { right: 78px; bottom: 16px; width: 52px; height: 52px; }
  .chatbot-panel { right: 16px; bottom: 78px; width: calc(100vw - 32px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cart-row { grid-template-columns: 60px 1fr; grid-template-areas: "img title" "img meta" "img actions"; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
