:root {
  --pink: #EF5199;
  --pink-dark: #E30D77;
  --pink-light: #fce4f0;
  --yellow: #F5B232;
  --yellow-dark: #e09e1a;
  --cream: #F7F0E1;
  --blue-light: #C4E7F2;
  --gray-bg: #F6F6F6;
  --gray-border: #E8E8E8;
  --text: #2E2E2E;
  --text-mid: #666;
  --text-light: #999;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(239,81,153,0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html, body {
  height: 100%;
  font-family: 'Varela Round', sans-serif;
  background: #1a0010;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* App shell — mobile frame */
body {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background: var(--gray-bg);
  overflow: hidden;
}

/* SCREENS */
.screen {
  position: absolute;
  inset: 0;
  bottom: 68px; /* leave room for shared nav */
  display: flex;
  flex-direction: column;
  background: var(--gray-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 1;
}
.screen.active {
  opacity: 1;
  pointer-events: all;
  z-index: 10;
}
.screen.slide-out {
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
/* Splash has no nav */
#screen-splash { bottom: 0; }

.screen-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 80px;
}
.bottom-spacer { height: 20px; }

/* TOPBAR */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  flex-shrink: 0;
  z-index: 20;
}
.topbar-logo { height: 36px; }
.topbar-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  flex: 1;
  text-align: center;
}
.topbar-right { display: flex; gap: 8px; align-items: center; }
.back-btn {
  font-size: 24px;
  color: var(--pink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px 0 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  padding: 4px;
}
.notif-btn { position: relative; }
.notif-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  position: absolute;
  top: 2px; right: 2px;
  border: 2px solid var(--white);
}
.cart-badge {
  background: var(--pink);
  color: var(--white);
  border-radius: 10px;
  font-size: 11px;
  padding: 1px 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  position: absolute;
  top: -2px; right: -4px;
}
.ghost-sm {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 13px;
  cursor: pointer;
  font-family: 'Varela Round', sans-serif;
}

/* BOTTOM NAV — shared, fixed outside screens */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  height: 68px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
/* Remove nav from inside screens */
.screen .bottom-nav { display: none; }
.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  color: var(--text-light);
  font-family: 'Varela Round', sans-serif;
  padding: 6px 12px;
  border-radius: 12px;
  transition: color 0.2s;
}
.nav-btn i { font-size: 22px; }
.nav-donut { width: 22px; height: 22px; }
.nav-btn.active { color: var(--pink); }
.nav-btn.active span { filter: saturate(2); }

/* SPLASH */
#screen-splash {
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-dark) 100%);
}
.splash-bg {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 32px;
}
.splash-logo { width: 120px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3)); }
.splash-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
}
.splash-sub { color: rgba(255,255,255,0.85); text-align: center; font-size: 15px; }

