:root {
  --bg: #faf3e3;
  --ink: #2a1c10;
  --muted: #7a6b5b;
  --line: #e6d8b8;
  --accent: #689f38;
  --accent-dark: #4a7c2e;
  --accent-light: #8bc34a;
  --gold: #c9a050;
  --gold-light: #dfb872;
  --warm: #b8651f;
  --soft: #f0e2c5;
  --card: #fffaf0;
  --max: 1200px;
  --radius: 2px;
  /* Water-droplet font stack — soft, fluid, rounded */
  --font-script: 'Sacramento', 'Great Vibes', cursive;
  --font-display: 'Pacifico', 'Cormorant Garamond', cursive;
  --font-body: 'Quicksand', 'Inter', -apple-system, sans-serif;
  /* Attractive new palette tuned for the grain-map background */
  --droplet-deep: #1f3a1a;       /* deep forest green — primary heading */
  --droplet-warm: #c2410c;       /* rich rust orange — script accent */
  --droplet-gold: #b08015;       /* deep amber gold */
  --droplet-body: #3d2817;       /* warm dark brown — body text */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--droplet-body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.25;
  color: var(--droplet-deep);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1.1rem;
  font-weight: 500;
}

p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; transition: color 0.3s; }

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

/* Header */
header {
  position: sticky;
  top: 0;
  background: rgba(250, 243, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 120px;
}

.logo-mark {
  height: 115px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
  mix-blend-mode: multiply;
}

.logo-mark:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--droplet-body);
  font-weight: 600;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--droplet-warm);
  border-radius: 999px;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-btn:hover {
  color: var(--accent);
  transform: scale(1.08);
}

.cart-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  pointer-events: none;
}

.cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--droplet-warm);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  font-family: var(--font-body);
  letter-spacing: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.cart-count:empty,
.cart-count[data-empty="true"] {
  display: none;
}

/* Script gold tag — used throughout */
.tag {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  color: var(--droplet-gold);
  margin-bottom: 1.25rem;
  display: block;
  text-transform: none;
}

/* Hero */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 4rem 2rem 6rem;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  margin: 1.75rem 0 2.5rem;
  font-size: 1.1rem;
  max-width: 500px;
}

.hero-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(45, 90, 61, 0.3);
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: -1.5rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

/* Welcome panel hero — grain-map background, droplet typography */
.hero-welcome {
  background: url('images/welcome-frame-bg.jpg') center/cover no-repeat #c8915a;
  padding: 3rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 250, 240, 0.55) 0%, rgba(255, 250, 240, 0.25) 60%, transparent 100%);
  pointer-events: none;
}

.welcome-panel {
  background: transparent;
  border: none;
  padding: 1rem;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.welcome-panel::before { display: none; }
.welcome-panel::after { display: none; }

.welcome-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
}

.hw-script {
  font-family: var(--font-script);
  font-style: normal;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--droplet-warm);
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.hw-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--droplet-deep);
  margin: 0;
  text-transform: none;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.hw-divider { display: none; }
.hw-tagline { display: none; }
.hw-cta { display: none; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.05rem 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: all 0.35s ease;
  text-align: center;
  border-radius: 999px;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(74, 124, 46, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Sections */
section.block { padding: 7rem 0; }
section.block.soft { background: var(--soft); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.section-head h2 { margin-bottom: 1.25rem; }
.section-head p { font-size: 1.05rem; }

/* Decorative ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 220px;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.ornament span {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--droplet-gold);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

.feature {
  text-align: center;
  transition: transform 0.4s ease;
}

.feature:hover { transform: translateY(-4px); }

.feature .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.6);
}

.feature h3 { margin-top: 0.5rem; margin-bottom: 0.75rem; }

/* Products grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 3rem 2.5rem;
}

.product {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.product:hover { transform: translateY(-6px); }

.product-img {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px -15px rgba(45, 90, 61, 0.2);
  transition: box-shadow 0.4s ease;
}

.product:hover .product-img {
  box-shadow: 0 25px 45px -15px rgba(45, 90, 61, 0.3);
}

.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.06) 100%);
  z-index: 1;
}

.product h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.product .cat {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--droplet-gold);
  margin-bottom: 0.4rem;
  display: block;
}

.product .desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
  min-height: 2.6em;
  line-height: 1.55;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--droplet-deep);
  line-height: 1;
}

.price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.25rem;
}

.add-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--accent);
  transition: color 0.3s, border-color 0.3s;
  font-weight: 500;
}

.add-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Quantity control on product cards */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}

.qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-control button:hover {
  background: var(--accent);
  color: #fff;
}

.qty-control .count {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0 0.2rem;
}

/* Quantity select dropdown on product cards */
.qty-select-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-select-wrap select {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem 0.3rem 0.9rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  min-width: 70px;
  text-align: center;
  transition: border-color 0.25s;
}

.qty-select-wrap select:focus {
  border-color: var(--accent-dark);
}

.qty-select-wrap .qty-dec,
.qty-select-wrap .qty-inc {
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
  line-height: 1;
  font-family: inherit;
  padding: 0;
}

.qty-select-wrap .qty-dec:hover,
.qty-select-wrap .qty-inc:hover {
  background: var(--accent);
  color: #fff;
}

/* Filter bar */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter {
  background: none;
  border: 1px solid var(--line);
  padding: 0.6rem 1.6rem;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 999px;
  font-weight: 400;
}

.filter:hover, .filter.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.5);
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -30px rgba(45, 90, 61, 0.3);
  position: relative;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: -1.25rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

.about-text p { margin: 1.5rem 0; font-size: 1.05rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--gold);
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--accent-dark);
  display: block;
  font-weight: 400;
  line-height: 1;
}

.stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.85rem;
  display: block;
}

/* Contact */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info ul {
  list-style: none;
  margin-top: 2rem;
}

.contact-info li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-info .label {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3rem;
  color: var(--droplet-gold);
  text-transform: none;
  letter-spacing: 0;
}

.contact-info .val {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 400;
}

form { display: grid; gap: 1.8rem; }

.field { display: flex; flex-direction: column; gap: 0.6rem; }

.field label {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3rem;
  color: var(--droplet-gold);
  letter-spacing: 0;
  text-transform: none;
}

.field input, .field textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.85rem 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.3s;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

/* Cart drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 20, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 200;
}

.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--bg);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.18);
}

.drawer.open { transform: translateX(0); }

.drawer-head {
  padding: 1.8rem 2rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-head h3 { margin: 0; font-size: 1.4rem; }

.close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: color 0.2s;
}

.close-btn:hover { color: var(--ink); }

.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }

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

.cart-item-img {
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.cart-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--droplet-deep);
}

.cart-item-info .meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s;
}

.qty button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--droplet-deep);
}

.remove {
  background: none;
  border: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  margin-top: 0.6rem;
  padding: 0;
  transition: color 0.2s;
}

.remove:hover { color: var(--accent); }

.drawer-foot {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

/* Delivery banner inside cart */
.delivery-banner {
  background: linear-gradient(135deg, #fff, var(--soft));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.delivery-banner.unlocked {
  background: var(--accent);
  border-color: var(--accent);
}

.dn-text {
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.delivery-banner.unlocked .dn-text {
  color: #fff;
  margin-bottom: 0;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.dn-text strong { color: var(--accent); font-weight: 500; }
.delivery-banner.unlocked .dn-text strong { color: var(--gold-light); }

.dn-bar {
  height: 5px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.dn-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dn-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
}

/* Totals breakdown */
.totals-area {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
}

.totals-row .label {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--droplet-gold);
  font-size: 1.25rem;
}

.totals-row .val { color: var(--droplet-body); font-weight: 600; font-family: var(--font-body); }

.totals-row.free .val {
  color: var(--accent);
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
}

.totals-row.grand {
  padding-top: 0.9rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--line);
}

.totals-row.grand .label {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--droplet-deep);
  font-weight: 700;
}

.totals-row.grand .val {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  color: var(--droplet-deep);
}

.drawer-foot .btn { width: 100%; }

.empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--muted);
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.4rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 4.5rem 0 2rem;
  margin-top: 5rem;
  background: var(--soft);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.foot-grid h4 {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--droplet-gold);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.foot-grid ul { list-style: none; }

.foot-grid li { padding: 0.4rem 0; color: var(--muted); font-size: 0.9rem; }

.foot-grid a { color: var(--muted); font-size: 0.9rem; }
.foot-grid a:hover { color: var(--accent); }

.copy {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.copy span:last-child {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--droplet-gold);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 50;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
}

.wa-float svg { width: 32px; height: 32px; fill: #fff; }

.btn-wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-wa:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  color: #fff;
}

.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* Notice */
.notice {
  background: var(--card);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.85rem;
  margin-bottom: 3.5rem;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
  line-height: 1.7;
  box-shadow: 0 8px 24px -12px rgba(45, 90, 61, 0.15);
}
.notice strong { color: var(--accent); font-weight: 500; }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--bg);
  padding: 1rem 1.85rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  z-index: 300;
  transition: transform 0.35s, opacity 0.35s, visibility 0.35s;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  max-width: 90vw;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Page header */
.page-head {
  padding: 7rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-head h1 { font-size: clamp(2.5rem, 5vw, 4rem); }

.page-head p {
  margin-top: 1.25rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* Testimonials grid */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial {
  background: var(--card);
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -25px rgba(45, 30, 10, 0.18);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(201, 160, 80, 0.15);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--droplet-gold);
  opacity: 0.4;
  line-height: 1;
  font-weight: 400;
}

.t-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial p {
  font-style: normal;
  color: var(--droplet-body);
  flex: 1;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.t-author {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.t-author strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--droplet-deep);
}

.t-author span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Persistent delivery bar (inside sticky header) */
.delivery-bar {
  display: none;
  border-top: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--soft) 0%, rgba(255,255,255,0.7) 100%);
  padding: 0.65rem 2rem;
}

.delivery-bar.show { display: block; }

.db-content {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.db-text {
  font-size: 0.85rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.db-text strong {
  color: var(--accent);
  font-weight: 500;
}

.db-bar {
  width: 220px;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.db-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade-in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .nav { padding: 1rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a:not(.cart-btn) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; min-height: auto; }
  .hero-img { aspect-ratio: 1; order: -1; }
  .hero-img::after, .about-img::after { display: none; }
  .hero-welcome { padding: 3rem 1rem; min-height: auto; }
  .welcome-panel { padding: 2.5rem 1.5rem; }
  .welcome-panel::before, .welcome-panel::after { width: 50px; height: 50px; }
  .testimonials { grid-template-columns: 1fr; gap: 1.5rem; }
  .delivery-bar { padding: 0.55rem 1rem; }
  .db-content { gap: 0.75rem; }
  .db-bar { width: 100%; max-width: 200px; }
  .db-text { font-size: 0.78rem; text-align: center; }
  .features { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split, .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .copy { flex-direction: column; gap: 0.5rem; }
  section.block { padding: 5rem 0; }
  .container { padding: 0 1.5rem; }
}
