:root {
  --primary: #ff3e96;
  --primary-600: #e91e63;
  --primary-light: rgba(255, 62, 150, 0.1);
  --ink: #2a2a2a;
  --coffee: #6F4E37;
  --coffee-light: rgba(111, 78, 55, 0.1);
  --bg: #fefefe;
  --muted: #f7f7f8;
  --card: rgba(255, 255, 255, 0.95);
  --card-hover: rgba(255, 255, 255, 0.98);
  --chip: #4CBB17;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-1: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-2: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.12);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --backdrop-blur: blur(16px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--bg); line-height: 1.65;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
img, video { max-width: 100%; height: auto; display: block; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  background: var(--primary); 
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  box-shadow: 0 8px 32px rgba(255, 62, 150, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
  padding: 16px 0; 
  width: min(1200px, 92%); 
  margin: 0 auto;
}
.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none;
  transition: transform 0.2s ease;
}
.brand:hover {
  transform: scale(1.02);
}
.brand-logo { 
  height: 52px; 
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.brand-logo.rw { 
  height: 46px; 
  opacity: 0.95; 
}
.site-nav ul { 
  list-style: none; 
  display: flex; 
  gap: 20px; 
  margin: 0; 
  padding: 0; 
  align-items: center;
}
.site-nav a { 
  color: #fff; 
  font-weight: 500; 
  text-decoration: none; 
  position: relative; 
  letter-spacing: 0.2px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.2;
}
.site-nav a:hover { 
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.site-nav a.active { 
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}
.mobile-menu-toggle { 
  display: none; 
  border: 0; 
  background: rgba(255, 255, 255, 0.1); 
  color: #fff; 
  font-size: 20px;
  padding: 12px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Hero */
.hero { 
  padding: clamp(64px, 10vw, 120px) 0; 
  background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 50%, var(--muted) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse, var(--primary-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-inner { 
  width: min(1200px, 92%); 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 48px; 
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy h1 { 
  font-family: 'Playfair Display', serif; 
  color: var(--coffee); 
  font-size: clamp(32px, 6vw, 64px); 
  line-height: 1.1; 
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-copy p { 
  font-size: clamp(18px, 2.4vw, 20px); 
  color: #555; 
  margin: 0 0 32px;
  line-height: 1.6;
  font-weight: 400;
}
.cta { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
}
.btn { 
  display: inline-block; 
  padding: 16px 32px; 
  border-radius: var(--radius); 
  font-weight: 600; 
  font-size: 14px; 
  letter-spacing: 0.5px; 
  text-decoration: none; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before {
  left: 100%;
}
.btn.primary { 
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%); 
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 62, 150, 0.3);
}
.btn.primary:hover { 
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 62, 150, 0.4);
}
.btn.ghost { 
  color: var(--coffee); 
  border: 2px solid var(--coffee); 
  background: transparent;
  backdrop-filter: blur(8px);
}
.btn.ghost:hover { 
  background: var(--coffee); 
  color: #fff; 
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(111, 78, 55, 0.3);
}
.hero-media { 
  aspect-ratio: 16/10; 
  background: #fff; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-2); 
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.hero-media:hover {
  transform: scale(1.02);
}
.hero-video { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

/* Sections */
.section { 
  padding: clamp(72px, 10vw, 120px) 0; 
  background: #fff;
  position: relative;
}
.section.alt { 
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  position: relative;
}
.section.alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, var(--coffee-light) 0%, transparent 50%);
  opacity: 0.3;
  pointer-events: none;
}
.section h2 { 
  font-family: 'Playfair Display', serif; 
  font-weight: 700; 
  color: var(--coffee); 
  text-align: center; 
  margin: 0 0 32px; 
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.01em;
  position: relative;
}
.section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--coffee));
  border-radius: 2px;
}
.section h2 + p.section-intro { 
  text-align: center; 
  margin: 16px auto 0; 
  color: #555; 
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.6;
}

/* Products */
.product-grid { 
  display: grid; 
  grid-template-columns: repeat(4, minmax(0, 1fr)); 
  gap: 28px; 
  margin-top: 48px; 
}
.product-card { 
  background: var(--card); 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-1); 
  padding: 24px; 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--coffee));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover::before {
  opacity: 1;
}
.product-card:hover { 
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  background: var(--card-hover);
}
.product-img { 
  height: 220px; 
  background-size: contain; 
  background-repeat: no-repeat; 
  background-position: center; 
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-card h3 { 
  margin: 8px 0 4px; 
  font-size: 20px; 
  color: var(--coffee); 
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.product-card p { 
  margin: 0 0 12px; 
  color: #555; 
  font-size: 15px;
  line-height: 1.5;
}
.chip { 
  align-self: flex-start; 
  background: linear-gradient(135deg, var(--chip) 0%, #45a049 100%); 
  color: #fff; 
  font-size: 11px; 
  padding: 8px 12px; 
  border-radius: 20px; 
  font-weight: 600; 
  letter-spacing: 0.5px; 
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(76, 187, 23, 0.3);
}

/* About */
.about { display:grid; grid-template-columns: 1.1fr 0.9fr; gap:28px; align-items:center; }
.about img { border-radius: var(--radius); box-shadow: var(--shadow-1); }
.about p { margin: 0 0 12px; color:#333; }

/* Locator */
.locator { display:grid; grid-template-columns: 1.3fr .7fr; gap: 22px; margin-top: 18px; }
#map { 
  width: 100%; 
  height: 560px; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-1); 
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.locator-aside { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 16px; display:flex; flex-direction:column; gap: 16px; }
.zip-form label { font-weight:600; color: var(--coffee); display:block; margin-bottom: 8px; }
.zip-row { display:flex; gap:10px; }
.zip-row input { flex:1; padding: 12px 12px; border:1px solid #e7e7ea; border-radius: 10px; font-size: 14px; }
#search-results { font-size: 14px; color:#333; }
.search-results-list { list-style:none; padding:0; margin: 10px 0 0; display:grid; gap:10px; }
.search-results-list li { border:1px solid #eee; border-radius: 10px; padding: 10px 12px; cursor:pointer; transition: background .15s ease, border-color .15s ease; }
.search-results-list li:hover { background:#fafafa; border-color:#e7e7ea; }
.search-results-list .distance { color: var(--primary); font-weight:600; font-size: 12px; }
.store-list { font-size: 14px; }
.store-list ul { padding-left: 18px; margin: 0; }
.store-category h3 { color: var(--coffee); font-size: 14px; margin: 8px 0; }

/* Enhanced store list styling */
.stores-list, .distributors-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.store-item, .distributor-item {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.store-item:last-child, .distributor-item:last-child {
  border-bottom: none;
}

.chain-name, .distributor-name {
  font-weight: 500;
  color: var(--ink);
}

.location-count {
  color: var(--coffee);
  font-size: 13px;
  font-weight: 400;
}

.store-separator {
  height: 1px;
  background: #e0e0e0;
  margin: 0;
  opacity: 0.6;
}

/* Make store list same height as map with scrolling */
.store-list {
  height: 100%;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 8px;
}

.store-list::-webkit-scrollbar {
  width: 6px;
}

.store-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.store-list::-webkit-scrollbar-thumb {
  background: var(--coffee);
  border-radius: 3px;
}

.store-list::-webkit-scrollbar-thumb:hover {
  background: var(--coffee-light);
}

.store-category {
  margin-bottom: 20px;
}

.store-category:last-child {
  margin-bottom: 0;
}

/* Private label */
.private-label { display:grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 10px; align-items:start; }
.pl-copy p { margin: 0 0 12px; }
.pl-gallery { display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pl-gallery img { border-radius: 10px; box-shadow: var(--shadow-1); background:#fff; }

/* Testimonials */
.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-top: 48px; 
}
.testimonial { 
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%); 
  color: #fff; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-2); 
  padding: 32px; 
  display: flex; 
  flex-direction: column; 
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  font-family: 'Playfair Display', serif;
  opacity: 0.1;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.testimonial blockquote { 
  margin: 0; 
  font-style: italic; 
  font-size: 16px;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}
.testimonial .name { 
  font-weight: 700; 
  font-size: 15px;
}
.testimonial .meta { 
  font-size: 13px; 
  opacity: 0.9; 
}

/* FAQ */
.faq { }
.faq-columns { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
.faq h3 { font-size: 18px; color: var(--coffee); margin: 12px 0 6px; font-family: 'Playfair Display', serif; }
.faq p { margin: 0 0 10px; }

/* Footer */
.site-footer { background: var(--primary); color:#fff; padding: 40px 0 24px; margin-top: 16px; }
.footer-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items:start; }
.site-footer h3 { margin:0 0 6px; font-family: 'Playfair Display', serif; }
.site-footer h3 span { color:#fff; }
.site-footer h4 { margin:0 0 10px; color:#fff; }
.footer-links { list-style:none; padding:0; margin:0; display:grid; gap: 6px; }
.footer-links a { color:#fff; text-decoration:none; }
.footer-links a:hover { opacity:0.9; }
.copyright { text-align:center; opacity:0.9; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 18px; font-size: 14px; }

/* Mobile nav overlay */
.menu-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.6); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  transition: all 0.3s ease;
}
.menu-overlay.active { 
  display: block; 
}

/* Responsive */
@media (max-width: 1024px) {
  .site-nav ul {
    gap: 16px;
  }
  .site-nav a {
    padding: 8px 10px;
    font-size: 13px;
  }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .private-label { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .site-nav ul {
    gap: 12px;
  }
  .site-nav a {
    padding: 6px 8px;
    font-size: 12px;
  }
}
@media (max-width: 800px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 32px;
    text-align: center;
  }
  .locator { grid-template-columns: 1fr; }
  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 48px);
  }
}
@media (max-width: 760px) {
  .mobile-menu-toggle { display: block; }
  .site-nav { 
    position: fixed; 
    top: 0; 
    left: -100%; 
    bottom: 0; 
    width: 80%; 
    max-width: 340px; 
    background: linear-gradient(135deg, var(--coffee) 0%, #3c1f0e 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 100px 24px 24px; 
    z-index: 1001; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 8px 0 32px rgba(0,0,0,0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-nav.active { 
    left: 0; 
  }
  .site-nav ul { 
    flex-direction: column; 
    gap: 8px; 
  }
  .site-nav li { 
    border-bottom: none;
  }
  .site-nav a { 
    display: block; 
    padding: 16px 20px; 
    font-size: 18px;
    border-radius: 12px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  .site-nav a:hover,
  .site-nav a.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
  }
  .product-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
  .faq-columns { grid-template-columns: 1fr; }
  .hero { padding: clamp(48px, 8vw, 80px) 0; }
  .section { padding: clamp(48px, 8vw, 80px) 0; }
}
@media (max-width: 520px) {
  .product-grid { 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  .pl-gallery { grid-template-columns: 1fr; }
  .cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero-copy h1 {
    font-size: clamp(24px, 8vw, 36px);
  }
}
