/* === START: style.css === */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --black: #000000;
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #E8E8E8;
  --grey-400: #AAAAAA;
  --grey-600: #555555;
  --grey-800: #222222;
  --green-wa: #25D366;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --radius-card: 20px;
  --shadow-card: 0 2px 24px rgba(0,0,0,0.07);
  --shadow-float: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ——— LAYOUT ——— */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.page-body { padding-top: 0; padding-bottom: 80px; }
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .page-body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* ——— KEYFRAMES ——— */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bgDrift {
  0%   { transform: translate(-50%,-50%) translateX(0); }
  100% { transform: translate(-50%,-50%) translateX(-30px); }
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(28px); opacity: 0; }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) translateX(-50%); }
  to   { opacity: 1; transform: translateY(0) translateX(-50%); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(40px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ——— ANNOUNCEMENT BAR ——— */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  gap: 80px;
  will-change: transform;
}
.announcement-track span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ——— SOLID WHITE HEADER ——— */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-radius: 0;
  padding: 0 22px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease;
}

.site-header::before { display: none; }
.site-header > * { position: relative; z-index: 1; }

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.header-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  letter-spacing: -0.3px;
}
.logo-icon { font-size: 18px; line-height: 1; }
.logo-img { height: 36px; width: auto; }

.header-nav { display: none; }
.header-nav-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-600);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.header-nav-item:hover { color: var(--black); background: rgba(0,0,0,0.06); }
.header-nav-item.active { color: var(--black); background: rgba(0,0,0,0.08); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }


.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  background: rgba(0,0,0,0.07);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ——— MOBILE OVERLAY NAV ——— */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0,0,0,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 60px 32px 100px;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 28px;
  padding: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.mobile-overlay-close:hover { opacity: 1; transform: rotate(90deg); }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.mobile-nav-item {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-align: center;
}
.mobile-nav-item:hover, .mobile-nav-item.active { color: var(--white); background: rgba(255,255,255,0.1); }
.mobile-nav-footer { margin-top: 32px; text-align: center; color: rgba(255,255,255,0.4); font-size: 13px; }
.mobile-nav-footer p { margin-bottom: 4px; }

/* ——— FLOATING CART BUTTON ——— */
.float-cart {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 0 0 1.5px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  color: var(--black);
  font-size: 22px;
}
.float-cart:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(0,0,0,0.22); }
.float-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e53e3e;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--white);
}
.float-cart.has-items { animation: pulse 2.5s ease-in-out infinite; }

/* ——— CART DRAWER ——— */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  z-index: 1100;
  background: var(--white);
  box-shadow: -8px 0 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
  flex-shrink: 0;
}
.cart-drawer-header-left { display: flex; align-items: center; gap: 10px; }
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-drawer-count {
  background: var(--grey-100);
  color: var(--grey-600);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}
.cart-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.cart-drawer-close:hover { background: var(--grey-200); transform: rotate(90deg); }

