/* ===== CARVER BROTHERS TURF — SHARED STYLES ===== */
.logo-text,
a .logo-text,
a:visited .logo-text,
a:active .logo-text,
a:hover .logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #14532d !important;
  margin-left: 0.5rem;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  line-height: 1.2;
  align-self: center;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .logo-text { font-size: 0.8rem; }
  .logo img { height: 36px !important; }
}
:root {
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-400: #a8a29e;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--stone-800);
  background: var(--white);
  line-height: 1.6;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone-200);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img { height: 48px; vertical-align: middle; }

nav a {
  color: var(--stone-700);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
nav a:hover { color: var(--green-700); background: var(--green-50); }
nav a.active { color: var(--green-700); font-weight: 700; background: var(--green-50); }

.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-700);
  color: white;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: 0.75rem;
}
.nav-phone:hover { background: var(--green-800); }

.mobile-menu { display: none; background: none; border: none; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, #1a4a1a 100%);
}
.hero.hero-short { min-height: 50vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/sod-farm-hero.jpg') center/cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 550px;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-500);
  color: var(--stone-900);
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--amber-600); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--green-700);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--green-700);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--green-700); color: white; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--stone-200);
  padding: 2rem 1.5rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--stone-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 1.5rem; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--stone-900);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--stone-600);
}

.container { max-width: 1200px; margin: 0 auto; }

/* ===== TURF CARDS ===== */
.turf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.turf-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
a.turf-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.turf-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.turf-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}
.turf-card-body { padding: 2rem; }
.turf-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.turf-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--stone-900);
}
.turf-card p {
  color: var(--stone-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.turf-specs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--stone-700);
}
.turf-spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ===== PRICING TABLE ===== */
.pricing-section { background: var(--stone-50); }
.pricing-table {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stone-200);
  max-width: 900px;
  margin: 0 auto;
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--green-800);
  color: white;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--stone-200);
  font-size: 0.95rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--green-50); }
.price-val {
  font-weight: 700;
  color: var(--green-700);
  font-size: 1.1rem;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.step-num {
  width: 50px;
  height: 50px;
  background: var(--green-700);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--stone-900);
}
.step-card p {
  color: var(--stone-600);
  font-size: 0.9rem;
}

/* ===== PICKER ===== */
.picker-section { background: var(--green-50); }
.picker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}
.picker-question {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--stone-200);
}
.picker-question h3 {
  font-size: 1.2rem;
  color: var(--green-800);
  margin-bottom: 0.75rem;
}
.picker-question p {
  color: var(--stone-600);
  font-size: 0.95rem;
}
.picker-rec {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--green-100);
  color: var(--green-800);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ===== WHOLESALE ===== */
.wholesale-section {
  background: var(--stone-900);
  color: white;
}
.wholesale-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wholesale-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.wholesale-content p {
  color: var(--stone-400);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.wholesale-img { border-radius: 16px; overflow: hidden; }
.wholesale-img img { width: 100%; height: 400px; object-fit: cover; }
.wholesale-perks { list-style: none; margin: 1.5rem 0; }
.wholesale-perks li { padding: 0.5rem 0; color: var(--stone-400); font-size: 0.95rem; }
.wholesale-perks li::before { content: "✓"; color: var(--green-500); font-weight: 700; margin-right: 0.75rem; }

/* ===== DELIVERY ===== */
.delivery-section { background: var(--stone-50); }
.county-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.county-tag {
  background: var(--white);
  border: 1px solid var(--stone-200);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone-700);
}
.county-tag.highlight {
  background: var(--green-100);
  border-color: var(--green-500);
  color: var(--green-800);
}

