/* ========================================
   CANDYSHOPBAR — Premium CSS (Überarbeitet)
   ======================================== */

/* Variables */
:root {
  --color-espresso: #2C1E16;
  --color-brown: #5C4033;
  --color-cream: #FAEDCD;
  --color-latte: #E6CCB2;
  --color-gold: #D4A373;
  --color-gold-hover: #C48B55;
  --color-whatsapp: #25D366;
  --font-sans: 'Inter', sans-serif;
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-pacifico: 'Pacifico', cursive;
  --radius: 8px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.18);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.28);
}

/* Resets */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
address { font-style: normal; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-espresso);
  color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }

::selection { background-color: var(--color-gold); color: var(--color-espresso); }

/* ========================================
   DEAL ALERT BAR
   ======================================== */
#deal-bar {
  background: linear-gradient(90deg, #5C4033 0%, #3D2B1F 50%, #5C4033 100%);
  color: var(--color-cream);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 60;
}
.deal-bar-icon { font-size: 1rem; }
.deal-bar-price {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1rem;
}
.deal-bar-cta {
  background: var(--color-gold);
  color: var(--color-espresso);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  transition: background 0.2s;
}
.deal-bar-cta:hover { background: var(--color-gold-hover); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(44, 30, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 163, 115, 0.12);
  padding: 0.9rem 1.5rem;
}
@media (min-width: 768px) { .navbar { padding: 1.1rem 3rem; } }

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-pacifico);
  font-size: 1.7rem;
  color: #fff;
  user-select: none;
  transition: transform 0.3s ease;
  text-shadow: 2px 2px 0px var(--color-gold), 3px 3px 8px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
@media (min-width: 768px) { .logo { font-size: 2.1rem; } }
.logo:hover { transform: scale(1.04); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  color: rgba(250, 237, 205, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-gold); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  color: rgba(250,237,205,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
@media (min-width: 640px) { .nav-phone { display: flex; } }
.nav-phone:hover { color: var(--color-gold); }

.cta-button {
  background-color: var(--color-gold);
  color: var(--color-espresso);
  font-family: var(--font-bebas);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 12px rgba(212,163,115,0.25);
  white-space: nowrap;
}
.cta-button:hover {
  background: var(--color-gold-hover);
  box-shadow: 0 6px 20px rgba(212,163,115,0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%; /* slightly larger to allow panning */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
}

.cinemagraph-bg {
  animation: cinemagraphPan 30s ease-in-out infinite alternate;
}

@keyframes cinemagraphPan {
  0% { transform: scale(1.0) translate(0, 0); }
  50% { transform: scale(1.05) translate(-1%, 2%); }
  100% { transform: scale(1.1) translate(1%, -1%); }
}

/* Cinemagraph Steam Particles */
.hero-steam-container {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.hero-steam-particle {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0;
  animation: riseAndFade 8s infinite linear;
}
.sp-1 { left: 48%; animation-delay: 0s; animation-duration: 9s; width: 80px; height: 80px; }
.sp-2 { left: 52%; animation-delay: 2.5s; animation-duration: 7s; }
.sp-3 { left: 45%; animation-delay: 4.2s; animation-duration: 10s; width: 100px; height: 100px; }
.sp-4 { left: 55%; animation-delay: 6.8s; animation-duration: 8.5s; }

@keyframes riseAndFade {
  0% {
    transform: translateY(0) scale(0.5) translateX(0);
    opacity: 0;
  }
  20% { opacity: 0.5; }
  50% {
    transform: translateY(-200px) scale(1.5) translateX(30px);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-400px) scale(2.5) translateX(-20px);
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 30, 22, 0.80) 0%,
    rgba(44, 30, 22, 0.55) 50%,
    rgba(44, 30, 22, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  padding: 8rem 1.5rem 6rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 163, 115, 0.18);
  border: 1px solid rgba(212, 163, 115, 0.4);
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-bebas);
  font-size: 3.75rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  color: #fff;
  letter-spacing: 0.01em;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
  margin-bottom: 1.25rem;
}
@media (min-width: 640px)  { .hero-title { font-size: 5.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 7.5rem; } }

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 237, 205, 0.85);
  max-width: 560px;
  margin: 0 auto 1.75rem;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.1rem; } }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