/* Delivery bar */
.cart-delivery-bar {
  padding: 10px 22px 12px;
  border-bottom: 1px solid var(--grey-100);
  background: #f8fff9;
  flex-shrink: 0;
}
.cart-delivery-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 6px;
}
.cart-delivery-bar.delivery-unlocked .cart-delivery-text { color: #16a34a; }
.cart-delivery-track {
  height: 5px;
  background: var(--grey-200);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.cart-delivery-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: var(--radius-pill);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px;
  background: var(--grey-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.cart-item:hover { background: var(--grey-100); }
.cart-item-img {
  width: 54px; height: 54px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--grey-200);
}
.cart-item-img-ph {
  width: 54px; height: 54px;
  border-radius: 10px;
  background: var(--grey-100);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--grey-400);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-variant { font-size: 11px; color: var(--grey-400); margin-top: 2px; }
.cart-item-price { font-size: 13px; font-weight: 700; color: var(--black); margin-top: 4px; }
.cart-item-qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-btn {
  width: 30px; height: 30px;
  background: var(--grey-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500;
  line-height: 0;
  padding: 0;
  user-select: none;
  transition: var(--transition); cursor: pointer;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--black); color: var(--white); }
.qty-val { font-size: 14px; font-weight: 700; min-width: 22px; text-align: center; }
.cart-item-remove {
  color: var(--grey-400);
  font-size: 17px; cursor: pointer; padding: 4px;
  transition: var(--transition); flex-shrink: 0;
}
.cart-item-remove:hover { color: #e53e3e; transform: scale(1.1); }

/* Cart Recommendations */
.cart-rec-section {
  padding: 14px 22px;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  background: #fefefe;
  flex-shrink: 0;
}
.cart-rec-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-rec-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.cart-rec-list::-webkit-scrollbar { display: none; }
.cart-rec-item {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}
.cart-rec-item:hover { border-color: var(--black); }
.cart-rec-img {
  width: 72px; height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-rec-img-ph {
  width: 72px; height: 72px;
  border-radius: 10px;
  background: var(--grey-100);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--grey-400);
}
.cart-rec-info { width: 100%; min-width: 0; }
.cart-rec-name {
  font-size: 12px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-rec-price { font-size: 12px; color: var(--grey-600); margin-top: 2px; font-weight: 600; }
.cart-rec-add {
  width: 32px; height: 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  transition: var(--transition); cursor: pointer; border: none;
}
.cart-rec-add:hover { background: var(--grey-800); transform: scale(1.1); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-400);
  text-align: center;
  padding: 40px 24px;
}
.cart-empty-icon { font-size: 56px; line-height: 1; animation: floatBob 3s ease-in-out infinite; }
.cart-empty p { font-size: 17px; font-weight: 700; color: var(--grey-800); margin-top: 4px; }
.cart-empty span { font-size: 14px; color: var(--grey-400); }
.btn-start-ordering {
  margin-top: 12px;
  background: var(--black);
  color: var(--white);
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.btn-start-ordering:hover { background: var(--grey-800); transform: scale(1.03); }

.cart-footer {
  padding: 14px 22px 18px;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
  flex-shrink: 0;
}
.cart-savings-banner {
  background: linear-gradient(135deg, #d4f7dc, #c3e6cb);
  border: 1px solid #a3d9a5;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px; font-weight: 600; color: #1a6630;
}
.cart-savings-banner i { font-size: 15px; flex-shrink: 0; }
.cart-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid var(--grey-100);
  margin-bottom: 8px;
}
.cart-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--grey-600);
}
.cart-gst-row {
  color: var(--grey-700);
  font-weight: 600;
}
.cart-gst-label { display: flex; align-items: center; gap: 5px; }
.cart-gst-amount { color: var(--grey-800); }
.cart-breakdown-amount { font-weight: 500; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--grey-200);
  padding-top: 10px;
  margin-bottom: 12px;
}
.cart-total-label { display: flex; flex-direction: column; gap: 3px; }
.cart-total-label > span:first-child { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.cart-items-count-label { font-size: 12px; color: var(--grey-400); }
.cart-total-amount { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--black); }
.cart-checkout-btn {
  background: var(--green-wa);
  color: var(--white);
  padding: 15px 24px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer; border: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
}
.cart-checkout-btn:hover { background: #1ebe5a; transform: scale(1.02); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
.cart-checkout-btn svg { flex-shrink: 0; }
.cart-wa-note {
  text-align: center;
  font-size: 11px; color: var(--grey-400);
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* ——— BOTTOM PILL NAV ——— */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  will-change: transform;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 10px 10px;
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.bottom-nav::-webkit-scrollbar { display: none; }
.bottom-nav-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px 4px;
  border-radius: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}
.bottom-nav-item i { font-size: 20px; line-height: 1; flex-shrink: 0; }
.nav-svg-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-svg-icon svg { width: 20px; height: 20px; fill: currentColor; }
.bottom-nav-item span {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  max-width: 64px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.bottom-nav-item:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07); }
.bottom-nav-item.active { background: rgba(255,255,255,0.14); color: var(--white); box-shadow: 0 0 0 1px rgba(255,255,255,0.12); }
.bottom-nav-item.active i, .bottom-nav-item.active span { color: #fff; }

/* ——— BUTTONS ——— */
.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 12px 28px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--grey-800); transform: scale(1.03); }
.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 12px 28px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  cursor: pointer; border: none;
}
.btn-white:hover { background: var(--grey-100); transform: scale(1.03); }
.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer; border: none;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: scale(1.02); }
.btn-whatsapp i { font-size: 20px; }
.btn-whatsapp-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(37,211,102,0.6);
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-whatsapp-outline:hover { background: var(--green-wa); border-color: var(--green-wa); }
.btn-pill { border-radius: var(--radius-pill); }

/* ——— SECTION LABELS & HEADERS ——— */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-header { margin-bottom: 48px; }

/* ——— HERO SECTION ——— */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -4px;
  animation: bgDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; max-width: 520px; }
.hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--grey-600);
  background: rgba(0,0,0,0.07);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 16px;
  overflow: hidden;
}
.hero-subtitle {
  font-size: 17px; color: var(--grey-600);
  line-height: 1.6; margin-bottom: 36px; max-width: 380px;
}
.hero-cta-row { display: flex; gap: 16px; align-items: center; }
.hero-image-wrap {
  flex: 0 0 auto;
  width: clamp(240px, 34vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.13));
}
.hero-product-img { width: 100%; height: auto; border-radius: 24px; }
.hero-icon-placeholder {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(80px, 13vw, 160px);
  color: rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.5);
  border-radius: 32px;
  backdrop-filter: blur(8px);
}
.hero-scroll-indicator {
  position: absolute; bottom: 40px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line { width: 1px; height: 48px; background: rgba(0,0,0,0.15); position: relative; overflow: hidden; border-radius: 1px; }
.scroll-dot { width: 3px; height: 12px; background: var(--black); border-radius: 3px; position: absolute; left: -1px; top: 0; animation: scrollDot 1.8s ease-in-out infinite; }

/* ——— FEATURED PRODUCT SECTION ——— */
.featured-section { background: var(--black); padding: 100px 0; overflow: hidden; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.featured-image-wrap {
  display: flex; align-items: center; justify-content: center;
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
}
.featured-img-square {
  width: 100%; max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(-3deg);
  flex-shrink: 0;
  filter: drop-shadow(0 40px 80px rgba(255,255,255,0.06));
}
.featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: none;
  transform: none;
}
.featured-icon-placeholder { width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; font-size: 120px; color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); border-radius: 32px; transform: rotate(-3deg); }
.featured-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.featured-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: var(--white); line-height: 1.05; letter-spacing: -1px; margin-bottom: 16px; }
.featured-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; max-width: 380px; }
.featured-price { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 28px; }
.featured-text { color: var(--white); }

