/* ==============================================================================
   CIAGUETTE - ESTILOS 100% OPTIMIZADOS PARA MÓVIL Y DESKTOP (MOBILE-FIRST)
   Paleta: Turquesa #22B1AB, Blanco puro, Naranja acento #FF6B35, Fondo suave #F8F9FA
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Fredoka:wght@500;600;700&display=swap');

:root {
  /* ==========================================
     PALETA OFICIAL CIAGUETTE
     Primario: Aqua Ciaguette (#5fbcb9)
     Secundario: Beige (#E2DBC1)
     ========================================== */
  
  /* COLOR PRIMARIO: #5fbcb9 */
  --ciaguette-teal: #5fbcb9;
  --ciaguette-teal-dark: #48a7a4;
  --ciaguette-teal-deep: #17504f;
  --ciaguette-teal-light: #eaf7f6;
  --ciaguette-teal-glow: rgba(95, 188, 185, 0.28);
  
  /* COLOR SECUNDARIO: BEIGE (#E2DBC1) */
  --ciaguette-beige: #E2DBC1;
  --ciaguette-beige-light: #F7F5EE;
  --ciaguette-beige-dark: #C4BA9B;
  --ciaguette-beige-deep: #7D7453;
  --ciaguette-beige-glow: rgba(226, 219, 193, 0.45);
  
  /* ALIAS SEMÁNTICOS DE MARCA */
  --color-primary: var(--ciaguette-teal);
  --color-primary-dark: var(--ciaguette-teal-dark);
  --color-primary-deep: var(--ciaguette-teal-deep);
  --color-primary-light: var(--ciaguette-teal-light);
  --color-primary-glow: var(--ciaguette-teal-glow);

  --color-secondary: var(--ciaguette-beige);
  --color-secondary-light: var(--ciaguette-beige-light);
  --color-secondary-dark: var(--ciaguette-beige-dark);
  --color-secondary-deep: var(--ciaguette-beige-deep);
  --color-secondary-glow: var(--ciaguette-beige-glow);

  /* Acento de resalte secundario cálido */
  --ciaguette-orange: var(--ciaguette-beige);
  --ciaguette-orange-light: var(--ciaguette-beige-light);
  
  /* Verde complementario para estados de éxito/frescura */
  --ciaguette-green: #7BB141;
  --ciaguette-green-dark: #588427;
  --ciaguette-green-light: #F1F8E9;
  --ciaguette-green-glow: rgba(123, 177, 65, 0.28);
  
  --bg-main: var(--ciaguette-beige-light);
  --bg-card: #FFFFFF;
  --text-dark: #162E2D;
  --text-muted: #56706F;
  --border-color: var(--ciaguette-beige);
  
  --shadow-sm: 0 2px 6px rgba(14, 75, 72, 0.05);
  --shadow-md: 0 6px 18px rgba(14, 75, 72, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 75, 72, 0.14);
  
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.4;
  padding-bottom: 90px; /* Espacio para barra flotante móvil */
  font-size: 15px;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* TOP ANNOUNCEMENT BAR */
.promo-bar {
  background: linear-gradient(90deg, var(--ciaguette-teal-deep) 0%, var(--ciaguette-teal) 100%);
  color: white;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.3;
}

.promo-bar span {
  display: inline-block;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(95, 188, 185, 0.2);
  padding: 0.45rem 1rem;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px var(--ciaguette-teal-glow));
  transition: transform 0.2s ease;
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--ciaguette-teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-wa-icon-btn {
  background: #e7fbf0;
  color: #25D366;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  border: 1px solid #bbf7d0;
  transition: transform 0.2s;
}

.nav-wa-icon-btn:hover {
  transform: scale(1.05);
}

.nav-cart-btn {
  background: var(--ciaguette-teal);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 3px 12px var(--ciaguette-teal-glow);
  transition: all 0.2s;
}

.nav-cart-btn:active {
  transform: scale(0.96);
}

.cart-badge {
  background: white;
  color: var(--ciaguette-teal-deep);
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 900;
}

/* HAMBURGER BUTTON - solo visible en móvil */
.nav-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger-btn:hover {
  background: var(--ciaguette-teal-light);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ciaguette-teal-deep);
  border-radius: 3px;
  transition: transform 0.28s ease, opacity 0.18s ease, width 0.2s ease;
  transform-origin: center;
}

