/* ============================================================
   NISS Fine Foods — Main Stylesheet
   Palette: Deep navy + antique gold + warm cream
   Typography: Playfair Display (display) + Montserrat (body)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0A1530;
  --navy-800: #0F1E3D;
  --navy-700: #162B54;
  --navy-600: #1E3866;

  --gold-500: #D4A94A;
  --gold-400: #E0BB65;
  --gold-300: #EFD28A;
  --gold-100: #F6E8C2;

  --cream-50: #FBF9F2;
  --cream-100: #F4F1E8;
  --cream-200: #E8E2D0;

  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-mute: #7A7A7A;
  --line: rgba(212, 169, 74, 0.3);
  --line-strong: rgba(212, 169, 74, 0.6);

  --shadow-sm: 0 2px 8px rgba(10, 21, 48, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 21, 48, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 21, 48, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --container-narrow: 960px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}
.section-title {
  font-size: 2.4rem;
  color: var(--navy-800);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 48px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold-500);
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  z-index: 1;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-800);
  color: var(--cream-50);
  font-size: 12px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.topbar-phone, .topbar-support {
  display: flex; align-items: center; gap: 8px;
  opacity: 0.85;
}
.topbar-badge {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 11px;
  margin-left: 6px;
}
.lang-switch {
  display: flex;
  gap: 2px;
  margin-left: 20px;
  font-size: 11px;
}
.lang-switch button {
  color: var(--cream-50);
  opacity: 0.5;
  padding: 2px 6px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.lang-switch button.active {
  opacity: 1;
  color: var(--gold-400);
}
.lang-switch button:hover { opacity: 0.9; }
.lang-switch .sep { color: var(--gold-500); opacity: 0.5; padding: 0 2px; }

/* ---------- Main navigation ---------- */
.nav {
  background: var(--navy-800);
  color: var(--cream-50);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-left, .nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--cream-50);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width 0.3s, left 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-400); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; left: 0; }

.brand {
  text-align: center;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 6px;
  display: block;
}
.brand-tagline {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--cream-50);
  opacity: 0.75;
  margin-top: 6px;
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-50);
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--gold-400); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  color: var(--cream-50);
  font-size: 24px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(10,21,48,0.85) 0%, rgba(10,21,48,0.55) 45%, rgba(10,21,48,0.15) 100%),
    url("https://images.unsplash.com/photo-1452195100486-9cc805987862?w=1800&q=80") center/cover no-repeat;
  color: var(--cream-50);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 80px 32px;
}
.hero-content { max-width: 540px; }
.hero-kicker {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  border-left: 2px solid var(--gold-500);
  padding-left: 12px;
}
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold-300);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream-50);
  opacity: 0.9;
  margin-bottom: 38px;
  max-width: 420px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 169, 74, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--gold-500);
}
.btn-outline:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-dark {
  background: var(--navy-800);
  color: var(--cream-50);
}
.btn-dark:hover {
  background: var(--navy-700);
}
.btn-arrow::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Section: Bestsellers ---------- */
.bestsellers {
  padding: 80px 0 100px;
  background: var(--cream-100);
  position: relative;
}
.bestsellers::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.4;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* ---------- Product card (matches reference) ---------- */
.product-card {
  position: relative;
  background: var(--navy-800);
  color: var(--cream-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-image {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 90%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image { transform: translateY(-50%) scale(1.05); }
.product-card-body {
  position: relative;
  padding: 26px 28px 22px;
  z-index: 2;
  max-width: 58%;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--cream-50);
}
.product-card-tagline {
  font-size: 12px;
  color: var(--cream-50);
  opacity: 0.7;
  margin-bottom: 4px;
  min-height: 16px;
}
.product-card-weight {
  font-size: 13px;
  color: var(--gold-300);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px 22px;
  border-top: 1px solid rgba(212, 169, 74, 0.15);
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(10,21,48,0.4));
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream-50);
  font-weight: 500;
}
.product-card-cta {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.product-card-cta:hover { background: var(--gold-400); }
.view-all-wrap { text-align: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 60px 0 0;
  border-top: 1px solid var(--line);
}
.footer-top {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 169, 74, 0.2);
  margin-bottom: 40px;
}
.footer-ornament {
  color: var(--gold-500);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 8px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400);
  letter-spacing: 4px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-400);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-col p, .footer-col li {
  font-size: 13px;
  color: var(--cream-50);
  opacity: 0.75;
  line-height: 1.8;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a { transition: color 0.2s, opacity 0.2s; }
.footer-col a:hover { color: var(--gold-400); opacity: 1; }
.footer-socials { display: flex; gap: 14px; margin-top: 16px; }
.footer-socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  border-top: 1px solid rgba(212, 169, 74, 0.15);
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding: 60px 0 100px;
  background: var(--cream-100);
}
.breadcrumb {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb .sep { margin: 0 10px; color: var(--gold-500); }
.product-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}
.product-image-frame {
  background: var(--navy-800);
  border-radius: var(--radius-md);
  padding: 40px;
  min-height: 480px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.product-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,169,74,0.15), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(212,169,74,0.08), transparent 50%);
}
.product-image-frame img {
  max-height: 440px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}