/* BUTTONS */
.btn-primary {
  background: var(--yellow);
  color: var(--text);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(245,178,50,0.4);
}
.btn-primary:active { transform: scale(0.97); }
.btn-primary.btn-full { width: 100%; border-radius: var(--radius); }
.btn-primary.btn-lg { font-size: 18px; padding: 16px 48px; }
.btn-secondary {
  background: rgba(255,255,255,0.25);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: none;
  font-family: 'Varela Round', sans-serif;
  font-size: 15px;
  cursor: pointer;
  padding: 8px 16px;
}
.btn-offer {
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 7px 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  margin-top: 6px;
}
.offer-stepper {
  width: fit-content;
}
.btn-add {
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  width: 32px; height: 32px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qty-stepper {
  display: flex;
  align-items: center;
  background: var(--pink);
  border-radius: 50px;
  padding: 0 2px;
  gap: 2px;
  height: 32px;
  flex-shrink: 0;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}
.qty-btn:active { background: rgba(255,255,255,0.2); }
.qty-num {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  min-width: 18px;
  text-align: center;
}
@keyframes ctrl-pop {
  0%   { transform: scale(0.7); opacity: 0.4; }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1);   opacity: 1; }
}
.ctrl-pop { animation: ctrl-pop 0.2s ease; }
.btn-redeem {
  background: var(--yellow);
  color: var(--text);
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.btn-redeem:disabled {
  background: var(--gray-border);
  color: var(--text-light);
}

/* HERO */
.hero-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  margin: 12px;
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.hero-content { flex: 1; }
.hero-eyebrow { color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 4px; }
.hero-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* CARDS */
.section-card {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.section-card.clickable { cursor: pointer; }
.store-selector-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.store-icon { font-size: 22px; color: var(--pink); }
.store-selector-text { flex: 1; }
.store-selector-text small { color: var(--text-light); font-size: 11px; }
.store-selector-text strong { display: block; color: var(--text); font-size: 14px; }
.chevron { font-size: 20px; color: var(--text-light); }
.acc-menu-chevron { font-size: 18px; color: var(--text-light); }
.acc-menu-icon { font-size: 22px; width: 32px; text-align: center; color: var(--pink); }

/* POINTS BANNER */
.points-banner {
  background: linear-gradient(135deg, #e09e1a, #ffb706);
  margin: 8px 12px;
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.points-left { display: flex; align-items: center; gap: 12px; }
.points-icon { font-size: 28px; color: var(--text); }
.points-label { color: rgba(0,0,0,0.55); font-size: 11px; }
.points-val { color: var(--text); font-size: 20px; font-weight: 700; font-family: 'Raleway', sans-serif; }
.points-cta { color: rgba(0,0,0,0.65); font-size: 13px; font-weight: 600; }

/* SECTION HEADERS */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px;
}
.section-header h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.see-all { color: var(--pink); font-size: 13px; cursor: pointer; }

/* OFFERS SCROLL */
.offers-scroll {
  display: flex;
  gap: 12px;
  padding: 0 16px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.offers-scroll::-webkit-scrollbar { display: none; }
.offer-card {
  flex-shrink: 0;
  width: 150px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  position: relative;
}
.offer-badge {
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}
.offer-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.offer-name { font-size: 13px; font-weight: 600; color: var(--text); margin-top: 6px; }
.offer-price { font-size: 13px; color: var(--text-mid); margin-top: 2px; }
.offer-price strong { color: var(--pink); font-size: 15px; }
.offer-card .btn-offer {
  width: auto;
  display: block;
  padding: 7px 14px;
  font-size: 12px;
  text-align: center;
}
.offer-card .offer-stepper { margin-top: 8px; }

/* CATEGORIES GRID */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 12px 8px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}
.cat-card:active { transform: scale(0.97); }
.cat-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.cat-card span {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

/* MENU CATEGORY TABS */
.cat-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 12px 4px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0;
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-tab.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* PRODUCTS GRID */
.products-grid {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-section-header {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  padding: 16px 4px 8px;
}
.menu-section-header:first-child { padding-top: 4px; }
.menu-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-info { padding: 10px 10px 12px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  line-height: 1.3;
}
.product-cat-tag {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 2px;
  margin-bottom: 6px;
}
.product-desc {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 3px;
  line-height: 1.3;
}
.combo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.combo-pill {
  font-size: 10px;
  font-family: 'Varela Round', sans-serif;
  color: var(--pink-dark);
  background: rgba(239,81,153,0.1);
  border: 1px solid rgba(239,81,153,0.25);
  border-radius: 50px;
  padding: 2px 8px;
  white-space: nowrap;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.product-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--pink);
}

/* CART ITEMS */
.cart-item {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price { color: var(--pink); font-weight: 700; font-size: 14px; margin-top: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  background: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.qty-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

/* EMPTY CART */
.empty-cart {
  text-align: center;
  padding: 60px 24px;
}
.empty-cart-icon { font-size: 60px; margin-bottom: 16px; color: var(--pink); }
.confirm-icon i { font-size: 80px; color: #27ae60; }
.empty-cart h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}
.empty-cart p { color: var(--text-mid); margin-bottom: 24px; }

/* ORDER SUMMARY */
.order-summary {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--gray-border);
}
.summary-row:last-child { border-bottom: none; }
.total-row {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.discount-val { color: #27ae60; }
.checkout-footer { padding: 12px; }

/* STORES */
.search-bar-wrap { padding: 12px 12px 4px; }
.search-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 50px;
  border: 2px solid var(--gray-border);
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--pink); }
.stores-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  padding: 4px 16px 8px;
}

/* PR MAP */
.pr-map-wrap {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.pr-map-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
#pr-map {
  width: 100%;
  cursor: pointer;
}
.pr-map-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-mid);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.store-item {
  background: var(--white);
  margin: 6px 12px;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.store-item:hover, .store-item.selected { border-color: var(--pink); }
.store-item.selected { background: var(--pink-light); }
.store-city {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}
.store-type { color: var(--pink); font-size: 12px; margin-top: 2px; font-weight: 600; }
.store-address { color: var(--text-mid); font-size: 12px; margin-top: 4px; line-height: 1.4; }
.store-selected-badge {
  background: var(--pink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  float: right;
  margin-top: -2px;
}

/* REWARDS */
.points-card {
  margin: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(239,81,153,0.25);
}
.points-card-inner {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  padding: 28px 20px;
  text-align: center;
}
.points-card-logo { width: 60px; margin-bottom: 12px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }
.points-card-label { color: rgba(255,255,255,0.75); font-size: 13px; }
.points-card-val {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
}
.points-card-sub { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }
.points-progress-wrap {
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  height: 8px;
  margin: 0 0 8px;
}
.points-progress {
  height: 100%;
  background: var(--yellow);
  border-radius: 50px;
  transition: width 0.6s ease;
  width: 0%;
}
.points-next { color: rgba(255,255,255,0.85); font-size: 12px; }

.how-it-works {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.how-it-works h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
}
.how-steps { display: flex; flex-direction: column; gap: 10px; }
.how-step { display: flex; align-items: center; gap: 12px; }
.step-num {
  width: 30px; height: 30px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
}
.how-step p { font-size: 13px; color: var(--text-mid); }

.section-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  padding: 16px 16px 8px;
}

.rewards-catalog {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px;
}
.reward-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.reward-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--pink-light);
}
.reward-info { flex: 1; }
.reward-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.reward-pts { color: var(--pink); font-size: 13px; font-weight: 600; margin-top: 2px; }
.reward-desc { color: var(--text-light); font-size: 12px; }

.points-history { padding: 0 12px; }
.history-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}
.history-info { font-size: 13px; color: var(--text); }
.history-date { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.history-pts { font-family: 'Raleway', sans-serif; font-weight: 800; color: var(--pink); }
.history-pts.neg { color: var(--text-mid); }

.empty-state {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  padding: 24px;
  line-height: 1.6;
}

/* OFFERS FULL */
.offers-hero {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  padding: 28px 20px;
  text-align: center;
}
.offers-hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.offers-hero-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
}

.offers-full-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}
.offer-full-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0;
}
.offer-full-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  flex-shrink: 0;
}
.offer-full-info { flex: 1; padding: 14px; }
.offer-full-badge {
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 4px;
}
.offer-full-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}
.offer-full-desc { font-size: 12px; color: var(--text-light); margin: 2px 0 8px; }
.offer-full-price { color: var(--text-mid); font-size: 13px; }
.offer-full-price strong { color: var(--pink); font-size: 16px; }
.offer-2x1-note { font-size: 12px; color: var(--text-light); }
.offer-expiry { font-size: 11px; color: var(--text-light); margin-top: 4px; }