/* Estado abierto: anima a X */
.nav-hamburger-btn.open .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger-btn.open .hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger-btn.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* MENÚ MÓVIL DESPLEGABLE */
.nav-mobile-menu {
  display: none; /* Oculto por defecto en todos los tamaños */
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 0.5rem 0 1rem;
  box-shadow: 0 8px 24px rgba(14, 75, 72, 0.1);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 219, 193, 0.5);
  transition: background 0.15s, color 0.15s;
}

.nav-mobile-link:last-child {
  border-bottom: none;
}

.nav-mobile-link i {
  color: var(--ciaguette-teal);
  width: 20px;
  text-align: center;
  font-size: 1.05rem;
}

.nav-mobile-link:active,
.nav-mobile-link:hover {
  background: var(--ciaguette-teal-light);
  color: var(--ciaguette-teal-deep);
}

.nav-mobile-link-wa {
  color: #059669;
  margin-top: 0.25rem;
}

.nav-mobile-link-wa i {
  color: #25D366;
}

/* MOSTRAR HAMBURGUESA Y OCULTAR LINKS EN MÓVIL */
@media (max-width: 767px) {
  .nav-links-desktop {
    display: none !important;
  }
  .nav-hamburger-btn {
    display: flex;
  }
  .nav-wa-icon-btn {
    display: none; /* El WA aparece en el menú móvil */
  }
}


/* ==============================================================================
   HERO — FOTO BANNER HORIZONTAL DE FONDO (1024×342)
   ============================================================================== */