@media (min-width: 480px) { .hero-ctas { flex-direction: row; justify-content: center; } }

.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  color: var(--color-espresso);
  font-family: var(--font-bebas);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(212,163,115,0.4);
  transition: box-shadow 0.3s, transform 0.2s;
}
.hero-btn-primary:hover {
  box-shadow: 0 12px 40px rgba(212,163,115,0.6);
  transform: translateY(-2px);
}
.hero-btn-primary .btn-bg {
  position: absolute;
  inset: 0;
  background: var(--color-espresso);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}
.hero-btn-primary:hover .btn-bg { transform: scaleX(1); }
.hero-btn-primary .btn-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.hero-btn-primary:hover .btn-text { color: var(--color-gold); }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(250,237,205,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid rgba(250,237,205,0.25);
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transition: color 0.2s, border-color 0.2s;
  background: transparent;
  cursor: pointer;
}
.hero-btn-secondary:hover { color: #fff; border-color: rgba(250,237,205,0.6); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  opacity: 0.6;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-cue span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-latte); }
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--color-latte), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 0.6; transform: translateX(-50%) translateY(0); }
}

/* ========================================
   OPENING HOURS STRIP
   ======================================== */
#hours-strip {
  background: var(--color-espresso);
  border-top: 1px solid rgba(212,163,115,0.15);
  border-bottom: 1px solid rgba(212,163,115,0.15);
  padding: 1.1rem 2rem;
}

.hours-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}
.hours-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250,237,205,0.45);
  font-weight: 600;
}
.hours-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-latte);
}
.hours-divider {
  width: 1px;
  height: 28px;
  background: rgba(212,163,115,0.2);
  display: none;
}
@media (min-width: 640px) { .hours-divider { display: block; } }

.hours-special .hours-badge {
  font-size: 0.7rem;
  background: rgba(212,163,115,0.12);
  color: var(--color-gold);
  padding: 0.1rem 0.6rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.hours-special .hours-time { color: var(--color-gold); font-weight: 700; }

.hours-phone {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.hours-phone:hover { color: var(--color-gold-hover); }

/* ========================================
   CONTENT SECTIONS
   ======================================== */
#content-container { position: relative; width: 100%; z-index: 20; }

.content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  position: relative;
  background-color: var(--color-cream);
}
.section-dark {
  background-color: var(--color-espresso);
}

@media (min-width: 768px) { .content-section { padding: 6rem 4rem; } }

.section-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .section-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .section-grid-reverse .image-col { order: -1; }
}

/* Text columns */
.text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.text-col-light { color: var(--color-cream); }

.chapter-num {
  color: var(--color-gold);
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.text-col h3 {
  font-family: var(--font-bebas);
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-espresso);
  line-height: 1.05;
}
.text-col-light h3 { color: var(--color-cream); }

@media (min-width: 640px)  { .text-col h3 { font-size: 3.25rem; } }
@media (min-width: 1024px) { .text-col h3 { font-size: 4rem; } }

.text-col p {
  color: var(--color-brown);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 32rem;
}
.text-col-light p { color: rgba(250, 237, 205, 0.8); }

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.feature-list li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-brown);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.feature-list-light li { color: rgba(250,237,205,0.85); }

.decor-line {
  width: 3rem;
  height: 2px;
  background-color: var(--color-gold);
  margin-top: 0.25rem;
}