/* ACCOUNT */
.account-profile {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  padding: 28px 20px;
  text-align: center;
}
.account-avatar {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.account-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
}
.account-email { color: rgba(255,255,255,0.75); font-size: 13px; margin-top: 2px; }
.account-points-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}
.acc-stat { text-align: center; }
.acc-stat-val {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--yellow);
}
.acc-stat-label { color: rgba(255,255,255,0.75); font-size: 11px; }

.account-menu { padding: 8px 12px; }
.acc-menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.acc-menu-icon { font-size: 22px; width: 32px; text-align: center; }
.acc-menu-text { flex: 1; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
.acc-menu-chevron { color: var(--text-light); font-size: 20px; }
.acc-menu-item.danger .acc-menu-text { color: #e74c3c; }

/* ORDER HISTORY */
.order-hist-item {
  background: var(--white);
  margin: 6px 12px;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.order-hist-top { display: flex; justify-content: space-between; align-items: center; }
.order-hist-id {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.order-hist-status {
  background: #e8f8f5;
  color: #27ae60;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.order-hist-detail { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.order-hist-total { font-family: 'Raleway', sans-serif; font-weight: 700; color: var(--pink); margin-top: 8px; }

/* AUTH */
.auth-screen { padding: 24px 20px; }
.auth-logo { width: 80px; display: block; margin: 0 auto 16px; }
.auth-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--text);
  text-align: center;
  margin-bottom: 4px;
}
.auth-subtitle { color: var(--text-mid); text-align: center; font-size: 14px; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  font-family: 'Varela Round', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-input:focus { border-color: var(--pink); }
.auth-switch {
  text-align: center;
  color: var(--text-mid);
  font-size: 14px;
  margin-top: 20px;
}
.auth-switch span { color: var(--pink); font-weight: 700; cursor: pointer; }

/* CONFIRM SCREEN */
.confirm-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 16px;
  text-align: center;
  min-height: 100%;
}
.confirm-icon { font-size: 80px; }
.confirm-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--text);
}
.confirm-sub { color: var(--text-mid); font-size: 16px; }
.confirm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: left;
}
.confirm-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.confirm-card strong { color: var(--text); }
.confirm-points {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  border-radius: var(--radius);
  padding: 16px 24px;
  width: 100%;
}
.confirm-points p { color: rgba(255,255,255,0.85); font-size: 14px; text-align: center; }
.confirm-points strong { color: var(--yellow); font-size: 20px; }