.hero-section {
  position: relative;
  background-image:
    linear-gradient(
      to right,
      rgba(20, 68, 66, 0.25) 0%,
      rgba(20, 68, 66, 0.70) 50%,
      rgba(20, 68, 66, 0.95) 100%
    ),
    url('../img/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  border-bottom: 3px solid var(--ciaguette-teal);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end; /* texto a la derecha, Katalina visible a la izquierda */
}

.hero-text-content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

/* MOBILE: texto centrado, gradiente más fuerte para legibilidad */
@media (max-width: 767px) {
  .hero-section {
    background-image:
      linear-gradient(
        rgba(20, 68, 66, 0.85) 0%,
        rgba(20, 68, 66, 0.92) 100%
      ),
      url('../img/hero-banner.jpg');
    background-position: 30% center;
    min-height: auto;
    padding: 2.25rem 1rem 2.5rem;
  }

  .hero-container {
    justify-content: flex-start;
  }

  .hero-text-content {
    max-width: 100%;
  }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 0.6rem;
  width: fit-content;
}

.hero-title {
  font-size: clamp(1.85rem, 5.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--ciaguette-beige); /* Beige cálido como acento secundario */
  display: inline-block;
  font-weight: 800;
  font-size: 1.1em;
}

.hero-desc {
  font-size: 0.98rem;
  color: #f1f5f9;
  line-height: 1.5;
  margin-bottom: 1.15rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.promo-highlight-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.promo-highlight-box p {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  color: #e2e8f0;
}

.promo-highlight-box strong {
  font-size: 0.98rem;
  color: #fff;
  display: block;
}

.promo-highlight-tag {
  background: var(--ciaguette-teal);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 2px 8px var(--ciaguette-teal-glow);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.1rem;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
}

.hero-trust-item i {
  color: #5eead4;
}

/* SECTION TITLE */
.section-header {
  max-width: 1100px;
  margin: 1.5rem auto 0.75rem;
  padding: 0 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-title {
  font-size: 1.35rem;
  color: var(--ciaguette-teal-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-badge-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* PRODUCTOS: CARDS 100% OPTIMIZADAS PARA CELULARES */
.products-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sandwich-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sandwich-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sandwich-card:active {
  transform: scale(0.99);
}

.sandwich-card.sold-out {
  opacity: 0.6;
  filter: grayscale(0.7);
}

.sandwich-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

@media (max-width: 480px) {
  .sandwich-img-wrap {
    height: 185px;
  }
}

.sandwich-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.sandwich-badge-float {
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-size: 0.72rem;
  padding: 4px 10px;
  z-index: 2;
}

.sandwich-card-body {
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.4rem;
}

.sandwich-name {
  font-size: 1.3rem;
  color: var(--ciaguette-teal-deep);
  line-height: 1.15;
}

.badge-official {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-fav { background: #fee2e2; color: #b91c1c; }
.badge-clasico { background: #fef3c7; color: #b45309; }
.badge-veggie { background: #dcfce7; color: #15803d; }

.sandwich-bread-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ciaguette-teal-dark);
  background: var(--ciaguette-teal-light);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.sandwich-ingredients {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 0.85rem;
}

.sandwich-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
  margin-top: auto;
}

.sandwich-price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

.btn-add-sandwich {
  background: var(--ciaguette-teal);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 3px 10px var(--ciaguette-teal-glow);
  min-height: 44px; /* Touch target estándar */
}

.btn-add-sandwich:active {
  background: var(--ciaguette-teal-dark);
  transform: scale(0.96);
}

.btn-add-sandwich:disabled {
  background: #cbd5e1 !important;
  color: #64748b !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #eaf7f6;
  color: #17504f;
  margin-top: 3px;
  width: fit-content;
}

.stock-badge-low {
  background: #fef3c7;
  color: #b45309;
}

.stock-badge-out {
  background: #fee2e2;
  color: #dc2626;
}

/* FLYER PREVIEW CARD */
.flyer-showcase {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

.flyer-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 0.75rem;
}

.flyer-box img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

/* ==============================================================================
   SECCIÓN NUESTRA HISTORIA & EL SUEÑO CIAGUETTE
   ============================================================================== */
.story-section {
  max-width: 1100px;
  margin: 2.25rem auto 0.5rem;
  padding: 0 1rem;
}

.story-container {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem 2rem;
  overflow: hidden;
}

@media (max-width: 600px) {
  .story-container {
    padding: 1.4rem 1.15rem;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.25rem;
  align-items: center;
}

@media (max-width: 820px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.story-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--ciaguette-beige);
}

.story-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.4s ease;
}

.story-img-wrapper:hover .story-img {
  transform: scale(1.03);
}

@media (max-width: 820px) {
  .story-img {
    height: 360px;
  }
}

.story-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(14, 75, 72, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.story-content-col {
  display: flex;
  flex-direction: column;
}

.story-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ciaguette-beige-light);
  color: var(--ciaguette-teal-deep);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--ciaguette-beige);
  width: fit-content;
}

.story-heading {
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  color: var(--ciaguette-teal-deep);
  margin-bottom: 0.75rem;
  line-height: 1.18;
  font-weight: 800;
}

.story-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--ciaguette-teal-deep);
  background: var(--ciaguette-beige-light);
  border-left: 4px solid var(--ciaguette-teal);
  padding: 0.85rem 1.15rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.story-text {
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.story-dream-card {
  background: linear-gradient(135deg, #f0fdfc 0%, #F1F8E9 100%);
  border: 1.5px solid rgba(95, 188, 185, 0.35);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  margin: 0.85rem 0 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.story-dream-icon {
  background: var(--ciaguette-teal);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  margin-top: 2px;
  box-shadow: 0 3px 8px var(--ciaguette-teal-glow);
}

.story-dream-title {
  color: var(--ciaguette-teal-deep);
  font-size: 0.98rem;
  display: block;
  margin-bottom: 3px;
  font-weight: 800;
}

.story-dream-desc {
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

.story-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.story-welcome-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
}

.btn-story-support {
  background: var(--ciaguette-teal);
  color: white;
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px var(--ciaguette-teal-glow);
  transition: all 0.2s ease;
}

.btn-story-support:hover {
  background: var(--ciaguette-teal-dark);
  transform: translateY(-2px);
}

/* ==============================================================================
   SECCIÓN MEDIOS DE PAGO DESTACADA
   ============================================================================== */
.payment-methods-section {
  max-width: 1100px;
  margin: 2rem auto 0.5rem;
  padding: 0 1rem;
}

.payment-methods-container {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.payment-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ciaguette-teal-light);
  color: var(--ciaguette-teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(95, 188, 185, 0.25);
}

.payment-title {
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  color: var(--ciaguette-teal-deep);
  margin-bottom: 0.35rem;
}

.payment-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.payment-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.payment-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.payment-card-cash {
  border-left: 4px solid var(--ciaguette-green);
}

.payment-card-transfer {
  border-left: 4px solid var(--ciaguette-teal);
  background: linear-gradient(180deg, #FFFFFF 0%, #f0fdfc 100%);
  border-color: rgba(95, 188, 185, 0.35);
}

.payment-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.payment-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.payment-icon-cash {
  background: #ecfdf5;
  color: #059669;
}

.payment-icon-transfer {
  background: var(--ciaguette-teal-light);
  color: var(--ciaguette-teal);
}

.payment-card-titles {
  flex-grow: 1;
}

.payment-card-name {
  font-size: 1.15rem;
  color: var(--ciaguette-teal-deep);
  line-height: 1.2;
}

.payment-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
}

.payment-card-tag.tag-transfer {
  color: var(--ciaguette-teal);
}

.payment-card-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.payment-perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  font-size: 0.82rem;
  color: #334155;
}

.payment-perk-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-perk-item i {
  color: #10b981;
}

/* CAJA DE DATOS BANCARIOS */
.bank-details-box {
  background: #FFFFFF;
  border: 1.5px dashed rgba(95, 188, 185, 0.55);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #f1f5f9;
}

.bank-detail-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.detail-value {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.highlight-rut {
  color: var(--ciaguette-orange);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.btn-copy-transfer {
  background: var(--ciaguette-teal);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px var(--ciaguette-teal-glow);
  min-height: 42px;
}

.btn-copy-transfer:hover {
  background: var(--ciaguette-teal-dark);
}

.btn-copy-transfer:active {
  transform: scale(0.98);
}

.btn-copy-transfer.copied {
  background: #10b981;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

/* MODAL DE PERSONALIZACIÓN: BOTTOM SHEET EN MÓVILES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: flex-end; /* Mobile bottom sheet */
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 550px;
  max-height: 88vh;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideUpMobile 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpMobile {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.modal-title-box h3 {
  font-size: 1.3rem;
  color: var(--ciaguette-teal-deep);
  line-height: 1.15;
}

.modal-title-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-close-btn {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-body {
  padding: 1.2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
}

.custom-section {
  margin-bottom: 1.25rem;
}

.custom-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.option-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 48px; /* Táctil fácil */
}

.option-checkbox-label input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: var(--ciaguette-teal);
}

.modal-notes-input {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-size: 16px; /* Evita zoom automático en Safari iOS */
  min-height: 60px;
  font-family: inherit;
}

.modal-footer {
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-color);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qty-stepper {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
  cursor: pointer;
}

.qty-val {
  width: 30px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
}
.success-transfer-reminder {
  background: #f0fdfc;
  border: 1.5px dashed var(--ciaguette-teal);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* CART DRAWER / FULLSCREEN EN CELULARES */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: none;
}

.cart-drawer-overlay.active {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  height: 100dvh;
  background: var(--ciaguette-cream, #f7f5ee);
  z-index: 1060;
  box-shadow: -6px 0 28px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: right 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  z-index: 10;
}

.cart-drawer-title {
  font-size: 1.2rem;
  color: var(--ciaguette-teal-deep);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.cart-header-badge {
  background: var(--ciaguette-teal-light);
  color: var(--ciaguette-teal-deep);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* CONTENEDOR CENTRAL: TODO HACE SCROLL SUAVE AQUÍ */
.cart-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--ciaguette-cream, #f7f5ee);
}

.cart-drawer-body::-webkit-scrollbar {
  width: 6px;
}
.cart-drawer-body::-webkit-scrollbar-track {
  background: transparent;
}
.cart-drawer-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* VISTA VACÍA */
.empty-cart-view,
.cart-empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-color);
  margin: auto 0;
}

/* TARJETAS SECCIONADAS DENTRO DEL CARRITO */
.cart-section-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.cart-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #f1f5f9;
}

/* LISTA DE PRODUCTOS */
.cart-items-list,
.cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: none !important; /* Nunca restringir altura dentro del contenedor con scroll */
  overflow: visible !important;
  padding: 0;
}

/* TARJETA INDIVIDUAL DE PRODUCTO */
.cart-item-card {
  background: #ffffff;
  border: 1.5px solid #edf2f7;
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cart-item-card:hover {
  border-color: #cbd5e1;
}

.cart-item-main {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cart-item-thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.cart-item-details {
  flex: 1 1 auto;
  min-width: 0;
}

.cart-item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 2px;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
  line-height: 1.25;
  margin: 0;
}

.cart-item-remove-btn {
  background: #fee2e2;
  color: #ef4444;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.18s;
}

.cart-item-remove-btn:hover {
  background: #ef4444;
  color: white;
}

.cart-item-price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cart-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.cart-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f0fdfa;
  color: var(--ciaguette-teal-deep);
  border: 1px solid #ccfbf1;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

.cart-pill-tag.cart-pill-extra {
  background: #fefce8;
  color: #854d0e;
  border-color: #fef08a;
}

.cart-item-notes {
  margin-top: 4px;
  font-size: 0.75rem;
  color: #64748b;
  font-style: italic;
  line-height: 1.3;
}

.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 2px 4px;
  gap: 6px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--ciaguette-teal-deep);
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.cart-qty-btn:active {
  transform: scale(0.92);
  background: var(--ciaguette-teal);
  color: white;
}

.cart-qty-val {
  font-size: 0.88rem;
  font-weight: 800;
  min-width: 20px;
  text-align: center;
  color: var(--text-dark);
}

.cart-item-subtotal {
  text-align: right;
}

.cart-item-subtotal-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.cart-item-subtotal-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
  font-family: 'Outfit', sans-serif;
}

/* BANNERS PROMOCIONALES DINÁMICOS */
.cart-promo-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.35;
}

.cart-promo-badge i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cart-promo-badge.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.cart-promo-badge.promo {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.promo-badge-cart {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* RESUMEN DE TOTALES */
.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
  border-top: 1.5px dashed var(--border-color);
  padding-top: 8px;
  margin-top: 6px;
  font-family: 'Outfit', sans-serif;
}

/* SELECTOR TIPO DE ENTREGA */
.delivery-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 0.75rem;
}

.delivery-type-btn {
  background: white;
  border: 1.5px solid var(--border-color);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-dark);
  transition: all 0.2s;
}

.delivery-type-btn.active {
  background: var(--ciaguette-teal);
  color: white;
  border-color: var(--ciaguette-teal);
  box-shadow: 0 2px 8px var(--ciaguette-teal-glow);
}

/* SELECTOR MEDIO DE PAGO */
.payment-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 0.75rem;
}

.payment-pill-btn {
  background: white;
  border: 1.5px solid var(--border-color);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.payment-pill-btn.active {
  background: var(--ciaguette-teal-light);
  border-color: var(--ciaguette-teal);
  color: var(--ciaguette-teal-deep);
  box-shadow: 0 0 0 1px var(--ciaguette-teal);
}

.cart-transfer-box {
  background: #f0fdfc;
  border: 1.5px dashed var(--ciaguette-teal);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  animation: fadeIn 0.2s ease;
}

.cart-transfer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ciaguette-teal-deep);
}

.btn-copy-tiny {
  background: var(--ciaguette-teal);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}

.btn-copy-tiny:hover {
  background: var(--ciaguette-teal-dark);
}

.btn-copy-tiny.copied {
  background: #10b981;
}

.cart-transfer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  font-size: 0.8rem;
  background: white;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(95, 188, 185, 0.25);
}

