@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---------------------------------------------------------------------
   Grunnstillingar
--------------------------------------------------------------------- */
:root {
  --orange: #e8501e;
  --orange-dark: #c93f14;
  --pink: #e6197f;
  --blue: #1e8fd1;
  --green: #6fbf4a;
  --ink: #221f1c;
  --ink-soft: #55504a;
  --paper: #fdfbf7;
  --paper-alt: #f4efe6;
  --paper-deep: #efe6d8;
  --line: #e7ddcc;
  --white: #ffffff;
  --studio-bg: #e9e6e3; /* ljósgrái stúdíóbakgrunnurinn í vöruljósmyndunum */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px -20px rgba(34, 31, 28, 0.25);
  --shadow-sm: 0 8px 20px -12px rgba(34, 31, 28, 0.3);
  --max: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Inter', system-ui, sans-serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange-dark);
  margin-bottom: 0.6em;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 2.4rem;
}

section { padding: 5rem 0; }

/* ---------------------------------------------------------------------
   Hnappar
--------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   Vsk-rofi
--------------------------------------------------------------------- */
.vat-bar {
  background: var(--ink);
  color: var(--white);
}

.vat-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  font-size: 0.85rem;
}

.vat-bar-label { color: #d8d4cd; }

.vat-toggle {
  display: inline-flex;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  overflow: hidden;
}

.vat-toggle-option {
  position: relative;
  margin: 0;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

.vat-toggle-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.vat-toggle-option span {
  display: block;
  padding: 0.35em 0.9em;
  color: var(--white);
  transition: background 0.15s ease, color 0.15s ease;
}

.vat-toggle-option input:checked + span {
  background: var(--orange);
  color: var(--white);
}

.vat-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: -1rem 0 1.2rem;
}

/* ---------------------------------------------------------------------
   Haus
--------------------------------------------------------------------- */
.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brand-logo { height: 38px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-weight: 600;
}
.main-nav a { color: var(--ink); }
.main-nav a:hover { color: var(--orange-dark); text-decoration: none; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55em 1.3em;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* ---------------------------------------------------------------------
   Karfa
--------------------------------------------------------------------- */
.cart-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cart-button:hover { border-color: var(--orange); transform: translateY(-1px); }

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 31, 28, 0.45);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cart-overlay[hidden] { display: none; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--paper);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 45px -20px rgba(34, 31, 28, 0.35);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-header h2 { margin: 0; font-size: 1.3rem; }

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.cart-close:hover { color: var(--ink); }

.cart-empty {
  padding: 2rem 1.5rem;
  color: var(--ink-soft);
  text-align: center;
}
.cart-empty[hidden] { display: none; }

.cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--line);
  flex-shrink: 0;
}

.cart-line-info { min-width: 0; }
.cart-line-name { display: block; font-weight: 600; }
.cart-line-unit { display: block; font-size: 0.85rem; color: var(--ink-soft); }

.cart-line-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-line-total { font-weight: 700; white-space: nowrap; }

.cart-line-remove {
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2em 0.4em;
}
.cart-line-remove:hover { color: var(--orange-dark); }