/* ——— PRODUCT GRID ——— */
.products-section { padding: 100px 0; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px solid var(--grey-200);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:hover { border-color: var(--grey-400); }

/* Badges */
.best-seller-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--black); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 4px;
}
.save-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: #16a34a; color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.combo-badge {
  position: absolute; top: 42px; right: 12px; z-index: 2;
  background: #ea580c; color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-pill);
}

/* Product image + quick-add overlay */
.product-card-image-wrap {
  width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-100);
  position: relative;
}
.product-card-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.product-card:hover .product-card-image { transform: scale(1.08); }

.product-quick-add {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0;
}
.product-card:hover .product-quick-add { opacity: 1; }
.product-quick-add-btn {
  width: 52px; height: 52px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  border: none; cursor: pointer;
  transform: scale(0.75);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.product-card:hover .product-quick-add-btn { transform: scale(1); }
.product-quick-add-btn:hover { background: var(--black); color: var(--white); transform: scale(1.1) !important; }

.product-img-placeholder { display: flex; align-items: center; justify-content: center; }
.product-icon { font-size: 52px; color: rgba(0,0,0,0.18); }
.product-card-body { padding: 16px; }
.product-card-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--black); letter-spacing: -0.2px; }
.product-card-meta { font-size: 12.5px; color: var(--grey-600); line-height: 1.55; margin-bottom: 13px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.product-card-price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--black); }
.product-card-compare { font-size: 12px; color: var(--grey-400); text-decoration: line-through; }
.product-card-add {
  background: var(--black); color: var(--white);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  transition: var(--transition); flex-shrink: 0;
}
.product-card-add:hover { background: var(--grey-800); transform: scale(1.05); }

/* ——— STATS ——— */
.stats-section { padding: 72px 0; background: var(--grey-50); }
.stats-grid { display: flex; align-items: center; justify-content: space-between; gap: 0; }
.stat-block { flex: 1; text-align: center; padding: 20px; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(44px, 6vw, 64px); font-weight: 800; color: var(--black); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--grey-400); font-weight: 500; letter-spacing: 0.3px; }
.stat-divider { width: 1px; height: 80px; background: var(--grey-200); flex-shrink: 0; }

/* ——— COMBO SHOWCASE (replaces CTA strip on homepage) ——— */
.combo-showcase-section {
  background: var(--black);
  padding: 80px 0;
}
.combo-showcase-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.combo-showcase-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.combo-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0 0 8px;
}
.combo-showcase-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 440px;
  line-height: 1.55;
}
.combo-showcase-view-all { flex-shrink: 0; }
.combo-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Cards on dark bg: white cards pop as the primary visual */
.combo-showcase-section .combo-card {
  background: var(--white);
}
.combo-showcase-mobile-cta {
  display: none;
  text-align: center;
  margin-top: 32px;
}
.combo-showcase-empty {
  text-align: center;
  padding: 48px 0;
}

/* ——— CTA STRIP ——— */
.cta-strip { background: var(--black); padding: 72px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-strip-text h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.5px; }
.cta-strip-text p { font-size: 16px; color: rgba(255,255,255,0.6); }
.cta-strip-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* ——— REVIEWS MARQUEE ——— */
.reviews-section { padding: 100px 0; background: var(--grey-50); overflow: hidden; }
.reviews-marquee {
  overflow: hidden;
  position: relative;
  padding: 12px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
.review-card {
  flex: 0 0 320px;
  background: var(--card-bg, #FDE8C8);
  border-radius: 24px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  padding: 22px;
  user-select: none;
}
.review-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.review-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.review-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar-letter {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: rgba(0,0,0,0.45);
}
.review-meta { flex: 1; }
.review-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; color: var(--black);
  display: block; margin-bottom: 4px;
}
.review-stars { display: flex; gap: 3px; color: #E8900A; font-size: 14px; }
.review-quote-mark {
  position: absolute;
  right: 0; top: -4px;
  font-family: var(--font-display);
  font-size: 56px; font-weight: 800;
  color: rgba(0,0,0,0.08);
  line-height: 1;
}
.review-text {
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1.65;
  font-style: italic;
  font-weight: 500;
}

/* ——— CATEGORY CAROUSEL ——— */
.category-carousel-section { padding: 100px 0; background: var(--white); overflow: hidden; }
.category-carousel-viewport {
  overflow-x: scroll;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
  padding: 12px 0 28px;
}
.category-carousel-viewport:active { cursor: grabbing; }
.category-carousel-viewport::-webkit-scrollbar { display: none; }
.category-carousel {
  display: flex;
  gap: 20px;
  padding: 0 var(--container-pad, 32px);
  width: max-content;
}
.category-circle {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  scroll-snap-align: start;
  -webkit-user-drag: none;
  user-select: none;
  will-change: transform;
}
.category-circle-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--black);
  border: 1.5px solid transparent;
  transition: var(--transition);
  overflow: hidden;
  background: var(--grey-100);
  flex-shrink: 0;
}
.category-circle-has-img { background: transparent !important; }
.category-circle-has-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.circle-svg-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; }
.circle-svg-icon svg { width: 32px; height: 32px; fill: currentColor; }
.category-circle.active .category-circle-icon { border-color: var(--black); box-shadow: 0 0 0 2px var(--black); }
.category-circle-name {
  font-size: 12px; font-weight: 600;
  color: var(--grey-600);
  text-align: center;
  max-width: 84px;
  line-height: 1.3;
  transition: var(--transition);
}
.active-name { color: var(--black); font-weight: 700; }

