/* ============================================================
   BRUGA — Kitchenwear & Kitchenware Store
   Warm & modern design system
   Terracotta + copper on clean white
   ============================================================ */

:root {
  /* Brand palette */
  --terracotta: #c4593c;
  --terracotta-dark: #a4452c;
  --terracotta-soft: #f6e3da;
  --copper: #b87333;
  --copper-soft: #f3e5d3;

  /* Neutrals */
  --ink: #2b2118;
  --muted: #7a6a5b;
  --cream: #faf6f0;
  --white: #ffffff;
  --border: #eadfce;
  --green: #2e7d32;
  --green-soft: #e6f2e7;
  --amber: #b4761f;
  --amber-soft: #fdf1dc;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape & shadow */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(43, 33, 24, 0.08);
  --shadow-md: 0 6px 24px rgba(43, 33, 24, 0.10);
  --shadow-lg: 0 16px 48px rgba(43, 33, 24, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Hide the "Netlify" badge/HUD if the host ever injects one */
#netlify-badge, .netlify-hud, #netlify-hud, [class*="netlify"]#hud { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }

.section { padding: 4.5rem 0; }
.section--cream { background: var(--cream); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.65rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-head p { color: var(--muted); margin-top: 0.75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(196, 89, 60, 0.35);
}
.btn--primary:hover { background: var(--terracotta-dark); }

.btn--whatsapp {
  background: #1faa53;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(31, 170, 83, 0.35);
}
.btn--whatsapp:hover { background: #178f44; }

.btn--outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--ghost {
  color: var(--terracotta);
  padding: 0.6rem 1rem;
}
.btn--ghost:hover { background: var(--terracotta-soft); }

.btn[disabled] { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: #f3e9df;
  text-align: center;
  font-size: 0.83rem;
  padding: 0.5rem 1rem;
  letter-spacing: 0.02em;
}
.announce strong { color: #f0b090; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 2rem; height: 68px; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--terracotta), var(--copper));
  display: grid; place-items: center;
  color: var(--white);
}
.logo__mark svg { width: 21px; height: 21px; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 0.35rem; }
.nav__link {
  display: block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s;
}
.nav__link:hover { background: var(--cream); }
.nav__link.is-active { background: var(--terracotta-soft); color: var(--terracotta-dark); font-weight: 600; }

.header__actions { display: flex; align-items: center; gap: 0.4rem; }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.15s;
}
.cart-btn:hover { background: var(--cream); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: 2px; right: 0;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid; place-items: center;
}
.cart-count.is-hidden { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; place-items: center; }
.nav-toggle:hover { background: var(--cream); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #fdf7ef 0%, var(--white) 100%); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero__sub { color: var(--muted); font-size: 1.08rem; max-width: 34rem; margin: 1.2rem 0 1.9rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__stats dt { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--terracotta-dark); }
.hero__stats dd { font-size: 0.85rem; color: var(--muted); }

.hero__art { position: relative; }
.hero__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__card img, .hero__card svg { width: 100%; height: auto; }
.hero__float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.55rem;
}
.hero__float svg { width: 20px; height: 20px; color: var(--green); }
.hero__float--1 { top: -18px; left: -14px; }
.hero__float--2 { bottom: -16px; right: -10px; }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--terracotta); }
.cat-card__icon {
  width: 62px; height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--terracotta-soft);
  display: grid; place-items: center;
}
.cat-card__icon svg { width: 30px; height: 30px; color: var(--terracotta); }
.cat-card h3 { font-size: 1rem; font-weight: 600; }
.cat-card p { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.product-grid--featured { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-card__media { position: relative; aspect-ratio: 1 / 0.92; background: var(--cream); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
}
.product-card__badge--new { background: var(--green); }
.product-card__badge--premium { background: var(--copper); }
.product-card__oos {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(2px);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.product-card__body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--copper); }
.product-card__name { font-size: 0.98rem; font-weight: 600; line-height: 1.35; margin: 0.35rem 0 0.5rem; }
.product-card__name a:hover { color: var(--terracotta); }
.product-card__desc { font-size: 0.84rem; color: var(--muted); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: 0.95rem; }
.price { display: flex; align-items: baseline; gap: 0.45rem; }
.price__now { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.price__mrp { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; }
.price__off { font-size: 0.78rem; font-weight: 700; color: var(--green); }

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.add-btn:hover { background: var(--terracotta); color: var(--white); }
.add-btn svg { width: 16px; height: 16px; }
.add-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------- USP strip ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.usp {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.usp__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--copper-soft);
  display: grid; place-items: center;
}
.usp__icon svg { width: 23px; height: 23px; color: var(--copper); }
.usp h3 { font-size: 0.98rem; font-weight: 600; }
.usp p { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi__stars { color: #e8a13c; letter-spacing: 0.15em; font-size: 0.95rem; }
.testi__quote { font-size: 0.95rem; color: var(--ink); flex: 1; }
.testi__who { display: flex; align-items: center; gap: 0.8rem; }
.testi__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta-soft), var(--copper-soft));
  color: var(--terracotta-dark);
  font-weight: 700;
  display: grid; place-items: center;
}
.testi__who strong { display: block; font-size: 0.9rem; }
.testi__who span { font-size: 0.78rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(1100px 400px at 15% 0%, rgba(184, 115, 51, 0.35), transparent 60%),
    radial-gradient(900px 420px at 90% 100%, rgba(196, 89, 60, 0.35), transparent 60%),
    var(--ink);
  color: #f6ede3;
  border-radius: 26px;
  padding: 3.6rem 2.5rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 600;
  max-width: 34rem;
  margin: 0 auto 0.8rem;
  line-height: 1.2;
}
.cta-band p { color: #d9c6b5; max-width: 32rem; margin: 0 auto 1.9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cbb9a9; padding: 3.6rem 0 2rem; margin-top: 4.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer .logo { color: var(--white); margin-bottom: 0.9rem; }
.footer__about { font-size: 0.9rem; line-height: 1.7; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  color: #e8d8c9;
  transition: background 0.15s;
}
.footer__social a:hover { background: var(--terracotta); color: var(--white); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { font-size: 0.9rem; color: #cbb9a9; }
.footer__links a:hover { color: var(--white); text-decoration: underline; }
.footer__contact li { display: flex; gap: 0.65rem; font-size: 0.9rem; margin-bottom: 0.75rem; line-height: 1.5; }
.footer__contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--copper); }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #a8968a;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1faa53;
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(31, 170, 83, 0.45);
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 92px; right: 22px;
  z-index: 90;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.6rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast svg { width: 18px; height: 18px; color: #6fce8f; }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(43, 33, 24, 0.45);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--white);
  z-index: 85;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.drawer__head h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.drawer__close {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  color: var(--muted);
}
.drawer__close:hover { background: var(--cream); color: var(--ink); }
.drawer__close svg { width: 20px; height: 20px; }

.drawer__items { flex: 1; overflow-y: auto; padding: 1.1rem 1.4rem; }
.drawer__empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.drawer__empty svg { width: 52px; height: 52px; margin: 0 auto 1rem; color: var(--border); }
.drawer__empty p { margin-bottom: 1.2rem; }

.cart-item { display: flex; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--cream); }
.cart-item__media {
  width: 68px; height: 68px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
}
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item__price { font-size: 0.84rem; color: var(--terracotta-dark); font-weight: 600; margin-top: 0.15rem; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.55rem; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-size: 0.95rem; color: var(--ink); }
.qty button:hover { background: var(--cream); }
.qty span { min-width: 30px; text-align: center; font-size: 0.85rem; font-weight: 600; }

.cart-item__remove { font-size: 0.78rem; color: var(--muted); text-decoration: underline; }
.cart-item__remove:hover { color: var(--terracotta); }

.drawer__foot { border-top: 1px solid var(--border); padding: 1.2rem 1.4rem; }
.drawer__row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.45rem; }
.drawer__row--ship { font-size: 0.8rem; }
.drawer__row--ship .free { color: var(--green); font-weight: 600; }
.drawer__total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 600;
  padding: 0.6rem 0 0.9rem;
}
.drawer__total strong { font-family: var(--font-display); font-size: 1.35rem; }
.checkout-fields { display: grid; gap: 0.6rem; margin-bottom: 0.9rem; }
.checkout-fields input, .checkout-fields textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
  resize: none;
}
.checkout-fields input:focus, .checkout-fields textarea:focus { outline: 2px solid var(--terracotta-soft); border-color: var(--terracotta); }
.drawer__foot .btn { width: 100%; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, #fdf7ef 0%, var(--white) 100%);
  padding: 3.2rem 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.page-hero p { color: var(--muted); max-width: 36rem; margin: 0.7rem auto 0; }

/* ---------- Shop toolbar ---------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.15s;
}
.chip:hover { border-color: var(--terracotta); color: var(--terracotta); }
.chip.is-active { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); font-weight: 600; }

.shop-tools { display: flex; gap: 0.6rem; align-items: center; }
.search-box { position: relative; }
.search-box svg {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--muted);
  pointer-events: none;
}
.search-box input {
  width: 230px;
  padding: 0.6rem 0.9rem 0.6rem 2.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  background: var(--white);
}
.search-box input:focus { outline: 2px solid var(--terracotta-soft); border-color: var(--terracotta); }
.shop-tools select {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  background: var(--white);
  color: var(--ink);
}
.shop-count { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.1rem; }
.no-results { text-align: center; color: var(--muted); padding: 3.5rem 1rem; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
.about-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.about-grid p { color: var(--muted); margin-bottom: 1rem; }
.about-art {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--cream);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.8rem; align-items: start; }
.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-info__item { display: flex; gap: 1rem; padding: 0.9rem 0; }
.contact-info__item + .contact-info__item { border-top: 1px solid var(--cream); }
.contact-info__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--terracotta-soft);
  display: grid; place-items: center;
}
.contact-info__icon svg { width: 20px; height: 20px; color: var(--terracotta); }
.contact-info__item h4 { font-size: 0.95rem; font-weight: 600; }
.contact-info__item p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 0.35rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  background: var(--white);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--terracotta-soft);
  border-color: var(--terracotta);
}
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.7rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid, .product-grid--featured { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 1.4rem 1.2rem;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 0.15rem; }
  .nav-toggle { display: grid; }
  .hero__inner { grid-template-columns: 1fr; padding: 3rem 0 3.5rem; }
  .hero__art { max-width: 460px; margin: 0 auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .product-grid, .product-grid--featured { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .shop-tools { flex-wrap: wrap; }
  .search-box input { width: 100%; }
  .search-box { flex: 1; min-width: 160px; }
  .section { padding: 3rem 0; }
  .product-card__desc { display: none; }
  .hero__stats { gap: 1.6rem; }
  .cta-band { padding: 2.6rem 1.4rem; }
  .form-grid { grid-template-columns: 1fr; }
}