/* Image column */
.image-col {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.section-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-col:hover .section-img { transform: scale(1.03); }
@media (min-width: 768px) { .section-img { height: 480px; } }

/* Keep empty-col for text-only sections */
.empty-col { display: none; }
@media (min-width: 768px) { .empty-col { display: block; } }

/* ========================================
   GALERIE SECTION
   ======================================== */
.gallery-section {
  background: var(--color-espresso);
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(212,163,115,0.1);
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-title {
  font-family: var(--font-bebas);
  font-size: 2.75rem;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
@media (min-width: 640px) { .gallery-title { font-size: 3.5rem; } }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  background: var(--color-espresso);
  padding: 5rem 1.5rem;
}
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-title {
  font-family: var(--font-bebas);
  font-size: 2.5rem;
  color: var(--color-gold);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .testimonials-title { font-size: 3.5rem; } }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(250,237,205,0.05);
  border: 1px solid rgba(212,163,115,0.18);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(212,163,115,0.5);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text {
  color: rgba(250,237,205,0.8);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-section {
  background: var(--color-cream);
  padding: 5rem 1.5rem;
}
.contact-container {
  max-width: 700px;
  margin: 0 auto;
}
.contact-title {
  font-family: var(--font-bebas);
  font-size: 2.5rem;
  color: var(--color-espresso);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .contact-title { font-size: 3.5rem; } }
.contact-desc {
  text-align: center;
  color: var(--color-brown);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(92, 64, 51, 0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
  color: var(--color-espresso);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(92, 64, 51, 0.4);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%235C4033'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  color: var(--color-espresso);
  font-family: var(--font-bebas);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(212,163,115,0.3);
  transition: box-shadow 0.3s, transform 0.2s;
  align-self: center;
}
.form-submit-btn:hover {
  box-shadow: 0 12px 32px rgba(212,163,115,0.5);
  transform: translateY(-2px);
}
.form-submit-btn .btn-bg {
  position: absolute; inset: 0;
  background: var(--color-espresso);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
  z-index: 0;
}
.form-submit-btn:hover .btn-bg { transform: scaleX(1); }
.form-submit-btn .btn-text {
  position: relative; z-index: 1;
  transition: color 0.3s;
}
.form-submit-btn:hover .btn-text { color: var(--color-gold); }

.form-success {
  text-align: center;
  color: #25D366;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem;
  background: rgba(37, 211, 102, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(37, 211, 102, 0.3);
  margin-top: 0.5rem;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.cta-section {
  background: var(--color-cream);
  padding: 6rem 1.5rem;
  position: relative;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-heading {
  font-family: var(--font-bebas);
  font-size: 2.75rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--color-espresso);
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .cta-heading { font-size: 4rem; } }
@media (min-width: 1024px) { .cta-heading { font-size: 5rem; } }

/* Offer card */
.offer-card {
  background: var(--color-espresso);
  border: 1px solid rgba(212,163,115,0.25);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) {
  .offer-card {
    flex-direction: row;
    gap: 0;
  }
}
.offer-card-left { flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.offer-card-divider {
  width: 1px;
  background: rgba(212,163,115,0.2);
  margin: 0 2rem;
  display: none;
}
@media (min-width: 640px) { .offer-card-divider { display: block; } }
.offer-card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
}
@media (min-width: 640px) { .offer-card-right { padding-left: 2rem; } }

.offer-badge {
  display: inline-block;
  color: var(--color-gold);
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.offer-title {
  font-family: var(--font-bebas);
  font-size: 1.75rem;
  color: var(--color-cream);
  text-transform: uppercase;
  line-height: 1.1;
}
@media (min-width: 640px) { .offer-title { font-size: 2.25rem; } }
.price-highlight { color: var(--color-gold); }
.offer-desc {
  color: rgba(250,237,205,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}
.offer-hours {
  color: rgba(250,237,205,0.7);
  font-size: 0.88rem;
  line-height: 1.8;
}
.offer-hours strong { color: var(--color-cream); }
.store-address {
  font-family: monospace;
  font-size: 0.88rem;
  color: rgba(250,237,205,0.75);
  line-height: 1.7;
}
.store-address strong { color: var(--color-cream); }

/* CTA buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 480px) { .cta-buttons { flex-direction: row; justify-content: center; } }

.order-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bebas);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.order-btn:hover { transform: translateY(-2px); }

.order-btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.order-btn-whatsapp:hover { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }

.order-btn-maps {
  background: var(--color-espresso);
  color: var(--color-cream);
  border: 1px solid rgba(212,163,115,0.3);
  box-shadow: var(--shadow-sm);
}
.order-btn-maps:hover { border-color: var(--color-gold); }

.order-btn .btn-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
  z-index: 0;
}
.order-btn:hover .btn-bg { transform: scaleX(1); }
.order-btn .btn-text { position: relative; z-index: 1; display: flex; align-items: center; }

.owner-presenter {
  font-size: 0.8rem;
  color: rgba(44,30,22,0.5);
  font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #1A120D;
  padding: 3.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(212,163,115,0.15);
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  text-align: center;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: var(--font-pacifico);
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px 0px var(--color-gold), 3px 3px 8px rgba(0,0,0,0.4);
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(250,237,205,0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}
.footer-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-info {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}
.footer-col h4 {
  font-family: var(--font-bebas);
  font-size: 1.1rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-col p {
  color: rgba(250,237,205,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-col a {
  color: rgba(250,237,205,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid rgba(212,163,115,0.1);
  padding-top: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.footer-legal {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.footer-legal a {
  color: rgba(250,237,205,0.5);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--color-gold); }
.footer-dot { color: rgba(250,237,205,0.3); font-size: 0.8rem; }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(250,237,205,0.3);
}

/* ========================================
   ROUTE SELECTION MODAL
   ======================================== */
.route-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}
.route-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.route-modal-content {
  position: relative;
  z-index: 10;
  background: var(--color-espresso);
  border: 1px solid rgba(212,163,115,0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: modalSlideIn 0.3s ease;
}
.route-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(250,237,205,0.5);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.route-modal-close:hover { color: var(--color-gold); }
.route-modal-title {
  font-family: var(--font-bebas);
  font-size: 1.8rem;
  color: var(--color-cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.route-modal-desc {
  font-size: 0.88rem;
  color: rgba(250,237,205,0.6);
  margin-bottom: 1.75rem;
}
.route-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.route-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.route-option:hover { transform: translateY(-2px); }
.route-option-icon { font-size: 1.5rem; }
.route-option-label { font-family: var(--font-bebas); letter-spacing: 0.06em; font-size: 1.1rem; }

.route-option-apple {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.route-option-apple:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.3); }

.route-option-google {
  background: #4285F4;
  color: #fff;
  border: 1px solid rgba(66,133,244,0.5);
  box-shadow: 0 4px 16px rgba(66,133,244,0.3);
}
.route-option-google:hover { box-shadow: 0 8px 24px rgba(66,133,244,0.5); }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideIn {
  from { transform: translateY(20px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* ========================================
   STICKY BOTTOM BAR (Mobile)
   ======================================== */
#sticky-hours-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: rgba(44, 30, 22, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,163,115,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  gap: 0;
}
@media (min-width: 768px) { #sticky-hours-mobile { display: none; } }

.sticky-phone,
.sticky-whatsapp,
.sticky-maps {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0;
  color: var(--color-latte);
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
}
.sticky-phone:hover, .sticky-whatsapp:hover, .sticky-maps:hover { color: var(--color-gold); }
.sticky-divider {
  width: 1px; height: 24px;
  background: rgba(212,163,115,0.2);
  flex-shrink: 0;
}

/* Add bottom padding to body so mobile bar doesn't cover content */
@media (max-width: 767px) {
  body { padding-bottom: 56px; }
}

/* ========================================
   LOADING SCREEN — Coffee Machine Animation
   ======================================== */
#loading-screen {
  position: fixed;
  inset: 0;
  background-color: #2C1E16;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease;
  overflow: hidden;
}

.loader-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  animation: logoFadeIn 1.2s ease-out forwards, logoPulse 3s ease-in-out infinite 1.2s;
  filter: drop-shadow(0 4px 20px rgba(212, 163, 115, 0.25));
  z-index: 20;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 20px rgba(212, 163, 115, 0.25));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 30px rgba(212, 163, 115, 0.45));
  }
}


.machine-scene {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 320px;
  margin-bottom: 2rem;
}

/* Espresso Machine */
.espresso-machine {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.machine-top {
  width: 120px;
  height: 18px;
  background: linear-gradient(180deg, #8B7355 0%, #6B5842 100%);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  position: relative;
}
.machine-top::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 6px;
  background: rgba(212,163,115,0.4);
  border-radius: 3px;
}

.machine-body {
  width: 120px;
  height: 90px;
  background: linear-gradient(160deg, #7A6550 0%, #4A3828 60%, #3A2A1E 100%);
  border: 2px solid #6B5842;
  border-top: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.machine-body::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 50px;
  background: rgba(255,220,160,0.06);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.machine-gauge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #8B7355;
  background: radial-gradient(circle, #2C1E16 40%, #3A2A1E 100%);
  position: relative;
}
.machine-gauge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  background: var(--color-gold);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(45deg);
  border-radius: 1px;
  animation: gaugeMove 2s ease-in-out infinite;
}

.machine-portafilter {
  width: 50px;
  height: 14px;
  background: linear-gradient(180deg, #8B7355 0%, #6B5842 100%);
  border-radius: 0 0 6px 6px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.machine-portafilter::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 2px;
  width: 14px;
  height: 8px;
  background: #6B5842;
  border-radius: 4px 0 0 4px;
}
.machine-portafilter::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 2px;
  width: 14px;
  height: 8px;
  background: #6B5842;
  border-radius: 0 4px 4px 0;
}

.machine-drip-tray {
  width: 100px;
  height: 8px;
  background: linear-gradient(180deg, #5C4A3A 0%, #3A2A1E 100%);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Coffee stream from machine */
.machine-stream {
  width: 6px;
  height: 0;
  background: linear-gradient(180deg, #8B5A3A, #6B3A2A, #3D1F10);
  border-radius: 3px;
  opacity: 0;
  animation: machineStream 3.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
  position: relative;
}
.machine-stream::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 58, 42, 0.5);
  filter: blur(2px);
}

/* Cup below machine */
.machine-cup {
  position: relative;
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
}
.machine-cup-body {
  width: 60px;
  height: 44px;
  background: linear-gradient(160deg, #ECDCC8 0%, #D4C4B0 60%, #C0B09C 100%);
  border-radius: 4px 4px 16px 16px;
  overflow: hidden;
  position: relative;
  box-shadow: inset -2px -2px 8px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}
.machine-cup-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, #DED0C0, #EDE0D0, #DED0C0);
  border-radius: 4px 4px 0 0;
}
.machine-cup-liquid {
  position: absolute;
  bottom: 0; left: 2px; right: 2px;
  height: 0;
  background: linear-gradient(180deg, #8B5A3A 0%, #6B3A2A 40%, #3D1F10 100%);
  border-radius: 0 0 14px 14px;
  animation: cupFillUp 2s cubic-bezier(0.25, 1, 0.5, 1) 1.8s forwards;
}
.machine-cup-liquid::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 3px;
  background: rgba(180,100,50,0.5);
  border-radius: 50%;
}
.machine-cup-handle {
  position: absolute;
  right: -12px;
  top: 8px;
  width: 14px;
  height: 24px;
  border: 3px solid #D4C4B0;
  border-left: none;
  border-radius: 0 12px 12px 0;
  box-shadow: 2px 0 4px rgba(0,0,0,0.15);
}

.coffee-fill {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(180deg, #3D1F10 0%, #2C1E16 100%);
  z-index: 5;
  animation: fillUp 1.6s cubic-bezier(0.25, 1, 0.5, 1) 3.2s forwards;
}

.loader-content { text-align: center; z-index: 20; position: relative; }
.loader-title {
  font-family: var(--font-pacifico); font-size: 2.8rem;
  color: var(--color-gold); letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(212,163,115,0.4);
}
.loader-sub-title {
  font-family: var(--font-bebas); font-size: 1rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(250, 237, 205, 0.45);
}

/* Keyframes for coffee machine loader */
@keyframes gaugeMove {
  0%, 100% { transform: translate(-50%, -100%) rotate(30deg); }
  50%      { transform: translate(-50%, -100%) rotate(60deg); }
}

@keyframes machineStream {
  0%   { opacity: 0; height: 0; }
  15%  { opacity: 1; height: 0; }
  40%  { opacity: 1; height: 60px; }
  75%  { opacity: 1; height: 60px; }
  90%  { opacity: 0.6; height: 60px; }
  100% { opacity: 0; height: 60px; }
}

@keyframes cupFillUp {
  0%   { height: 0; }
  100% { height: 75%; }
}

@keyframes fillUp {
  0%   { height: 0; }
  100% { height: 110vh; }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