/* ——— SOCIAL SECTION ——— */
.social-section { padding: 0; background: var(--grey-50); }
.social-inner { text-align: center; max-width: 580px; margin: 0 auto; padding: 80px 32px 60px; }
.social-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); font-weight: 800; color: var(--black); margin-bottom: 16px; letter-spacing: -1px; }
.social-body { font-size: 17px; color: var(--grey-600); line-height: 1.6; margin-bottom: 36px; }
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  color: var(--white); font-size: 14px; font-weight: 600;
  transition: var(--transition); border: none;
}
.social-link svg { flex-shrink: 0; }
.social-link-instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link-instagram:hover { transform: scale(1.05); filter: brightness(1.1); }
.social-link-facebook { background: #1877F2; }
.social-link-facebook:hover { background: #166fe5; transform: scale(1.05); }
.social-link-whatsapp { background: var(--green-wa); }
.social-link-whatsapp:hover { background: #1ebe5a; transform: scale(1.05); }

/* ——— GALLERY GRID ——— */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--grey-100); }
.gallery-media { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-media { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 20px 10px 8px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ——— VARIANT MODAL ——— */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.variant-modal {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1400; background: var(--white);
  border-radius: 28px 28px 0 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 85vh; overflow-y: auto;
}
.variant-modal.open { transform: translateY(0); }
.modal-header { padding: 24px 24px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--grey-200); position: sticky; top: 0; background: var(--white); z-index: 1; }
.modal-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.modal-close { width: 36px; height: 36px; background: var(--grey-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); }
.modal-close:hover { background: var(--grey-200); transform: rotate(90deg); }
.modal-variants { padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.variant-pill { padding: 10px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--grey-200); font-size: 14px; font-weight: 600; color: var(--grey-800); cursor: pointer; transition: var(--transition); background: var(--white); }
.variant-pill:hover { border-color: var(--black); color: var(--black); }
.variant-pill.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.modal-footer { padding: 16px 24px 24px; display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--grey-200); position: sticky; bottom: 0; background: var(--white); }
.modal-price { font-family: var(--font-display); font-size: 24px; font-weight: 800; flex: 1; }
.modal-add-btn { flex-shrink: 0; }

/* ——— COMBO POPUP MODAL ——— */
.combo-popup-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.combo-popup-overlay.open { opacity: 1; pointer-events: all; }
.combo-popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  z-index: 1600; background: var(--white);
  border-radius: 28px; width: 90vw; max-width: 420px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.combo-popup.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.combo-popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.6); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; z-index: 1; transition: var(--transition);
}
.combo-popup-close:hover { background: rgba(0,0,0,0.85); transform: rotate(90deg); }
.combo-popup-image { width: 100%; }
.combo-popup-image img { width: 100%; display: block; max-height: 320px; object-fit: cover; }
.combo-popup-placeholder { padding: 48px 32px 24px; text-align: center; }
.combo-popup-emoji { font-size: 56px; margin-bottom: 16px; }
.combo-popup-placeholder h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.combo-popup-placeholder p { font-size: 15px; color: var(--grey-600); line-height: 1.6; }
.combo-popup-footer { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.combo-popup-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--black); color: var(--white); padding: 15px 24px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 700; transition: var(--transition); text-align: center; }
.combo-popup-cta:hover { background: var(--grey-800); transform: scale(1.02); }
.combo-popup-skip { color: var(--grey-400); font-size: 13px; text-align: center; cursor: pointer; padding: 4px; transition: var(--transition); }
.combo-popup-skip:hover { color: var(--grey-800); }

/* ——— COMBOS PAGE ——— */
.combos-hero {
  position: relative;
  background: var(--black);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.combos-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.combos-hero-bg-mobile { display: none; }
.combos-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 1;
}
.combos-hero-label { display: inline-block; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 6px 18px; border-radius: var(--radius-pill); margin-bottom: 20px; }
.combos-hero h1 { font-family: var(--font-display); font-size: clamp(42px, 7vw, 88px); font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 16px; color: var(--white); }
.combos-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto; line-height: 1.6; }
.combos-section { padding: 60px 0 120px; background: var(--grey-50); }

/* Glass section header for combos */
.combos-section-glass-header {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 40px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}

