/* ============================================================
   SWEET NAT — STYLES.CSS
   Estética: Pastelería Suave de Lujo
   ============================================================ */

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

/* ── Tokens ── */
:root {
  --pink-main: #F4A7B9;
  --pink-deep: #E8829A;
  --pink-dark: #C25672;
  --pink-pale: #FDE8ED;
  --bg: #FFF8F5;
  --cream: #FDF6EE;
  --brown: #4A2C2A;
  --text-muted: #9C7070;
  --white: #FFFFFF;
  --shadow-pink: 0 4px 20px rgba(244, 167, 185, 0.25);
  --shadow-card: 0 2px 16px rgba(194, 86, 114, 0.10);
  --shadow-card-hover: 0 8px 32px rgba(194, 86, 114, 0.18);
  --radius-card: 18px;
  --radius-btn: 50px;
  --transition: 0.25s ease;
  --header-h: 64px;
  --tabs-h: 52px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--brown);
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 167, 185, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
}

.header-logo-text .sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ════════════════════════════════
   HERO BANNER
════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 28px 56px;
  background: linear-gradient(135deg, #FFFDFB 0%, #FDF6EE 50%, #FFF8F5 100%);
  text-align: center;
}

/* Blob decorations */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}
.hero::before {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 184, 192, 0.4) 0%, transparent 70%);
  top: -100px; right: -50px;
  filter: blur(40px);
}
.hero::after {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(244, 167, 185, 0.25) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  filter: blur(40px);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(244, 167, 185, 0.6);
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 9vw, 46px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 12px;
}

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

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  box-shadow: 0 6px 24px rgba(194, 86, 114, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-cta:active { transform: scale(0.97); }

/* ════════════════════════════════
   CATEGORY TABS
════════════════════════════════ */
.tabs-wrapper {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: rgba(255, 248, 245, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244, 167, 185, 0.2);
  box-shadow: 0 4px 15px rgba(244, 167, 185, 0.15);
}

.tabs-scroll {
  display: flex;
  overflow-x: auto;
  padding: 0 16px;
  gap: 4px;
  height: var(--tabs-h);
  align-items: center;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs-scroll::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.tab-btn.active {
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-weight: 600;
}

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

/* ════════════════════════════════
   PRODUCT SECTIONS
════════════════════════════════ */
.product-sections {
  padding-bottom: 100px; /* Space for floating cart */
}

.category-section {
  padding: 32px 0 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 20px;
}

.category-icon {
  font-size: 26px;
  line-height: 1;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
}

.category-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
  background: var(--cream);
  padding: 3px 9px;
  border-radius: 50px;
  font-weight: 500;
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

/* ── Product Card ── */
.product-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 14px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  /* Fade-up initial state */
  opacity: 0;
  transform: translateY(20px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--transition);
}

.product-card:active {
  transform: scale(0.98);
  box-shadow: var(--shadow-card-hover);
}

/* Image wrapper */
.product-img-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--pink-pale);
  position: relative;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-emoji-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

/* Card content */
.product-info {
  flex: 1;
  min-width: 0;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 3px;
  line-height: 1.3;
}

.product-desc-short {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--pink-dark);
}

/* Add button */
.btn-add {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-dark));
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(194, 86, 114, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  line-height: 1;
}

.btn-add:active,
.btn-add.bounce {
  animation: btnBounce 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes btnBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.35); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* ════════════════════════════════
   FLOATING CART
════════════════════════════════ */
.cart-bar {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 200;
  background: linear-gradient(135deg, var(--brown), #6b3d3a);
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(74, 44, 42, 0.4);
  cursor: pointer;
  /* Hidden by default */
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
  pointer-events: none;
}

.cart-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cart-bar-count {
  width: 30px;
  height: 30px;
  background: var(--pink-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.cart-bar-count.pop {
  animation: countPop 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes countPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.cart-bar-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.cart-bar-total {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--pink-main);
}

.cart-bar-arrow {
  font-size: 16px;
  opacity: 0.7;
}

/* ════════════════════════════════
   PRODUCT MODAL
════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 44, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.25s ease;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.open .product-modal {
  transform: scale(1);
}

.modal-img-wrap {
  width: 100%;
  height: 220px;
  background: var(--pink-pale);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-img-wrap img.modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-img-wrap .modal-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brown);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform var(--transition);
  z-index: 2;
}
.modal-close:active { transform: scale(0.9); }

.modal-body {
  padding: 22px 20px 20px;
  overflow-y: auto;
  flex: 1;
}

.modal-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.25;
}

.modal-product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal-product-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 20px;
}

/* Qty control */
.qty-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.qty-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
}

.qty-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(194, 86, 114, 0.15);
  color: var(--pink-dark);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform var(--transition);
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
}
.qty-btn:active { transform: scale(0.9); }

.qty-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  min-width: 24px;
  text-align: center;
}