.product-info-kicker {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.product-info h1 {
  font-size: 2.5rem;
  color: var(--navy-800);
  margin-bottom: 14px;
  line-height: 1.15;
}
.product-info-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-800);
}
.product-weight {
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 1px;
}
.product-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.product-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  font-size: 13px;
}
.product-meta-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: start;
}
.product-meta-row dt {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 2px;
}
.product-meta-row dd {
  margin: 0;
  color: var(--ink);
}
.product-meta-row dd ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-meta-row dd li {
  font-size: 12px;
  padding: 5px 12px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--navy-700);
}
.product-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.product-cta-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 14px;
  font-style: italic;
}

/* Related products strip on detail page */
.related-strip {
  padding: 80px 0;
  background: var(--cream-50);
  border-top: 1px solid var(--line);
}

/* ============================================================
   PRODUCTS LISTING PAGE
   ============================================================ */
.page-header {
  background: var(--navy-800);
  color: var(--cream-50);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,169,74,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,169,74,0.08), transparent 50%);
}
.page-header-kicker {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.page-header h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  color: var(--gold-300);
  position: relative;
  margin-bottom: 18px;
}
.page-header p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

.products-page {
  padding: 60px 0 100px;
  background: var(--cream-100);
}
.filters-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 8px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--navy-800);
  transition: all 0.2s;
  font-weight: 600;
}
.filter-btn:hover { background: var(--cream-50); }
.filter-btn.active {
  background: var(--navy-800);
  color: var(--gold-400);
  border-color: var(--navy-800);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  padding: 90px 0;
  background: var(--cream-50);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-intro-image {
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=900&q=80") center/cover;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-intro-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.about-intro h2 {
  font-size: 2.4rem;
  color: var(--navy-800);
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-intro .kicker {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.about-values {
  padding: 90px 0;
  background: var(--navy-800);
  color: var(--cream-50);
  position: relative;
}
.about-values .section-title { color: var(--gold-300); }
.about-values .section-title::after { background: var(--gold-500); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  text-align: center;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
}
.value-icon {
  font-size: 28px;
  color: var(--gold-400);
  margin-bottom: 20px;
  display: inline-grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
}
.value-card h3 {
  font-size: 1.3rem;
  color: var(--gold-300);
  margin-bottom: 14px;
}
.value-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.7;
}

.about-story {
  padding: 90px 0;
  background: var(--cream-100);
}
.about-story-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.about-story h2 {
  font-size: 2.2rem;
  color: var(--navy-800);
  margin-bottom: 30px;
}
.about-story p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-story .pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy-800);
  padding: 30px 20px;
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  margin: 40px 0;
  line-height: 1.5;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 90px 0;
  background: var(--cream-100);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.contact-info h2 {
  font-size: 2.2rem;
  color: var(--navy-800);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-blocks {
  display: grid;
  gap: 22px;
}
.contact-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-block:hover {
  border-color: var(--gold-500);
  transform: translateX(4px);
}
.contact-block-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 50%;
  font-size: 18px;
}
.contact-block h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-block p, .contact-block a {
  font-size: 15px;
  color: var(--navy-800);
  font-weight: 500;
  margin: 0;
}
.contact-form {
  background: var(--cream-50);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-size: 1.6rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.contact-form-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.form-row { margin-bottom: 20px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 169, 74, 0.15);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-submit-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 14px;
  font-style: italic;
}

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-mute);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s ease both;
}
.stagger > * { animation: fadeUp 0.6s ease both; }
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.15s; }
.stagger > *:nth-child(3) { animation-delay: 0.25s; }
.stagger > *:nth-child(4) { animation-delay: 0.35s; }
.stagger > *:nth-child(5) { animation-delay: 0.45s; }
.stagger > *:nth-child(6) { animation-delay: 0.55s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-main { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .topbar-inner { padding: 8px 20px; }
  .topbar-inner { font-size: 11px; }
  .topbar-phone span:not(.topbar-badge), .topbar-support span { display: none; }

  .nav-inner { grid-template-columns: auto 1fr auto; padding: 16px 20px; }
  .nav-left { display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: var(--navy-900); flex-direction: column; gap: 0;
    padding: 20px 0; border-top: 1px solid var(--line); }
  .nav-left.open { display: flex; }
  .nav-left .nav-link { padding: 12px 24px; width: 100%; text-align: center; }
  .nav-right { gap: 20px; }
  .nav-toggle { display: inline-block; }
  .brand-name { font-size: 1.4rem; letter-spacing: 4px; }
  .brand-tagline { font-size: 8px; letter-spacing: 3px; }

  .hero { min-height: 420px; }
  .hero-inner { padding: 60px 20px; }
  .hero-title { font-size: 2.2rem; }

  .bestsellers { padding: 60px 0 80px; }
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card { min-height: 260px; }

  .section-title { font-size: 1.8rem; }
  .page-header { padding: 60px 0 50px; }

  .product-price-row { flex-wrap: wrap; }
  .product-info h1 { font-size: 1.8rem; }

  .footer-cols { grid-template-columns: 1fr; gap: 30px; }

  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}