.combos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Keep combo-card-cat class for category label */
.combo-card-cat { font-size: 11px; color: var(--grey-400); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Subtle CTA for combo page */
.cta-strip-subtle { background: var(--grey-100); border-top: 1px solid var(--grey-200); padding: 64px 0; }
.cta-strip-subtle .cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

/* View button for combo cards */
.btn-view-combo {
  background: var(--grey-100); color: var(--grey-800);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  transition: var(--transition); cursor: pointer; flex-shrink: 0;
}
.btn-view-combo:hover { background: var(--grey-200); border-color: var(--grey-400); }

/* Product View Popup */
.product-view-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.product-view-overlay.open { opacity: 1; pointer-events: all; }
.product-view-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1600; background: var(--white);
  border-radius: 28px; width: 90vw; max-width: 820px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.product-view-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.product-view-close {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.65); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition); cursor: pointer;
}
.product-view-close:hover { background: var(--black); transform: rotate(90deg); }
.product-view-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.product-view-image-side {
  background: var(--grey-100); border-radius: 28px 0 0 28px;
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.product-view-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-view-img-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(0,0,0,0.12);
}
.product-view-body { padding: 40px 36px; display: flex; flex-direction: column; gap: 16px; }
.product-view-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-400); }
.product-view-name { font-family: var(--font-display); font-size: clamp(22px, 4vw, 30px); font-weight: 800; color: var(--black); line-height: 1.1; letter-spacing: -0.5px; }
.product-view-prices { display: flex; align-items: baseline; gap: 10px; }
.product-view-price { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--black); }
.product-view-compare { font-size: 16px; color: var(--grey-400); text-decoration: line-through; }
.product-view-desc { font-size: 14px; color: var(--grey-600); line-height: 1.7; flex: 1; }
.product-view-desc p { margin-bottom: 8px; }
.product-view-desc strong, .product-view-desc b { font-weight: 700; color: var(--black); }
.product-view-add-btn { align-self: flex-start; margin-top: 8px; }

.combo-empty { text-align: center; padding: 80px 24px; color: var(--grey-400); }
.combo-empty i { font-size: 64px; margin-bottom: 20px; display: block; }
.combo-empty h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--grey-800); margin-bottom: 12px; }

/* ——— SITE FOOTER ——— */
.site-footer { background: var(--black); color: var(--white); padding: 72px 0 0; padding-bottom: 90px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px 64px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { font-size: 22px; line-height: 1; }
.footer-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; line-height: 1.5; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a svg { display: block; }
.footer-social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.footer-social-ig:hover { transform: scale(1.12); filter: brightness(1.1); }
.footer-social-fb { background: #1877F2; color: #fff; }
.footer-social-fb:hover { background: #166fe5; transform: scale(1.12); }
.footer-links h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links li a:hover { color: var(--white); }
.footer-contact h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-contact p i { font-size: 15px; flex-shrink: 0; }
.footer-contact-wa { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; transition: var(--transition); }
.footer-contact-wa:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 32px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-admin-link { color: rgba(255,255,255,0.2); transition: var(--transition); }
.footer-admin-link:hover { color: rgba(255,255,255,0.6); }

/* ——— TOAST ——— */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 2000;
  background: var(--black); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.toast.show { opacity: 1; animation: toastIn 0.3s ease; }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .combos-grid { grid-template-columns: repeat(2, 1fr); }
  .combo-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { flex-wrap: wrap; }
  .stat-block { flex: 0 0 calc(50% - 1px); }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero-content { flex-direction: column-reverse; gap: 28px; padding: 0 20px; text-align: center; }
  .hero-image-wrap { width: clamp(180px, 55vw, 300px); }
  .hero-cta-row { justify-content: center; }
  .hero-scroll-indicator { display: none; }
  .hero-title { letter-spacing: -0.5px; }
  .hero-subtitle { max-width: 100%; }
  .hero-section { padding: 120px 0 100px; }
  .featured-grid { grid-template-columns: 1fr; text-align: center; }
  .featured-image-wrap { justify-content: center; }
  .featured-text { order: -1; }
  .featured-desc { max-width: 100%; margin: 0 auto 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .combos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* Combo showcase mobile */
  .combo-showcase-section { padding: 60px 0; }
  .combo-showcase-hdr { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
  .combo-showcase-view-all { display: none; }
  .combo-showcase-mobile-cta { display: block; }
  .combo-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-subtle .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { flex-wrap: wrap; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cart-drawer { width: 100vw; right: 0; left: 0; border-radius: 24px 24px 0 0; max-height: 90vh; top: auto; }
  .stats-grid { flex-direction: column; }
  .stat-block { flex: 0 0 auto; }
  .site-header { left: 0; right: 0; padding: 0 16px; }
  .container { padding: 0 18px; }
  .category-carousel-section { padding: 72px 0; }
  .category-carousel { padding: 0 18px; }
  .reviews-section { padding: 72px 0; }
  .social-inner { padding: 56px 20px 40px; }
  .social-links { gap: 8px; }
  .social-link { padding: 11px 18px; font-size: 13px; gap: 7px; }
  .combos-hero { padding: 120px 0 64px; }
  .combos-hero-bg-desktop { display: none; }
  .combos-hero-bg-mobile { display: block; }
  .combos-section-glass-header { padding: 18px 20px; }
  .review-card { flex: 0 0 280px; }
  .product-view-inner { grid-template-columns: 1fr; }
  .product-view-image-side { border-radius: 28px 28px 0 0; min-height: 240px; }
  .product-view-body { padding: 24px 20px 32px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .combos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-bg-text { font-size: 22vw; }
  .section-title { font-size: clamp(28px, 8vw, 44px); }
  .featured-title { font-size: clamp(32px, 9vw, 56px); }
  .bottom-nav-item { padding: 6px 8px 4px; }
  .bottom-nav-item span { font-size: 8.5px; max-width: 56px; }
  .product-card-name { font-size: 14px; }
  .product-card-price { font-size: 16px; }
  .product-card-add { padding: 8px 12px; font-size: 12px; }
  .btn-view-combo { padding: 8px 10px; font-size: 11px; }
  .social-links { flex-direction: column; align-items: center; }
  .social-link { width: 100%; max-width: 260px; justify-content: center; }
  .review-card { flex: 0 0 260px; }
  .product-view-modal { width: 96vw; border-radius: 20px; }
}

/* === END: style.css === */
/* ============================================================
   COMBO CARD FULL REDESIGN — paste at END of style.css
   ============================================================ */

/* ——— COMBO GRID ——— */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ——— COMBO CARD ——— */
.combo-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--grey-200);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  will-change: transform;
}
.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.13);
}

/* ——— IMAGE AREA (no badge inside) ——— */
.combo-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-100);
  flex-shrink: 0;
}
.combo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.combo-card:hover .combo-card-img {
  transform: scale(1.07);
}
.combo-card-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--grey-400);
}

