* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  background: #fafafa;
  color: #222;
}

header {
  padding: 16px;
  text-align: center;
  background: white;
  border-bottom: 1px solid #eee;
}

header h1 {
  font-size: 20px;
  font-weight: 600;
}

header p {
  font-size: 13px;
  color: #666;
}

.brand img {
  max-width: 140px;
  margin-bottom: 6px;
}


nav {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}

nav button {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  font-size: 14px;
  white-space: nowrap;
}

nav button.active {
  background: #222;
  color: white;
}

main {
  padding: 12px;
}

.item {
  display: flex;
  gap: 12px;
  background: white;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.item img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f0f0;
}

.item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.item p {
  font-size: 13px;
  color: #666;
}

.price {
  margin-top: 6px;
  font-weight: 600;
}

.cal {
  font-size: 12px;
  color: #999;
}

.search-box {
  padding: 10px;
  background: white;
}

.search-box input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.cal {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

.subgroup {
  margin-bottom: 14px;
}

.subgroup-header {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.subgroup-header img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}


.chevron {
  font-size: 16px;
  color: #666;
}


.flavours {
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}

.flavour-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.flavour-line {
  line-height: 1.4;
}

footer.info {
  padding: 14px 12px;
  font-size: 12px;
  color: #666;
  background: #fafafa;
}

.badge {
  background: #fff3cd;
  color: #856404;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
  font-weight: 600;
}

.spice {
  font-size: 12px;
  margin-top: 2px;
}

.addons {
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}

.addon-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.subgroup-items {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.subgroup-items.open {
  max-height: 2000px; /* large enough for content */
  opacity: 1;
}


.subgroup-header {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* CONTROL COVER IMAGE SIZE HERE */
.subgroup-header img {
  width: 100%;
  height: 160px;          /* 👈 THIS FIXES "TOO BIG" */
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY + CENTERED CONTENT */
.subgroup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.35)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* TITLE TEXT */
.subgroup-overlay h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* CHEVRON */
.subgroup-overlay .chevron {
  color: #fff;
  font-size: 18px;
}


/* Placeholder when no cover image exists */
.subgroup-placeholder {
  width: 100%;
  height: 100px;
  background: #f3f3f3;
}


.subgroup-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.category-tabs {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  overflow-x: auto;
}

.category-tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-tab.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.category-tab:not(.active):hover {
  background: #f5f5f5;
}



.social-proof {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 18px;
  flex-wrap: wrap;
}

/* Individual pill toggles */
.social-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  transition: all 0.2s ease;
}

.social-toggle:hover {
  background: #f7f7f7;
}

/* Icons */
.social-toggle .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Brand colors */
.social-toggle.instagram .icon {
  color: #0b0b0b;
}

.social-toggle.google .icon {
  color: #010101;
}

/* Numbers */
.social-toggle .meta {
  margin-left: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1a7f37; /* subtle premium green */
}

/* REMOVE BACKGROUND BAND UNDER LOGO + SOCIAL */
.header,
.top-section,
.hero {
  background: transparent !important;
}

.social-proof {
  background: transparent !important;
}

/* Tap bounce animation */
.social-toggle:active {
  transform: scale(0.96);
}

.social-toggle {
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}



/* HARD ISOLATION FIX */
.social-section {
  background: #fff !important;
  position: relative;
  z-index: 5;
  padding: 12px 0;
}

/* Kill any inherited visuals */
.social-section::before,
.social-section::after {
  display: none !important;
  content: none !important;
}

.social-proof {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Absolute reset for children */
.social-proof,
.social-proof * {
  background-color: transparent !important;
}


/* Festive / Announcement Banner */
.banner {
  max-width: 720px;
  margin: 12px auto 18px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* Festive style */
.banner.festive {
  background: linear-gradient(135deg, #fff7ec, #fff1dc);
  color: #7c8a00;
  border: 1px solid rgba(240, 180, 93, 0.4);
}

/* Info style */
.banner.info {
  background: #f3f8ff;
  color: #0b4aa2;
  border: 1px solid #d6e6ff;
}

/* Alert style */
.banner.alert {
  background: #fff0f0;
  color: #8b0000;
  border: 1px solid #ffc7c7;
}