.cart-footer {
  padding: 1.3rem 1.5rem 1.6rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.cart-footer[hidden] { display: none; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.cart-total-row strong { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; color: var(--orange-dark); }
.cart-total-row small, .checkout-total-row small { font-weight: 500; color: var(--ink-soft); font-size: 0.8em; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--white);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
}
.qty-btn:hover { background: var(--paper-alt); }

.qty-stepper input {
  width: 46px;
  border: none;
  border-left: 1.5px solid var(--line);
  border-right: 1.5px solid var(--line);
  border-radius: 0;
  text-align: center;
  padding: 0.5em 0;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-stepper.small .qty-btn { width: 30px; height: 30px; font-size: 1rem; }
.qty-stepper.small input { width: 34px; padding: 0.3em 0; font-size: 0.9rem; }

/* ---------------------------------------------------------------------
   Hero
--------------------------------------------------------------------- */
.hero { padding-top: 3.5rem; padding-bottom: 3.5rem; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------------------------------------------------------------------
   Eiginleikar
--------------------------------------------------------------------- */
.features { background: var(--paper-alt); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.feature-card h3 { margin-bottom: 0.4em; }
.feature-card p { color: var(--ink-soft); margin: 0; }

/* ---------------------------------------------------------------------
   Gallerí
--------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-2 img { aspect-ratio: 16 / 10; }

.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9em 1em;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------------------------------------------------------------------
   Litir
--------------------------------------------------------------------- */
.colors { background: var(--paper-alt); }

.color-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.color-preview img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--studio-bg);
}

.color-preview-name {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4em;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
}

.color-swatch .dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--line), var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.color-swatch:hover .dot { transform: translateY(-3px); }

.color-swatch.active { color: var(--ink); font-weight: 700; }
.color-swatch.active .dot { box-shadow: 0 0 0 3px var(--orange), var(--shadow-sm); }

.color-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.min-qty-note {
  text-align: center;
  margin: 0.8em 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.add-to-cart-status {
  text-align: center;
  margin: 0.3em 0 0;
  min-height: 1.3em;
  font-weight: 600;
  color: #2f8f3f;
}

/* ---------------------------------------------------------------------
   Verð
--------------------------------------------------------------------- */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.price-tier {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.price-tier:hover { border-color: var(--orange); transform: translateY(-3px); }

.price-tier .qty {
  font-weight: 700;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  margin-bottom: 0.6em;
}

.price-tier .amount {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.price-tier .per {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pricing-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------------------------------------------------------------------
   Pöntun
--------------------------------------------------------------------- */
.order { background: var(--ink); color: var(--white); }

.order-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.order h2 { color: var(--white); }
.order-info p { color: #d8d4cd; }

.order-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.order-points li {
  padding-left: 1.8em;
  position: relative;
  color: #efece6;
}
.order-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.order-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 1.1rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
  font-size: 0.92rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.checkout-heading { margin-bottom: 1rem; }

.checkout-empty-note {
  background: var(--paper-alt);
  border-radius: var(--radius-sm);
  padding: 0.9em 1.1em;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.checkout-empty-note[hidden] { display: none; }
.checkout-empty-note a { color: var(--orange-dark); font-weight: 600; }

.checkout-lines {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.checkout-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6em 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.checkout-line .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1.5px var(--line);
}
.checkout-line-name { flex: 1; }
.checkout-line-total { font-weight: 700; }

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: var(--paper-alt);
  border-radius: var(--radius-sm);
  padding: 0.9em 1.1em;
  margin: 0.8rem 0 1.2rem;
  font-size: 1.05rem;
}
.checkout-total-row[hidden] { display: none; }
.checkout-total-row strong { color: var(--orange-dark); font-size: 1.25rem; }

.checkout-fields[hidden] { display: none; }
.checkout-fields .form-row:first-child { margin-top: 0; }

.consent-note {
  margin: 0.9em 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.buyer-type-toggle {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.buyer-type-option {
  position: relative;
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

.buyer-type-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.buyer-type-option span {
  display: block;
  padding: 0.65em 1.4em;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.buyer-type-option input:checked + span {
  background: var(--orange);
  color: var(--white);
}

.buyer-type-option input:focus-visible + span {
  outline: 2px solid var(--orange-dark);
  outline-offset: -2px;
}

.form-status {
  margin: 1em 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.form-status.success { color: #2f8f3f; }
.form-status.error { color: #c93f14; }
.form-status a { color: inherit; text-decoration: underline; }

/* ---------------------------------------------------------------------
   Um Vippi
--------------------------------------------------------------------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* ---------------------------------------------------------------------
   Lagatextasíður (t.d. persónuvernd)
--------------------------------------------------------------------- */
.legal-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-weight: 600;
}
.legal-nav a { color: var(--ink); }
.legal-nav a:hover { color: var(--orange-dark); }

.legal-page { padding-top: 3rem; padding-bottom: 4rem; }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 0.6rem; }
.legal-page .section-lead { margin-bottom: 2.4rem; }
.legal-page h2 { font-size: 1.25rem; margin-top: 2.2rem; }
.legal-page p { color: var(--ink-soft); }

/* ---------------------------------------------------------------------
   Fótur
--------------------------------------------------------------------- */
.site-footer {
  background: var(--paper-deep);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-logo { height: 30px; margin-bottom: 0.6em; }
.footer-brand p { margin: 0; color: var(--ink-soft); max-width: 320px; }

.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.footer-copy {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin: 1.2rem 0 0;
}

/* ---------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner,
  .color-layout,
  .order-wrap,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .hero-media { order: -1; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 2; }
  .pricing-table { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 24px 1.2rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7em 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 0.6em; }
  .nav-toggle { display: flex; }

  section { padding: 3.2rem 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .color-swatches { grid-template-columns: repeat(3, 1fr); }
  .pricing-table { grid-template-columns: 1fr 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .order-form { padding: 1.4rem; }
}