/* ——— HOVER OVERLAY ——— */
.combo-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.combo-card:hover .combo-card-hover-overlay { opacity: 1; }
.combo-card-tap-hint {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateY(6px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.combo-card:hover .combo-card-tap-hint { transform: translateY(0); }

/* ——— CARD BODY ——— */
.combo-card-body {
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}
.combo-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 0;
}
.combo-card-desc {
  font-size: 12px;
  color: var(--grey-600);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* ——— CARD FOOTER: price group + circle button ——— */
.combo-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 11px;
  border-top: 1px solid var(--grey-100);
}

/* Price group: price row + save badge stacked */
.combo-card-price-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.combo-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.combo-card-price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1;
}
.combo-card-compare {
  font-size: 12px;
  color: var(--grey-400);
  text-decoration: line-through;
  font-weight: 500;
}

/* Save badge — sits below price, no longer on image */
.combo-save-badge {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #bbf7d0;
  letter-spacing: 0.2px;
  width: fit-content;
}

/* ——— PERFECT CIRCLE ADD BUTTON (card) ——— */
.combo-add-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  transition: background 0.2s ease,
              transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease;
  padding: 0;
  line-height: 1;
}
.combo-add-circle i {
  font-size: 17px;
  display: block;
  line-height: 1;
}
.combo-add-circle:hover {
  background: #222;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}
.combo-add-circle:active { transform: scale(0.95); }

/* ——— MODAL FULL-WIDTH ADD BUTTON ——— */
.combo-add-btn-full {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s ease,
              transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  letter-spacing: -0.1px;
}
.combo-add-btn-full i { font-size: 18px; flex-shrink: 0; }
.combo-add-btn-full:hover {
  background: #1a1a1a;
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.combo-add-btn-full:active { transform: scale(0.98); }

/* ——— PRODUCT VIEW MODAL ——— */
.product-view-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.product-view-overlay.open { opacity: 1; pointer-events: all; }

.product-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 1600;
  background: var(--white);
  border-radius: 28px;
  width: 90vw;
  max-width: 840px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.28), 0 0 0 1px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}
.product-view-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* Close X button — perfect circle */
.product-view-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}
.product-view-close:hover {
  background: var(--black);
  transform: rotate(90deg) scale(1.05);
}

.product-view-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  max-height: 90vh;
}

/* Image side — strict 1:1 via self-alignment trick */
.product-view-image-side {
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Force 1:1 using a pseudo-element */
.product-view-image-side::before {
  content: '';
  display: block;
  padding-top: 100%;
  float: left;
}
.product-view-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-view-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--grey-400);
}

/* Body / right side */
.product-view-body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.product-view-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
/* Prices row: price + strikethrough + green pill */
.product-view-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.product-view-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}
.product-view-compare {
  font-size: 15px;
  color: var(--grey-400);
  text-decoration: line-through;
  font-weight: 500;
}
/* Save pill — same light green as card badge */
.product-view-save-pill {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid #bbf7d0;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.product-view-divider {
  height: 1px;
  background: var(--grey-100);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.product-view-desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  overflow-y: auto;
}
.product-view-desc p { margin-bottom: 8px; }
.product-view-desc strong,
.product-view-desc b { font-weight: 700; color: var(--black); }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .combos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .combos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .combo-card-name  { font-size: 14px; }
  .combo-card-price { font-size: 17px; }
  .combo-add-circle { width: 36px; height: 36px; min-width: 36px; min-height: 36px; }
  .combo-add-circle i { font-size: 15px; }

  .product-view-inner { grid-template-columns: 1fr; }
  .product-view-image-side::before { padding-top: 75%; }
  .product-view-body { padding: 22px 20px 28px; }
  .product-view-name  { font-size: 20px; }
  .product-view-price { font-size: 24px; }
}