.cart-transfer-grid .label-tiny {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.cart-transfer-hint {
  display: block;
  font-size: 0.74rem;
  color: var(--ciaguette-teal-deep);
  margin-top: 6px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 0.6rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 16px; /* Evita zoom molesto en iOS */
  min-height: 44px;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--ciaguette-teal);
  box-shadow: 0 0 0 3px rgba(95, 188, 185, 0.15);
}

/* BARRA STICKY INFERIOR FIJA */
.cart-drawer-sticky-bottom {
  flex-shrink: 0;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.cart-sticky-btn {
  background: #25D366;
  color: white;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  min-height: 50px;
  transition: background 0.2s, transform 0.15s;
}

.cart-sticky-btn:hover {
  background: #20bd5a;
}

.cart-sticky-btn:active {
  transform: scale(0.98);
}

.cart-sticky-total {
  background: rgba(0, 0, 0, 0.18);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
}

.btn-whatsapp-order {
  background: #25D366;
  color: white;
  width: 100%;
  padding: 0.9rem;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  margin-top: 0.75rem;
  min-height: 50px;
}

.btn-whatsapp-order:active {
  transform: scale(0.98);
}

/* BOTÓN FLOTANTE INFERIOR FIJO PARA CELULARES */
.mobile-sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-color);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
}

.mobile-cart-cta-btn {
  background: var(--ciaguette-teal);
  color: white;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--ciaguette-teal-glow);
  min-height: 48px;
}

.mobile-cart-cta-btn:active {
  background: var(--ciaguette-teal-dark);
}

/* FOOTER COMPACTO */
.site-footer {
  background: #0e4b48;
  color: white;
  padding: 2rem 1rem calc(2rem + 60px);
  margin-top: 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-col h4 {
  color: var(--ciaguette-teal);
  margin-bottom: 0.5rem;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 0.75rem;
}

.footer-social-link {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
}

/* DESKTOP BREAKPOINT ENHANCEMENTS */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  .mobile-sticky-cart-bar {
    display: none;
  }
  .brand-logo-img {
    height: 64px;
  }
  .hero-container {
    padding: 2.5rem 0;
  }
  .products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .payment-cards-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
  }
  .modal-overlay {
    align-items: center;
  }
  .modal-content {
    border-radius: var(--radius-xl);
  }
  .custom-options-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
