@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

:root {
  /* Brand Palette */
  --azul-profundo: #2B7EA1;
  --terracota: #E07A4F;
  --crema: #F7F2EA;
  --marino: #12374A;
  --dorado: #F2C07A;

  /* Mapped tokens */
  --bg-primary: #F7F2EA;
  --bg-dark: #12374A;
  --bg-dark-lighter: #1A4A62;
  --accent: #E07A4F;
  --accent-hover: #C96135;
  --accent-light: rgba(224, 122, 79, 0.1);
  --text-primary: #12374A;
  --text-secondary: #4A6B7A;
  --text-light: #F7F2EA;
  --text-light-muted: #8FAABB;
  --border-subtle: #E2D9CC;
  --gold-accent: #F2C07A;
  --testimonial-bg: #EDE7DD;
  --blue-accent: #2B7EA1;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-ui: 'Inter', system-ui, sans-serif;
}

/* 1. Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
}

::selection {
  background: var(--accent);
  color: white;
}

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

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

/* 2. Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, height 0.4s;
  height: 88px;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  height: 64px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo .logo-img {
  height: 64px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .brand-logo .logo-img {
  height: 40px;
}

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

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
  position: relative;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-accent);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.order-btn {
  background: var(--accent);
  border: none;
  color: white;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.order-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.bag-count {
  background: white;
  color: var(--accent);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.hamburger {
  display: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s;
}

/* 3. Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_empanadas.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: white;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--dorado);
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,101,42,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: white;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

/* 4. How It Works */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-primary);
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--azul-profundo);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 4rem;
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--azul-profundo);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: calc(50% + 2rem);
  width: calc(100% - 4rem);
  height: 1px;
  background: var(--border-subtle);
}

/* 5. Philosophy */
.philosophy {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.pillar {
  background: white;
  border-radius: 24px;
  padding: 3.5rem 2rem 3rem;
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(18, 55, 74, 0.02);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(18, 55, 74, 0.06);
  border-color: var(--accent);
}

.pillar-icon {
  width: 76px;
  height: 76px;
  background: #FFFBF7;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 16px rgba(224, 122, 79, 0.15);
}

.pillar h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.pillar p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* 6. Menu */
.menu-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--azul-profundo);
  transition: width 0.3s;
}

.filter-tab.active, .filter-tab:hover {
  color: var(--text-primary);
}

.filter-tab.active::after {
  width: 100%;
}

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

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--azul-profundo);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-card-body .product-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.product-cook {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-add {
  width: 100%;
  padding: 0.75rem;
  background: var(--azul-profundo);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-add:hover {
  background: var(--accent);
}

/* 7. About */
.about-section {
  padding: 120px 0;
  background: white;
}

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

.about-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .section-label {
  text-align: left;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-heritage {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: left;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* 8. Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--testimonial-bg);
}

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

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem auto;
  border: 2px solid var(--dorado);
  box-shadow: 0 4px 12px rgba(18, 55, 74, 0.08);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--dorado);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* 9. Instagram */
.instagram-section {
  padding: 80px 0 0;
  background: var(--bg-primary);
}

.behold-widget-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

behold-widget {
  display: block;
  width: 100%;
}

.insta-cta-row {
  text-align: center;
  padding: 2.5rem 0;
}

/* 10. Contact */
.contact-section {
  padding: 100px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrapper {
  /* wrapper for contact form column */
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1.5px solid var(--border-subtle);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.3s;
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success-alert {
  background: rgba(196,101,42,0.08);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-below {
  margin-top: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-info-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--text-primary);
}

/* 11. Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  height: 70px;
  margin-bottom: 1rem;
  /* no filter — show full-color logo */
}

.footer-brand p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer-col p, .footer-col a {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  text-decoration: none;
  line-height: 2;
  display: block;
}

.footer-col a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-icon-link:hover {
  color: white;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

/* 12. Store Locator */
.store-locator-section {
  padding: 80px 0 0;
  background: var(--bg-primary);
}

.store-locator-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.store-locator-wrapper {
  display: flex;
  height: 600px;
  border-top: 1px solid var(--border);
}

.store-list-panel {
  width: 340px;
  flex-shrink: 0;
  overflow-y: auto;
  background: white;
  border-right: 1px solid var(--border);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.store-list-panel::-webkit-scrollbar { width: 4px; }
.store-list-panel::-webkit-scrollbar-track { background: transparent; }
.store-list-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.store-card {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.store-card:hover { background: var(--bg-primary); }

.store-card.active {
  background: var(--azul-profundo);
}

.store-card-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--terracota, #E07A4F);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-ui);
}

.store-card.active .store-card-num {
  background: var(--dorado);
  color: var(--marino);
}

.store-card-body { flex: 1; min-width: 0; }

.store-card-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

.store-card.active .store-card-name { color: white; }

.store-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dorado);
  margin-bottom: 0.45rem;
}

.store-card.active .store-card-tag { color: rgba(255,255,255,0.65); }

.store-card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  font-size: 0.77rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 0.2rem;
}

.store-card.active .store-card-row { color: rgba(255,255,255,0.78); }
.store-card.active .store-card-row svg { stroke: rgba(255,255,255,0.6); }

.store-card-row svg {
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--text-secondary);
}

.store-map-panel {
  flex: 1;
  z-index: 0;
}

/* Custom Leaflet pin */
.store-pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--terracota, #E07A4F);
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.store-pin.active-pin {
  background: var(--azul-profundo, #2B7EA1);
  transform: rotate(-45deg) scale(1.2);
}

.store-pin-num {
  transform: rotate(45deg);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: sans-serif;
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
  padding: 0 !important;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: 220px !important;
}

.store-popup {
  padding: 1rem 1.1rem;
}

.store-popup-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--marino, #12374A);
  margin-bottom: 0.1rem;
  font-family: sans-serif;
}

.store-popup-tag {
  font-size: 0.7rem;
  color: var(--dorado, #F2C07A);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
}

.store-popup-addr,
.store-popup-hours {
  font-size: 0.76rem;
  color: #666;
  line-height: 1.45;
  margin-bottom: 0.2rem;
  font-family: sans-serif;
}

@media (max-width: 768px) {
  .store-locator-wrapper {
    flex-direction: column;
    height: auto;
  }
  .store-list-panel {
    width: 100%;
    max-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .store-map-panel {
    height: 400px;
  }
}

/* 13. Order Bag Drawer */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.bag-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: 2001;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.drawer-overlay.active .bag-drawer {
  right: 0;
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.close-drawer-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.25rem;
}

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

.bag-empty-msg {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
}

.bag-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.bag-item-card h5 {
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.bag-item-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.bag-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
}

.qty-num {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.delivery-input-group label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.bag-summary-row {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-family: var(--font-ui);
  font-weight: 600;
}

/* 13. Mobile Floating Action Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--bg-dark);
  padding: 0.75rem 1rem;
  display: none;
}

.bar-inner {
  display: flex;
  gap: 0.75rem;
}

.bar-inner .btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  border-radius: 100px;
  font-size: 0.78rem;
}

/* 14. Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* 15. Responsive Media Queries */
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
  }
  
  .nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    background: var(--bg-dark);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  
  .nav-open .nav-links a {
    font-size: 1.2rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}
