/* NaturaField — global stylesheet */

:root {
  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --color-bg: oklch(98% 0.006 85);
  --color-text: oklch(20% 0.01 90);
  --color-text-muted: oklch(40% 0.01 90);
  --color-text-muted-2: oklch(45% 0.01 90);
  --color-text-dark2: oklch(28% 0.02 100);
  --color-text-dark3: oklch(24% 0.02 100);
  --color-text-dark4: oklch(22% 0.02 100);
  --color-text-dark5: oklch(30% 0.01 90);
  --color-text-dark6: oklch(32% 0.01 90);
  --color-text-dark7: oklch(35% 0.01 90);

  --color-brand: oklch(28% 0.045 150);
  --color-brand-dark: oklch(24% 0.03 150);
  --color-moss: oklch(45% 0.05 110);
  --color-moss-2: oklch(45% 0.05 130);
  --color-terracotta: oklch(42% 0.045 50);
  --color-terracotta-2: oklch(50% 0.045 55);

  --color-cream: oklch(94% 0.015 82);
  --color-cream-light: oklch(96% 0.012 85);
  --color-white-ish: oklch(97% 0.006 85);
  --color-border: oklch(90% 0.02 78);
  --color-border-2: oklch(88% 0.02 78);

  --max-width: 1280px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --radius-pill: 30px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { color: inherit; }

button { font-family: inherit; }

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
  background: var(--color-brand-dark);
  color: var(--color-white-ish);
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  letter-spacing: 0.03em;
}

/* ===== COOKIE NOTICE ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 620px;
  margin: 0 auto;
  background: var(--color-brand-dark);
  color: var(--color-white-ish);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 12px 30px oklch(0% 0 0 / 0.25);
}
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-banner button {
  background: var(--color-white-ish);
  color: var(--color-brand-dark);
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.cookie-banner[hidden] { display: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(98% 0.006 85 / 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-brand);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1.5px;
  background: var(--color-brand);
  transform: translateX(-50%) rotate(20deg);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-brand-dark);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  color: var(--color-text-dark3);
}
.main-nav a.active,
.main-nav a:hover { color: var(--color-brand); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.cart-link {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-brand);
  color: var(--color-white-ish);
  padding: 9px 14px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.cart-link:hover { opacity: 0.88; }
.cart-count {
  background: var(--color-white-ish);
  color: var(--color-brand);
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 4px;
}

.burger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: none;
  border: none;
}
.burger span { width: 22px; height: 2px; background: var(--color-brand-dark); display: block; }

.category-links {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 12px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  font-size: 13px;
  color: var(--color-text-muted);
}
.category-links a {
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  color: inherit;
}
.category-links a:hover { color: var(--color-brand); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--color-bg);
  display: none;
  flex-direction: column;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; justify-content: flex-end; }
.mobile-menu-close {
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 8px;
  background: none;
  border: none;
  color: var(--color-text);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: 26px;
}
.mobile-nav a { text-decoration: none; color: oklch(22% 0.02 100); }
.mobile-divider { height: 1px; background: var(--color-border); margin: 24px 0; }
.mobile-categories { display: flex; flex-direction: column; gap: 16px; font-size: 15px; color: var(--color-text-muted); }
.mobile-categories a { text-decoration: none; color: inherit; }

@media (max-width: 899px) {
  .main-nav { display: none; }
  .burger { display: flex; }
}

/* ===== MAIN ===== */
main { flex: 1; }

/* ===== HERO ===== */
.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 28px auto 0;
  padding: 0 24px;
}
.hero-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(20% 0.02 150 / 0.6), oklch(20% 0.02 150 / 0.1) 60%);
}
.hero-content { position: relative; z-index: 2; padding: 56px; max-width: 620px; }
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(94% 0.02 100);
  margin-bottom: 18px;
  font-weight: 600;
}
.eyebrow.moss { color: var(--color-moss); }
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.08;
  color: var(--color-white-ish);
  margin: 0 0 20px;
  font-weight: 600;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: oklch(94% 0.02 100);
  margin: 0 0 32px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  border: none;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-light { background: var(--color-white-ish); color: var(--color-brand-dark); }