/* ===== INSTALLATION ===== */
.install-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.install-step {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--stone-200);
}
.install-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--green-800);
}
.install-step p {
  color: var(--stone-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-500);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.cta-phone:hover { color: var(--amber-600); }

/* ===== FOOTER ===== */
footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
footer a {
  color: var(--stone-400);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}
footer a:hover { color: var(--green-500); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-800);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ===== PRODUCT PAGE STYLES ===== */
.product-detail { padding: 4rem 1.5rem; }
.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--stone-900);
  margin-bottom: 1rem;
}
.product-info p {
  color: var(--stone-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.product-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.spec-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.spec-card .spec-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.spec-card .spec-label { font-size: 0.8rem; color: var(--stone-600); text-transform: uppercase; letter-spacing: 0.03em; }
.spec-card .spec-value { font-size: 1rem; font-weight: 700; color: var(--green-800); }

.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.season-badge.in-season { background: var(--green-100); color: var(--green-800); }
.season-badge.out-season { background: #fef3c7; color: var(--amber-600); }

.care-tips {
  background: var(--stone-50);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0;
}
.care-tips h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--stone-900);
  margin-bottom: 1.5rem;
}
.care-tips ul {
  list-style: none;
  padding: 0;
}
.care-tips li {
  padding: 0.6rem 0;
  color: var(--stone-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.care-tips li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 700;
  margin-right: 0.75rem;
}

.related-products {
  background: var(--green-50);
  padding: 4rem 1.5rem;
}
.related-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===== DELIVERY PAGE ===== */
.zone-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  align-items: stretch;
}
.zone-card {
  background: var(--white);
  border: 2px solid var(--stone-200);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.zone-card.zone-1 { border-color: var(--green-500); }
.zone-card.zone-2 { border-color: var(--amber-500); }
.zone-card.zone-3 { border: 2px dashed #3b82f6; }
.zone-card h3 { font-size: 1.3rem; color: var(--stone-900); margin-bottom: 0.5rem; }
.zone-card .zone-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
  margin: 0.75rem 0;
}
.zone-card .zone-counties { color: var(--stone-600); font-size: 0.9rem; line-height: 1.7; }

.pickup-card {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: var(--green-50);
  border: 2px solid var(--green-500);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.pickup-card h3 { font-size: 1.3rem; color: var(--green-800); margin-bottom: 0.5rem; }
.pickup-card .zone-price { font-size: 2rem; font-weight: 800; color: var(--green-700); margin: 0.75rem 0; }

/* ===== WHOLESALE PAGE ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.benefit-card .benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1.1rem; color: var(--stone-900); margin-bottom: 0.75rem; }
.benefit-card p { color: var(--stone-600); font-size: 0.9rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--green-700); text-decoration: none; display: inline; padding: 0; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--stone-400); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav-links.show { display: flex; }
  .nav-links nav { display: flex; flex-direction: column; width: 100%; }
  .nav-links nav a { padding: 0.75rem 1rem; }
  .nav-links .nav-phone { margin-top: 0.5rem; justify-content: center; }
  .mobile-menu { display: block; }

  .turf-grid,
  .steps-grid,
  .install-steps,
  .picker-grid,
  .wholesale-content,
  .product-grid,
  .zone-cards,
  .benefit-grid,
  .related-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .product-specs-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== CHAT WIDGET ===== */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  animation: chat-entrance 0.6s ease-out;
}
.chat-fab-bubble {
  background: var(--green-700);
  color: white;
  padding: 16px 24px;
  border-radius: 24px 24px 6px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
  white-space: nowrap;
  animation: chat-wiggle 3s ease-in-out infinite;
}
.chat-fab-icon {
  width: 90px;
  height: 90px;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  font-size: 46px;
  transition: transform 0.2s;
  animation: chat-bounce 2s ease-in-out infinite;
}
.chat-fab-icon:hover { transform: scale(1.15); }
@keyframes chat-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes chat-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}
@keyframes chat-entrance {
  from { opacity: 0; transform: translateY(40px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: min(520px, calc(100vw - 40px));
  height: min(680px, calc(100vh - 40px));
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.3);
  z-index: 10000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  animation: chat-window-in 0.3s ease-out;
}
.chat-window.open { display: flex; }
@keyframes chat-window-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-header {
  background: var(--green-800);
  color: white;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-title {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 10px;
  opacity: 0.8;
}
.chat-close:hover { opacity: 1; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--stone-50);
}
.chat-msg {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.6;
}
.chat-msg.bot {
  background: var(--green-100);
  color: var(--stone-900);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--green-700);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing {
  background: var(--green-100);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.typing .dots { display: inline-flex; gap: 4px; }
.chat-msg.typing .dot {
  width: 8px; height: 8px;
  background: var(--green-600);
  border-radius: 50%;
  animation: dot-bounce 1.4s ease-in-out infinite;
}
.chat-msg.typing .dot:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}
.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid var(--stone-200);
  display: flex;
  gap: 10px;
  background: white;
}
.chat-input {
  flex: 1;
  border: 2px solid var(--stone-200);
  border-radius: 28px;
  padding: 14px 20px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--green-500); }
.chat-send {
  background: var(--green-700);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.chat-send:hover { background: var(--green-600); }
@media (max-width: 480px) {
  .chat-window { width: 100vw; height: 100vh; bottom: 0; right: 0; border-radius: 0; }
}

/* ===== OUR TURF — COMBINED PRODUCT PAGE ===== */
.quick-jump {
  background: var(--white);
  border-bottom: 1px solid var(--stone-200);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.quick-jump-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
}
.quick-jump-nav span {
  font-weight: 600;
  color: var(--stone-600);
}
.quick-jump-nav a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.quick-jump-nav a:hover {
  background: var(--green-50);
}

.product-section {
  padding: 4rem 1.5rem;
}
.product-section-alt {
  background: var(--stone-50);
}
.product-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.product-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--stone-900);
  margin: 0;
}

.product-price-box {
  background: var(--green-50);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid var(--green-100);
}

@media (max-width: 768px) {
  .quick-jump-nav {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  .quick-jump-nav a {
    padding: 0.3rem 0.6rem;
  }
  .product-section-header h2 {
    font-size: 1.5rem;
  }
}