@media (max-width: 480px) {
  .combos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .combo-card-body  { padding: 11px 11px 13px; }
  .combo-card-name  { font-size: 13.5px; }
  .combo-card-price { font-size: 16px; }
  .product-view-modal { width: 96vw; border-radius: 20px; }
  .product-view-image-side::before { padding-top: 70%; }
}

/* ============================================================
   END COMBO CARD REDESIGN
   ============================================================ */
/* ============================================================
   CATEGORY CIRCLES — animation states
   ============================================================ */
.category-carousel-section {
  overflow: visible;
}
.category-carousel-viewport {
  overflow-x: scroll !important;
  overflow-y: visible !important;
  padding: 16px 0 32px !important;
}
.category-carousel {
  display: flex !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
/* Hidden until GSAP animates them in */
.category-circle {
  opacity: 0 !important;
  transform: scale(0) !important;
  transition: none !important;
  animation: none !important;
  will-change: transform, opacity;
}
/* Post-animation state — GSAP clears inline props then this class takes over */
.category-circle.cat-done {
  opacity: 1 !important;
  transform: scale(1) !important;
  animation: none !important;
  will-change: auto !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
}
.category-circle.cat-done:hover {
  transform: translateY(-4px) !important;
}
.category-circle.cat-done.active {
  transform: scale(1) !important;
}
.category-circle.cat-done.active .category-circle-icon {
  border: 1px solid rgba(0,0,0,0.25) !important;
  box-shadow: none !important;
}
.category-circle.cat-done .category-circle-icon {
  transition: border-color 0.3s ease !important;
  transform: none !important;
}
@media (max-width: 768px) {
  .category-carousel {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* ══════════════════════════════════════════════════════════════════════════
   CUSTOM HERO SLIDER  (.cc-*)
   ══════════════════════════════════════════════════════════════════════════ */
:root {
  --bottom-nav-h:  72px;
  --top-chrome-h:  100px; /* announcement 40px + sticky header 60px */
}

#craving-crow-hero {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #0f0819;
  transition: background 800ms cubic-bezier(.4,0,.2,1);
}

.cc-hero-wrap {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

/* ── slides ── */
.cc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.cc-slide.cc-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  min-height: 100%;
  height: 100%;
}
.cc-slide.cc-leaving {
  opacity: 0;
  position: absolute;
}

.cc-radial-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── slide content layout ── */
.cc-slide-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  flex: 1;
  gap: clamp(12px,4vw,48px);
  padding: clamp(88px,10vw,120px) clamp(24px,6vw,80px) clamp(80px,9vw,110px);
}

/* ── left column ── */
.cc-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  color: #fff;
  z-index: 10;
}
.cc-cat-pill {
  font-size: clamp(9px,1vw,11px);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .72;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cc-cat-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .85;
  flex-shrink: 0;
}
.cc-title {
  font-family: 'Clash Display', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(38px,7vw,96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #fff;
  margin: 0;
}
.cc-desc {
  font-size: clamp(13px,1.3vw,17px);
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}
.cc-price {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px,3.5vw,52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.cc-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cc-btn-cart {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: clamp(11px,1.4vw,15px) clamp(20px,2.8vw,32px);
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(12px,1.2vw,15px);
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.cc-btn-cart:hover { transform: scale(1.05) translateY(-1px); box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.cc-btn-cart:active { transform: scale(.97); }
.cc-btn-menu {
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 50px;
  padding: clamp(11px,1.4vw,15px) clamp(20px,2.8vw,32px);
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(12px,1.2vw,15px);
  letter-spacing: .04em;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.cc-btn-menu:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.cc-btn-menu:active { transform: scale(.97); }

/* ── right column ── */
.cc-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(260px,42vw,560px);
}
.cc-ring {
  display: none;
}
.cc-radial-inner {
  position: absolute;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  z-index: 4;
}
.cc-product-img {
  position: relative;
  z-index: 10;
  width: clamp(220px,40vw,520px);
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.4));
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity, filter;
  image-rendering: -webkit-optimize-contrast;
}
.cc-ing {
  will-change: transform, opacity, filter;
}
.cc-product-placeholder {
  width: clamp(160px,26vw,360px); aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  z-index: 10; position: relative;
}

/* ── controls bar ── */
.cc-controls {
  position: absolute;
  bottom: clamp(18px,2.8vh,36px);
  left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  pointer-events: auto;
}
.cc-dot {
  width: 10px; height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .3s, background .3s, box-shadow .3s;
}
.cc-dot.cc-dot-active {
  width: 32px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 12px rgba(255,255,255,.5);
}

/* ── GSAP handles all product/ingredient float & pop animations ── */

/* ── T1 Desktop: short viewport height fixes ── */
@media (min-width: 1024px) and (max-height: 899px) {
  .cc-slide-inner {
    padding-top:    clamp(88px, 8vw, 106px);
    padding-bottom: clamp(40px, 5vw,  64px);
  }
}
@media (min-width: 1024px) and (max-height: 749px) {
  .cc-slide-inner {
    padding-top:    clamp(80px, 7vw, 96px);
    padding-bottom: clamp(30px, 4vw, 48px);
  }
  .cc-title { font-size: clamp(26px, 4.2vw, 52px) !important; }
  .cc-desc  { font-size: 13px !important; -webkit-line-clamp: 2; }
  .cc-price { font-size: clamp(18px, 2.4vw, 28px) !important; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  /* Fixed height = viewport minus top chrome and bottom nav; no overflow */
  .cc-hero-wrap {
    height: calc(100svh - var(--top-chrome-h) - var(--bottom-nav-h) - env(safe-area-inset-bottom, 0px));
    min-height: 480px;
    overflow: hidden;
  }
  /* All slides are absolute so the hero-wrap height is the sole size source */
  .cc-slide {
    height: 100%;
  }
  .cc-slide.cc-active {
    position: absolute;
    height: 100%;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
  }
  /* Inner layout fills the fixed slide height */
  .cc-slide-inner {
    flex-direction:  column;
    /* side padding unchanged; bottom pad reserves space for absolute dots */
    padding:         clamp(10px,2.5vw,18px) clamp(16px,4.5vw,28px)
                     clamp(48px,8vh,64px)   clamp(16px,4.5vw,28px);
    gap:             clamp(8px,1.8vw,14px);
    /* space-between: image anchors to top, text block anchors to bottom.
       This eliminates the dead gap between buttons and dots. */
    justify-content: space-between;
    height:          100%;
    box-sizing:      border-box;
  }
  .cc-left  { order: 2; text-align: center; align-items: center; max-width: 100%; flex-shrink: 1; min-height: 0; }
  /* Product image: taller so image fills more of the top half */
  .cc-right { order: 1; height: clamp(200px,56vw,300px); min-height: unset; width: 100%; flex-shrink: 0; overflow: visible; }
  .cc-title { font-size: clamp(26px,8.5vw,44px); letter-spacing: -1px; }
  .cc-desc  { font-size: clamp(11px,3.1vw,14px); }
  .cc-btns  { justify-content: center; gap: 8px; flex-wrap: wrap; }
  /* Dots sit near hero bottom — no extra 72px offset needed (wrapper already ends above nav) */
  .cc-controls {
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
}

/* Extra-small phones */
@media (max-width: 400px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card  { font-size: 13px; }
  .site-header   { left: 0; right: 0; }
  .container     { padding: 0 14px; }
}

/* 320px ultra-small */
@media (max-width: 340px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-card-name  { font-size: 12px; }
  .product-card-price { font-size: 13px; }
  .bottom-nav-item { padding: 5px 7px 4px; }
  .bottom-nav-item span { font-size: 8px; max-width: 50px; }
  .site-header { left: 6px; right: 6px; padding: 6px 6px 6px 14px; }
}

/* ——— HERO BACKGROUND IMAGE OVERLAY ——— */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.slider-outer { position: relative; }
.hs-outer { position: relative; }

/* ── Desktop: hide category bottom-nav ── */
@media (min-width: 768px) {
  .bottom-nav { display: none !important; }
}

/* ── Combo Promo Strip ── */
.combo-promo-strip {
  background: linear-gradient(135deg, #1a0533 0%, #6B21A8 100%);
  padding: 22px 0;
}
.combo-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.combo-promo-left { display: flex; flex-direction: column; }
.combo-promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  width: fit-content;
}
.combo-promo-heading {
  color: #fff;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  margin: 0 0 4px;
  font-family: var(--font-display);
  line-height: 1.2;
}
.combo-promo-sub {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  margin: 0;
}
.combo-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #6B21A8;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.combo-promo-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
@media (max-width: 640px) {
  .combo-promo-inner { flex-direction: column; align-items: flex-start; }
  .combo-promo-cta { align-self: flex-start; }
}

/* ── Mobile: all hero sliders stop above bottom nav & below top chrome ── */
@media (max-width: 767px) {
  /* T1 (override to fixed height matching other templates) */
  .cc-hero-wrap {
    height: calc(100svh - var(--top-chrome-h) - var(--bottom-nav-h) - env(safe-area-inset-bottom, 0px)) !important;
    min-height: 480px !important;
    overflow: hidden !important;
  }
  /* T2 */
  #crisp-slider-root {
    height: calc(100svh - var(--top-chrome-h) - var(--bottom-nav-h) - env(safe-area-inset-bottom, 0px)) !important;
    min-height: 480px !important;
    overflow: hidden !important;
  }
  /* Make inner T2 slider fill the constrained container so dots aren't clipped */
  #crisp-slider-root .t2-slider {
    height: 100% !important;
    min-height: 0 !important;
  }
  /* Re-centre dots within the now-correct height */
  #crisp-slider-root .t2-nav {
    bottom: clamp(18px, 2.8vh, 32px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
  }
  /* T3 */
  .slider-outer {
    height: calc(100svh - var(--top-chrome-h) - var(--bottom-nav-h) - env(safe-area-inset-bottom, 0px)) !important;
    min-height: 480px !important;
    overflow: hidden !important;
  }
  /* T4 */
  .hs-root {
    height: calc(100svh - var(--top-chrome-h) - var(--bottom-nav-h) - env(safe-area-inset-bottom, 0px)) !important;
    min-height: 480px !important;
    overflow: hidden !important;
  }
  /* T5 */
  #hero-slider.hs-outer {
    height: calc(100svh - var(--top-chrome-h) - var(--bottom-nav-h) - env(safe-area-inset-bottom, 0px)) !important;
    min-height: 480px !important;
    overflow: hidden !important;
  }
}