.btn-light:hover { opacity: 0.9; }
.btn-outline-light {
  background: transparent;
  color: var(--color-white-ish);
  border: 1.5px solid oklch(97% 0.006 85 / 0.7);
}
.btn-outline-light:hover { background: oklch(97% 0.006 85 / 0.12); }
.btn-brand { background: var(--color-brand); color: var(--color-white-ish); }
.btn-brand:hover { opacity: 0.9; }
.btn-outline-brand {
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-brand);
}

/* ===== SECTIONS ===== */
section.block { max-width: var(--max-width); margin: 96px auto 0; padding: 0 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-head h2, h2.section-title {
  font-family: var(--font-serif);
  font-size: 34px;
  margin: 0;
  font-weight: 600;
}
.section-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-row h2 { font-family: var(--font-serif); font-size: 32px; margin: 0; font-weight: 600; }
.link-brand {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
  border-bottom: 1.5px solid var(--color-brand);
  text-decoration: none;
}

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}

/* Category card */
.category-card {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-cream-light);
  transition: transform 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-card:hover { transform: translateY(-4px); }
.category-card .photo { height: 150px; background-size: cover; background-position: center; }
.category-card .body { padding: 18px; }
.category-card .body .name { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.category-card .body .desc { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.5; }

/* Product card */
.product-card {
  background: var(--color-cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px oklch(20% 0.02 100 / 0.12); }
.product-card .photo-wrap { height: 190px; position: relative; background-size: cover; background-position: center; }
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-card .wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: oklch(98% 0.006 85 / 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.product-card .wish span {
  width: 12px; height: 12px;
  border: 1.6px solid oklch(50% 0.01 90);
  transform: rotate(45deg);
}
.product-card .wish.active span { border-color: var(--color-moss); background: var(--color-moss); }
.product-card .body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .name { font-family: var(--font-serif); font-size: 16.5px; font-weight: 600; line-height: 1.3; }
.product-card .desc { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.45; flex: 1; }
.product-card .meta { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: var(--color-text-muted); }
.product-card .meta .stock { color: var(--color-moss-2); }
.product-card .buy-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.product-card .price { font-size: 18px; font-weight: 700; color: var(--color-brand); }
.product-card .add-btn {
  background: var(--color-brand);
  color: var(--color-white-ish);
  border: none;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}
.product-card .add-btn:hover { opacity: 0.88; }

/* Brand block */
.photo-block {
  border-radius: 22px;
  height: 440px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.brand-points { display: flex; flex-direction: column; gap: 14px; }
.brand-point { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--color-text-dark2); }
.brand-point .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-moss); flex-shrink: 0; }

/* Why cards */
.why-card { text-align: center; padding: 20px; }
.why-icon {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--color-moss);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon span { width: 16px; height: 16px; background: var(--color-moss); }
.why-card .title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.why-card .desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

/* Origin / cream sections */
.section-cream { background: var(--color-cream); margin-top: 110px; padding: 90px 24px; }
.section-cream.tight { margin-top: 100px; padding: 70px 24px; }
.section-cream .inner { max-width: 780px; margin: 0 auto; text-align: center; }
.section-cream .inner p { font-size: 16.5px; line-height: 1.75; color: var(--color-text-dark7); margin: 0; }

/* Lifestyle photos */
.grid-lifestyle { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.grid-lifestyle .photo { height: 200px; border-radius: 16px; background-size: cover; background-position: center; }
@media (max-width: 900px) { .grid-lifestyle { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Promo banner */
.promo-banner {
  border-radius: 26px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::after { content: ''; position: absolute; inset: 0; background: oklch(20% 0.03 150 / 0.45); }
.promo-banner .content { position: relative; z-index: 2; padding: 52px; text-align: center; margin: 0 auto; }
.promo-banner h2 { font-family: var(--font-serif); font-size: 34px; color: var(--color-white-ish); margin: 0 0 14px; font-weight: 600; }
.promo-banner p { font-size: 16px; color: oklch(94% 0.02 100); margin: 0 0 28px; }

/* Trust points */
.trust-point { text-align: center; font-size: 14.5px; font-weight: 600; color: var(--color-text-dark2); }
.trust-point .diamond { width: 10px; height: 10px; background: var(--color-moss); margin: 0 auto 14px; transform: rotate(45deg); }

/* Newsletter */
.newsletter { max-width: 900px; margin: 100px auto 0; padding: 60px 24px; text-align: center; }
.newsletter h2 { font-family: var(--font-serif); font-size: 28px; margin: 0 0 12px; font-weight: 600; }
.newsletter p { font-size: 15px; color: var(--color-text-muted); margin: 0 0 26px; line-height: 1.6; }
.newsletter form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter input[type="email"] {
  flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 26px;
  border: 1.5px solid var(--color-border-2); font-size: 14px; font-family: inherit;
}
.newsletter button {
  background: var(--color-brand); color: var(--color-white-ish); border: none;
  padding: 14px 26px; border-radius: 26px; font-weight: 700; font-size: 13px; letter-spacing: 0.03em; cursor: pointer;
}
.form-message { max-width: 440px; margin: 0 auto 16px; font-size: 13.5px; font-weight: 600; padding: 10px 16px; border-radius: 12px; }
.form-message.ok { background: oklch(90% 0.05 140); color: var(--color-brand-dark); }
.form-message.error { background: oklch(90% 0.06 30); color: oklch(30% 0.06 30); }

/* ===== Breadcrumb ===== */
.breadcrumb { font-size: 13px; color: var(--color-text-muted-2); margin-bottom: 18px; }
.breadcrumb a { color: var(--color-brand); text-decoration: none; }

/* ===== Shop page ===== */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
@media (max-width: 800px) { .shop-layout { grid-template-columns: 1fr; } }
.shop-filters { display: flex; flex-direction: column; gap: 30px; }
.filter-title { font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.filter-cats { display: flex; flex-direction: column; gap: 9px; }
.filter-cats button {
  background: none; border: none; padding: 0; text-align: left;
  cursor: pointer; font-size: 14px; color: var(--color-text-dark7); font-family: inherit;
}
.filter-cats button.active { color: var(--color-brand); font-weight: 700; }
.filter-checks { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.filter-checks label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.shop-toolbar .count { font-size: 14px; color: var(--color-text-muted); }
.shop-toolbar select {
  padding: 10px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--color-border-2);
  font-size: 13.5px; font-family: inherit; background: var(--color-bg);
}
.shop-empty { text-align: center; padding: 60px 0; color: var(--color-text-muted-2); }

/* ===== Product detail page ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
@media (max-width: 800px) { .product-detail { grid-template-columns: 1fr; } }
.product-gallery-main { border-radius: 20px; height: 460px; background-size: cover; background-position: center; margin-bottom: 14px; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.product-thumbs .thumb { height: 80px; border-radius: 12px; background-size: cover; background-position: center; }
.product-badge {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 20px; margin-bottom: 14px;
}
.product-info h1 { font-family: var(--font-serif); font-size: 30px; margin: 0 0 10px; font-weight: 600; }
.product-rating { font-size: 14px; color: var(--color-moss); margin-bottom: 16px; }
.product-price { font-size: 30px; font-weight: 700; color: var(--color-brand); margin-bottom: 6px; }
.product-sub { font-size: 14px; color: var(--color-text-muted); margin-bottom: 22px; }
.product-sub .stock { color: var(--color-moss-2); }
.product-desc { font-size: 15.5px; line-height: 1.7; color: var(--color-text-dark5); margin: 0 0 26px; }
.qty-row { display: flex; gap: 12px; align-items: center; margin-bottom: 30px; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--color-border-2); border-radius: 26px; }
.qty-control button { width: 40px; height: 44px; border: none; background: transparent; font-size: 18px; cursor: pointer; }
.qty-control .qty-value { width: 34px; text-align: center; font-weight: 600; }
.btn-add-cart {
  flex: 1; min-width: 180px; background: var(--color-brand); color: var(--color-white-ish); border: none;
  padding: 15px 20px; border-radius: 26px; font-weight: 700; font-size: 14px; cursor: pointer;
}
.btn-add-cart:hover { opacity: 0.9; }
.wish-toggle {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--color-border-2);
  background: transparent; cursor: pointer; flex-shrink: 0;
}
.wish-toggle.active { background: var(--color-moss); }
.detail-rows { border-top: 1px solid var(--color-border); }
.detail-row {
  padding: 14px 0; border-bottom: 1px solid var(--color-border);
  display: grid; grid-template-columns: 140px 1fr; gap: 12px; font-size: 14px;
}
.detail-row .label { font-weight: 600; color: var(--color-text-dark2); }
.detail-row .value { color: var(--color-text-muted); line-height: 1.5; }

/* ===== Cart page ===== */
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty p { font-size: 16px; color: var(--color-text-muted); margin-bottom: 24px; }
.cart-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.cart-item {
  display: grid; grid-template-columns: 90px 1fr auto auto; gap: 18px; align-items: center;
  padding: 16px; background: var(--color-cream-light); border-radius: 16px;
}
.cart-item .thumb { width: 90px; height: 90px; border-radius: 12px; background-size: cover; background-position: center; }
.cart-item .name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.cart-item .meta { font-size: 13px; color: var(--color-text-muted-2); }
.cart-item .remove { font-size: 12.5px; color: var(--color-terracotta); cursor: pointer; margin-top: 6px; background: none; border: none; padding: 0; font-family: inherit; }
.cart-item .line-total { font-weight: 700; font-size: 15px; min-width: 70px; text-align: right; }
@media (max-width: 560px) {
  .cart-item { grid-template-columns: 60px 1fr; grid-template-areas: "thumb name" "qty qty" "total total"; }
  .cart-item .thumb { grid-area: thumb; width: 60px; height: 60px; }
}
.cart-summary { max-width: 360px; margin-left: auto; background: var(--color-cream); border-radius: 18px; padding: 26px; }
@media (max-width: 700px) { .cart-summary { max-width: none; margin-left: 0; } }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 12px; color: var(--color-text-dark7); }
.summary-total { display: flex; justify-content: space-between; font-size: 19px; font-weight: 700; margin-bottom: 26px; }
.summary-divider { height: 1px; background: var(--color-border-2); margin-bottom: 16px; }

/* ===== Checkout ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-section { margin-bottom: 28px; }
.checkout-section .title { font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid input, .form-grid select {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--color-border-2);
  font-family: inherit; font-size: 14px; width: 100%;
}
.form-grid .full { grid-column: span 2; }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: span 1; } }
.ship-options, .pay-options { display: flex; flex-direction: column; gap: 10px; }
.ship-options label {
  display: flex; justify-content: space-between; padding: 14px 16px; border: 1.5px solid var(--color-border-2);
  border-radius: 12px; cursor: pointer; font-size: 14px;
}
.pay-options label {
  display: flex; padding: 14px 16px; border: 1.5px solid var(--color-border-2);
  border-radius: 12px; cursor: pointer; font-size: 14px;
}
.checkout-summary { background: var(--color-cream); border-radius: 18px; padding: 26px; align-self: start; }
.checkout-summary .title { font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.checkout-line-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.checkout-line-items .row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--color-text-dark7); }
.btn-place-order {
  width: 100%; background: var(--color-brand); color: var(--color-white-ish); border: none;
  padding: 16px; border-radius: 26px; font-weight: 700; font-size: 13px; letter-spacing: 0.03em; cursor: pointer;
}
.btn-place-order:hover { opacity: 0.9; }
.checkout-note { font-size: 12px; color: var(--color-text-muted-2); margin-top: 12px; text-align: center; }

/* ===== Simple pages (about/values/contact/legal) ===== */
.page-narrow { max-width: 900px; margin: 0 auto; padding: 40px 24px 100px; }
.page-narrow.wide { max-width: 1000px; }
.page-narrow h1 { font-family: var(--font-serif); font-size: 36px; margin: 0 0 24px; font-weight: 600; }
.page-narrow p { font-size: 16.5px; line-height: 1.8; color: var(--color-text-dark6); margin: 0 0 20px; }
.about-photo { border-radius: 20px; height: 340px; background-size: cover; background-position: center; margin-bottom: 34px; }
.stats-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 40px; }
@media (max-width: 700px) { .stats-3 { grid-template-columns: 1fr; } }
.stat-card { background: var(--color-cream); border-radius: 16px; padding: 24px; text-align: center; }
.stat-card .title { font-family: var(--font-serif); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.stat-card .desc { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.5; }

.values-list { display: flex; flex-direction: column; gap: 26px; }
.value-item { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding-bottom: 26px; border-bottom: 1px solid var(--color-border); }
.value-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--color-cream); display: flex; align-items: center; justify-content: center; }
.value-icon span { width: 14px; height: 14px; background: var(--color-moss); }
.value-item .title { font-family: var(--font-serif); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.value-item .desc { font-size: 15px; color: var(--color-text-dark7); line-height: 1.65; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 14px; }
.contact-info p { font-size: 14.5px; color: var(--color-text-dark7); line-height: 1.7; margin: 0 0 24px; }
.contact-details { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: var(--color-text-dark5); margin-bottom: 28px; }
.contact-details .ph { color: oklch(50% 0.01 90); font-size: 12px; }
.operator-box { background: var(--color-cream); border-radius: 16px; padding: 22px; font-size: 14px; line-height: 1.7; color: var(--color-text-dark5); }
.operator-box .title { font-weight: 700; margin-bottom: 8px; }
.map-box {
  height: 160px; border-radius: 16px; margin-top: 20px; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; justify-content: flex-start; position: relative; overflow: hidden;
}
.map-box span {
  position: relative; z-index: 1; background: oklch(20% 0.02 150 / 0.55); color: var(--color-white-ish);
  font-size: 12px; padding: 6px 10px; margin: 10px;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--color-border-2);
  font-family: inherit; font-size: 14px; width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  background: var(--color-brand); color: var(--color-white-ish); border: none;
  padding: 15px; border-radius: 26px; font-weight: 700; font-size: 14px; cursor: pointer;
}
.contact-form button:hover { opacity: 0.9; }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
@media (max-width: 800px) { .legal-layout { grid-template-columns: 1fr; } }
.legal-nav { display: flex; flex-direction: column; gap: 8px; }
.legal-nav a {
  padding: 10px 14px; border-radius: 10px; font-size: 14px; text-decoration: none; color: var(--color-text-muted);
}
.legal-nav a.active { background: var(--color-cream); color: var(--color-brand-dark); font-weight: 700; }
.legal-content h1 { font-family: var(--font-serif); font-size: 30px; margin: 0 0 24px; font-weight: 600; }
.legal-content p { font-size: 15px; line-height: 1.8; color: oklch(32% 0.01 90); margin: 0 0 18px; }

/* Required field marker */
.req { color: var(--color-terracotta); }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-brand-dark); color: oklch(90% 0.015 90); margin-top: auto; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto; padding: 70px 24px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--color-white-ish); margin-bottom: 10px; }
.footer-brand .tagline { font-size: 14px; color: oklch(78% 0.015 90); margin-bottom: 18px; }
.footer-brand .domain { font-size: 13px; color: oklch(68% 0.015 90); line-height: 1.7; }
.footer-col .heading { font-weight: 700; font-size: 13.5px; letter-spacing: 0.04em; margin-bottom: 16px; color: oklch(96% 0.01 90); }
.footer-col a { display: block; text-decoration: none; font-size: 14px; color: oklch(80% 0.015 90); margin-bottom: 10px; }
.footer-col a:hover { color: var(--color-white-ish); }
.footer-legal {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px 30px; font-size: 12.5px; color: oklch(60% 0.015 90);
  line-height: 1.7; border-top: 1px solid oklch(35% 0.02 150); padding-top: 26px;
}
.footer-copy { max-width: var(--max-width); margin: 0 auto; padding: 0 24px 30px; font-size: 12.5px; color: oklch(55% 0.015 90); }

/* ===== TOAST ===== */
@keyframes nf-toast {
  0% { opacity: 0; transform: translate(-50%, 12px); }
  10% { opacity: 1; transform: translate(-50%, 0); }
  85% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 80;
  background: var(--color-brand-dark); color: var(--color-white-ish);
  padding: 14px 26px; border-radius: 26px; font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 24px oklch(0% 0 0 / 0.2);
  animation: nf-toast 2.6s ease forwards;
  pointer-events: none;
}

/* Photo credit (Pexels attribution, unobtrusive) */
.photo-credit {
  position: absolute; bottom: 6px; right: 10px; font-size: 10px;
  color: oklch(98% 0.01 90 / 0.75); z-index: 2; text-decoration: none;
}