.btn-add-to-cart {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-dark));
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(194, 86, 114, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 52px;
}
.btn-add-to-cart:active { transform: scale(0.97); box-shadow: 0 3px 10px rgba(194,86,114,0.3); }

/* ════════════════════════════════
   CART MODAL (Bottom Sheet)
════════════════════════════════ */
.cart-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 44, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-sheet-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 401;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}

.cart-sheet.open {
  transform: translateY(0);
}

.cart-sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--pink-main);
  border-radius: 2px;
  margin: 14px auto 0;
  flex-shrink: 0;
}

.cart-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--pink-pale);
  flex-shrink: 0;
}

.cart-sheet-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
}

.cart-sheet-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: transform var(--transition);
}
.cart-sheet-close:active { transform: scale(0.9); }

.cart-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

/* Cart Items */
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-emoji {
  font-size: 28px;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-pale);
  border-radius: 12px;
}

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

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2px;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 13px;
  color: var(--pink-dark);
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cart-ctrl-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  width: 36px;
  height: 36px;
  transition: background var(--transition);
}
.cart-ctrl-btn:active { background: var(--pink-pale); }
.cart-ctrl-btn.remove { color: #e05c5c; }

.cart-item-qty {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  min-width: 18px;
  text-align: center;
}

/* Empty cart state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 10px;
  color: var(--text-muted);
  text-align: center;
}
.cart-empty .empty-icon { font-size: 52px; }
.cart-empty p { font-size: 15px; }

/* Totals */
.cart-totals {
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.cart-summary-row.total-row {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(194, 86, 114, 0.2);
}

.cart-summary-row.total-row span:first-child {
  font-weight: 600;
  color: var(--brown);
}

.cart-summary-row.total-row span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--pink-dark);
}

#cart-delivery-value {
  color: var(--brown);
  font-weight: 600;
}

/* Autocomplete List */
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid rgba(244, 167, 185, 0.4);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 180px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(194, 86, 114, 0.15);
  margin-top: -8px; /* overlapping with bottom rounded border of input */
}

.autocomplete-item {
  padding: 10px 15px;
  font-size: 14px;
  color: var(--brown);
  cursor: pointer;
  border-bottom: 1px solid var(--cream);
  transition: background var(--transition);
  display: flex;
  justify-content: space-between;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover, .autocomplete-item:active {
  background: var(--pink-pale);
}

.autocomplete-price {
  font-weight: 600;
  color: var(--pink-dark);
}

/* Customer Form */
.customer-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--pink-pale);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 12px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid rgba(244, 167, 185, 0.4);
  border-radius: 12px;
  background: var(--cream);
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(244, 167, 185, 0.25);
}

.form-input.error,
.form-textarea.error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.15);
}

.form-textarea {
  resize: none;
  height: 80px;
}

.btn-whatsapp {
  width: 100%;
  padding: 17px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  margin-top: 20px;
  margin-bottom: 24px;
  min-height: 56px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp:active { transform: scale(0.97); }

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 32px 20px 28px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.9;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--pink-main);
}

.footer-tagline {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--pink-main);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: background var(--transition);
}
.footer-wa:active { background: rgba(255,255,255,0.2); }

.footer-copy {
  font-size: 12px;
  opacity: 0.45;
}

/* ════════════════════════════════
   TOAST NOTIFICATION
════════════════════════════════ */
.toast {
  position: fixed;
  top: calc(var(--header-h) + var(--tabs-h) + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--brown);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════
   DIVIDER
════════════════════════════════ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-pale), transparent);
  margin: 12px 20px 0;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (min-width: 440px) {
  .header { padding: 0 24px; }
  .cart-bar { left: 20px; right: 20px; }
}

@media (min-width: 600px) {
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
}