/* FIELD */
.field-label { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
.field-select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  outline: none;
  background: var(--gray-bg);
}

/* REWARDS IN CART */
.rewards-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
}
.rewards-options { display: flex; flex-wrap: wrap; gap: 6px; }
.reward-opt {
  border: 2px solid var(--gray-border);
  background: var(--white);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Raleway', sans-serif;
}
.reward-opt.active {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}
.reward-opt:disabled {
  opacity: 0.4;
  cursor: default;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #2E2E2E;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  text-align: center;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* PR MAP styles */
.map-municipality {
  fill: #e8e8e8;
  stroke: var(--white);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.2s;
}
.map-municipality.has-store {
  fill: var(--pink-light);
  stroke: var(--pink);
  stroke-width: 1.5;
}
.map-municipality.has-store:hover {
  fill: var(--pink);
}
.map-municipality.selected {
  fill: var(--pink-dark) !important;
}
.map-dot {
  fill: var(--pink);
  cursor: pointer;
}
.map-label {
  font-family: 'Varela Round', sans-serif;
  font-size: 8px;
  fill: var(--text);
  text-anchor: middle;
  pointer-events: none;
}

/* PICKUP TIME OPTIONS */
.pickup-select {
  width: 100%;
  margin-top: 8px;
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: 14px;
  font-size: 14px;
  font-family: 'Varela Round', sans-serif;
  color: var(--text);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 256 256'%3E%3Cpath fill='%23EF5199' d='m213.66 101.66-80 80a8 8 0 0 1-11.32 0l-80-80A8 8 0 0 1 53.66 90.34L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.pickup-select:focus { border-color: var(--pink); }

/* LEAFLET MAP */
#leaflet-map {
  height: 200px;
  border-radius: var(--radius);
  z-index: 1;
}
.leaflet-container { border-radius: var(--radius); }

/* PAYMENT SCREEN */
.card-row { display: flex; gap: 12px; }
.card-input-wrap { position: relative; }
.card-input-icon {
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 20px;
  color: var(--text-light);
  pointer-events: none;
}
.card-input-wrap .form-input { padding-right: 44px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--pink);
}
.card-sample-hint {
  font-size: 12px;
  color: var(--text-light);
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.saved-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.saved-card.selected { border-color: var(--pink); }
.saved-card-icon { font-size: 28px; color: var(--pink); }
.saved-card-info { flex: 1; }
.saved-card-number { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
.saved-card-exp { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.saved-card-delete {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

/* PAYMENT IN CART */
.payment-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.payment-selector-text { flex: 1; }
.payment-selector-text small { color: var(--text-light); font-size: 11px; }
.payment-selector-text strong { display: block; color: var(--text); font-size: 14px; }
