/*
Theme Name: Chicken Tonight Express
Theme URI: https://chickentonight.ug
Author: Chicken Tonight Uganda
Author URI: https://chickentonight.ug
Description: Uganda's #1 fried chicken delivery - Full-featured food ordering WordPress theme with cart, menu, checkout, and manager dashboard. Pixel-perfect port of the Chicken Tonight Express React app.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chicken-tonight
Tags: food, restaurant, ordering, woocommerce, delivery, ecommerce
*/

/* ============================
   CSS CUSTOM PROPERTIES (Design Tokens)
   Matching the original React app exactly
   ============================ */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 8%);

  --card: hsl(0, 0%, 97%);
  --card-foreground: hsl(0, 0%, 8%);

  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(0, 0%, 8%);

  --primary: hsl(48, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 8%);

  --secondary: hsl(0, 0%, 8%);
  --secondary-foreground: hsl(0, 0%, 100%);

  --muted: hsl(0, 0%, 94%);
  --muted-foreground: hsl(0, 0%, 40%);

  --accent: hsl(45, 100%, 55%);
  --accent-foreground: hsl(0, 0%, 8%);

  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 100%);

  --border: hsl(0, 0%, 88%);
  --input: hsl(0, 0%, 88%);
  --ring: hsl(48, 100%, 50%);

  --radius: 1rem;

  --gradient-brand: linear-gradient(135deg, hsl(48, 100%, 50%), hsl(45, 100%, 60%));
  --gradient-dark: linear-gradient(135deg, hsl(0, 0%, 8%), hsl(0, 0%, 15%));
  --shadow-glow: 0 0 30px hsla(48, 100%, 50%, 0.3);
  --shadow-card: 0 8px 32px hsla(0, 0%, 0%, 0.08);

  --navbar-height: 64px;
}

@media (min-width: 768px) {
  :root {
    --navbar-height: 80px;
  }
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================
   CONTAINER
   ============================ */
.ct-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .ct-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .ct-container { padding-left: 2rem; padding-right: 2rem; }
}

/* ============================
   UTILITY CLASSES
   ============================ */
.text-gradient-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-heading { font-size: 3rem; }
}

/* ============================
   BUTTONS
   ============================ */
.btn-fire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  font-weight: 700;
  text-decoration: none;
}

.btn-fire:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.05);
  color: var(--primary-foreground);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
}

.btn-dark:hover {
  transform: scale(1.05);
  color: var(--secondary-foreground);
}

.btn-fire:disabled,
.btn-dark:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ============================
   CARD FOOD
   ============================ */
.card-food {
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.card-food:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px hsla(48, 100%, 50%, 0.15);
}

/* ============================
   BADGE DEAL
   ============================ */
.badge-deal {
  display: inline-block;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================
   NAVBAR
   ============================ */
.ct-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.ct-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .ct-navbar__inner { height: 80px; }
}

.ct-navbar__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

@media (min-width: 768px) {
  .ct-navbar__logo { font-size: 1.875rem; }
}

.ct-navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ct-navbar__links { display: flex; }
}

.ct-navbar__links a,
.ct-navbar__links button {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.ct-navbar__links a:hover,
.ct-navbar__links button:hover {
  color: var(--foreground);
}

.ct-navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ct-navbar__branch-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.ct-navbar__branch-btn:hover { color: var(--foreground); }

.ct-navbar__cart-btn {
  position: relative;
  padding: 0.5rem;
  border-radius: 9999px;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-navbar__cart-btn:hover { background: hsla(48, 100%, 50%, 0.2); }

.ct-navbar__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .ct-navbar__hamburger { display: none; }
}

/* Mobile Menu */
.ct-mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.ct-mobile-menu.is-open { display: block; }

.ct-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}

.ct-mobile-menu a,
.ct-mobile-menu button {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ct-mobile-menu a:hover,
.ct-mobile-menu button:hover { color: var(--foreground); }

.ct-mobile-menu .sign-in-link { color: var(--primary); }

/* ============================
   HERO SLIDER
   ============================ */
.ct-hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
  margin-top: var(--navbar-height);
}

@media (min-width: 768px) {
  .ct-hero { height: 100vh; }
}

.ct-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.1);
}

.ct-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.ct-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0, 0%, 8%) 0%, hsla(0, 0%, 8%, 0.7) 50%, hsla(0, 0%, 8%, 0.2) 100%);
}

.ct-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .ct-hero__content { padding-bottom: 8rem; }
}

.ct-hero__text {
  max-width: 42rem;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.ct-hero__slide.is-active .ct-hero__text {
  opacity: 1;
  transform: translateY(0);
}

.ct-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}

@media (min-width: 768px) { .ct-hero__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .ct-hero__title { font-size: 5rem; } }

.ct-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 32rem;
}

@media (min-width: 768px) { .ct-hero__subtitle { font-size: 1.25rem; } }

.ct-hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.ct-hero__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: hsla(0, 0%, 100%, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.ct-hero__dot.is-active {
  background: var(--primary);
  width: 2rem;
}

.ct-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0.5rem;
  border-radius: 9999px;
  background: hsla(0, 0%, 100%, 0.5);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}

@media (min-width: 768px) { .ct-hero__arrow { display: flex; } }

.ct-hero__arrow:hover { background: hsla(48, 100%, 50%, 0.2); }
.ct-hero__arrow--prev { left: 1rem; }
.ct-hero__arrow--next { right: 1rem; }

/* ============================
   CATEGORIES SECTION
   ============================ */
.ct-categories {
  padding: 4rem 0;
  background: var(--background);
}

@media (min-width: 768px) { .ct-categories { padding: 6rem 0; } }

.ct-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .ct-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ct-cat-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  display: block;
  text-decoration: none;
}

.ct-cat-card--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (min-width: 768px) {
  .ct-cat-card--wide {
    grid-column: span 1;
    aspect-ratio: 1/1;
  }
}

.ct-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.ct-cat-card:hover img { transform: scale(1.1); }

.ct-cat-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.ct-cat-card:hover .ct-cat-card__overlay { opacity: 0.8; }

.ct-cat-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.ct-cat-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .ct-cat-card__content { padding: 1.25rem; }
}

.ct-cat-card__emoji {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  display: block;
}

@media (min-width: 768px) { .ct-cat-card__emoji { font-size: 1.875rem; } }

.ct-cat-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

@media (min-width: 768px) { .ct-cat-card__name { font-size: 1.5rem; } }

.ct-cat-card__meta {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 768px) { .ct-cat-card__meta { font-size: 0.875rem; } }

.ct-cat-card__arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #fff;
  font-size: 0.875rem;
}

.ct-cat-card:hover .ct-cat-card__arrow { opacity: 1; }

/* ============================
   HOT DEALS
   ============================ */
.ct-hot-deals {
  padding: 4rem 0;
  background: hsla(0, 0%, 94%, 0.3);
}

@media (min-width: 768px) { .ct-hot-deals { padding: 6rem 0; } }

.ct-hot-deals__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ct-hot-deals__grid { grid-template-columns: repeat(3, 1fr); }
}

.ct-deal-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ct-deal-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px hsla(48, 100%, 50%, 0.15);
}

.ct-deal-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.ct-deal-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ct-deal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-deal-card__body {
  padding: 1.25rem;
}

.ct-deal-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ct-deal-card__desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.ct-deal-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-deal-card__prices {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ct-deal-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-deal-card__old-price {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 0.875rem;
}

/* ============================
   HOW TO ORDER
   ============================ */
.ct-how-to-order {
  padding: 4rem 0;
}

@media (min-width: 768px) { .ct-how-to-order { padding: 6rem 0; } }

.ct-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ct-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.ct-step {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.ct-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ct-step__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: hsla(48, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) { .ct-step__icon { width: 5rem; height: 5rem; } }

.ct-step__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  stroke: var(--primary);
}

@media (min-width: 768px) { .ct-step__icon svg { width: 2.5rem; height: 2.5rem; } }

.ct-step__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.ct-step__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ct-step__desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ============================
   FEATURED PRODUCTS
   ============================ */
.ct-featured {
  padding: 4rem 0;
}

@media (min-width: 768px) { .ct-featured { padding: 6rem 0; } }

.ct-featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .ct-featured__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.ct-product-card {
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.ct-product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px hsla(48, 100%, 50%, 0.15);
}

.ct-product-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.ct-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ct-product-card:hover .ct-product-card__image img { transform: scale(1.1); }

.ct-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-product-card:hover .ct-product-card__overlay { opacity: 1; }

.ct-product-card__overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
}

.ct-product-card__body {
  padding: 1rem;
}

.ct-product-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ct-product-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-product-card__add {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.ct-product-card__add:hover { transform: scale(1.1); }

/* ============================
   WHY CHOOSE US & FEEDBACK
   ============================ */
.ct-feedback {
  padding: 4rem 0;
  background: hsla(0, 0%, 94%, 0.3);
}

@media (min-width: 768px) { .ct-feedback { padding: 6rem 0; } }

.ct-feedback__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ct-feedback__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.ct-why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-why-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
}

.ct-feedback-form {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) { .ct-feedback-form { padding: 2rem; } }

.ct-feedback-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.ct-form__field {
  margin-bottom: 1rem;
}

.ct-form__input {
  width: 100%;
  background: var(--muted);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.2s;
  outline: none;
}

.ct-form__input:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.ct-form__input::placeholder { color: var(--muted-foreground); }

.ct-form__textarea {
  resize: none;
  min-height: 80px;
}

.ct-star-rating {
  display: flex;
  gap: 0.25rem;
}

.ct-star-rating__star {
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted-foreground);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.1s;
  line-height: 1;
}

.ct-star-rating__star.is-active,
.ct-star-rating__star.is-hover {
  color: var(--accent);
}

/* ============================
   TESTIMONIALS
   ============================ */
.ct-testimonials {
  padding: 4rem 0;
}

@media (min-width: 768px) { .ct-testimonials { padding: 6rem 0; } }

.ct-testimonials__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ct-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.ct-testimonial-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.ct-testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.ct-testimonial-card__stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  stroke: var(--accent);
}

.ct-testimonial-card__text {
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1rem;
}

.ct-testimonial-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

/* ============================
   FOOTER
   ============================ */
.ct-footer {
  background: hsla(0, 0%, 94%, 0.5);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

@media (min-width: 768px) { .ct-footer { padding: 4rem 0; } }

.ct-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .ct-footer__grid { grid-template-columns: repeat(4, 1fr); }
}

.ct-footer__brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .ct-footer__brand { grid-column: span 1; }
}

.ct-footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1rem;
}

.ct-footer__tagline {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.ct-footer__col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.ct-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ct-footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.ct-footer__list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ct-footer__list li a:hover { color: var(--foreground); }

.ct-footer__list svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ============================
   STICKY CTA (Mobile)
   ============================ */
.ct-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  display: flex;
}

@media (min-width: 768px) { .ct-sticky-cta { display: none; } }

.ct-sticky-cta button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: var(--secondary-foreground);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
}

/* Floating Cart (Desktop) */
.ct-floating-cart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 9999px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s;
}

@media (min-width: 768px) { .ct-floating-cart { display: flex; } }

.ct-floating-cart:hover { transform: scale(1.1); }

/* ============================
   BRANCH SELECTOR MODAL
   ============================ */
.ct-branch-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

@media (min-width: 640px) {
  .ct-branch-modal { align-items: center; padding: 1rem; }
}

.ct-branch-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.ct-branch-modal__inner {
  background: var(--background);
  width: 100%;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

@media (min-width: 640px) {
  .ct-branch-modal__inner {
    max-width: 28rem;
    border-radius: 1.5rem;
    transform: translateY(50px);
  }
}

.ct-branch-modal.is-open .ct-branch-modal__inner {
  transform: translateY(0);
}

.ct-branch-modal__header {
  position: relative;
  background: var(--secondary);
  padding: 1.5rem;
  text-align: center;
}

.ct-branch-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}

.ct-branch-modal__close:hover { background: rgba(255,255,255,0.2); }

.ct-branch-modal__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: hsla(48, 100%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.ct-branch-modal__icon svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--primary);
}

.ct-branch-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.25rem;
}

.ct-branch-modal__subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.ct-branch-modal__list {
  padding: 1rem;
  max-height: 50vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ct-branch-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: none;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.ct-branch-btn:hover {
  border-color: hsla(48, 100%, 50%, 0.4);
  background: var(--muted);
}

.ct-branch-btn.is-selected {
  border-color: var(--primary);
  background: hsla(48, 100%, 50%, 0.05);
}

.ct-branch-btn__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.ct-branch-btn.is-selected .ct-branch-btn__icon {
  background: var(--primary);
}

.ct-branch-btn__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--muted-foreground);
}

.ct-branch-btn.is-selected .ct-branch-btn__icon svg {
  stroke: var(--primary-foreground);
}

.ct-branch-btn__name {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  color: var(--foreground);
}

.ct-branch-btn__address {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ct-branch-btn__check {
  margin-left: auto;
  color: var(--primary);
  font-size: 1.125rem;
  display: none;
}

.ct-branch-btn.is-selected .ct-branch-btn__check { display: block; }

.ct-branch-modal__footer {
  padding: 1rem;
  padding-top: 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* ============================
   CART DRAWER
   ============================ */
.ct-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.ct-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ct-cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 50;
  width: 100%;
  max-width: 28rem;
  background: var(--background);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.ct-cart-drawer.is-open {
  transform: translateX(0);
}

.ct-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.ct-cart-drawer__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.ct-cart-drawer__count {
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
  font-family: 'Inter', sans-serif;
}

.ct-cart-drawer__close {
  padding: 0.5rem;
  border-radius: 9999px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-cart-drawer__close:hover { background: var(--muted); }

.ct-cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}

.ct-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  text-align: center;
}

.ct-cart-empty svg {
  width: 3rem;
  height: 3rem;
  color: var(--muted-foreground);
  stroke: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.ct-cart-empty p { color: var(--muted-foreground); }

.ct-cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-cart-item {
  display: flex;
  gap: 0.75rem;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
}

.ct-cart-item__image {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.ct-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-cart-item__info {
  flex: 1;
  min-width: 0;
}

.ct-cart-item__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-cart-item__extras {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.ct-cart-item__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.ct-cart-item__remove {
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
}

.ct-cart-item__remove:hover { color: var(--destructive); }

.ct-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ct-qty-btn {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--muted);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ct-qty-btn--add {
  background: var(--primary);
}

.ct-qty-btn:hover { opacity: 0.8; }

.ct-qty-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  width: 1.25rem;
  text-align: center;
}

.ct-cart-drawer__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-cart-total__label { color: var(--muted-foreground); }

.ct-cart-total__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-cart-clear {
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.ct-cart-clear:hover { color: var(--destructive); }

/* ============================
   QUICK VIEW MODAL
   ============================ */
.ct-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.ct-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ct-modal {
  background: var(--background);
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transform: scale(0.9);
  transition: transform 0.3s;
}

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

.ct-modal__image {
  position: relative;
  aspect-ratio: 16/9;
}

.ct-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-modal__kids-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #ec4899;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
}

.ct-modal__body {
  padding: 1.5rem;
}

.ct-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ct-modal__desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.ct-modal__kids-info {
  background: #fdf2f8;
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #9d174d;
}

.ct-modal__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-modal__price--kids {
  background: none;
  -webkit-text-fill-color: #ec4899;
  color: #ec4899;
}

.ct-modal__extras-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.ct-modal__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ct-extra-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--muted);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}

.ct-extra-btn.is-selected {
  border-color: var(--primary);
  background: hsla(48, 100%, 50%, 0.1);
  color: var(--foreground);
}

/* ============================
   MENU PAGE
   ============================ */
.ct-menu-page {
  min-height: 100vh;
  background: var(--background);
  padding-top: var(--navbar-height);
}

.ct-menu-header {
  padding: 2rem 0;
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.ct-menu-header--kids {
  background: linear-gradient(to right, #ec4899, #a855f7, #6366f1);
}

.ct-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: color 0.2s;
  text-decoration: none;
}

.ct-back-btn:hover { color: #fff; }

.ct-menu-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: #fff;
}

@media (min-width: 768px) { .ct-menu-title { font-size: 3rem; } }

.ct-menu-title span { color: var(--primary); }

.ct-menu-kids-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.ct-category-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ct-category-filters::-webkit-scrollbar { display: none; }

.ct-cat-filter-btn {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  background: var(--muted);
  color: var(--muted-foreground);
  transition: background 0.2s, color 0.2s;
}

.ct-cat-filter-btn.is-active {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.ct-cat-filter-btn.is-active--kids {
  background: linear-gradient(to right, #ec4899, #a855f7);
  color: #fff;
}

.ct-kids-banner {
  background: linear-gradient(to right, #fce7f3, #f3e8ff);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border: 2px dashed #f9a8d4;
}

.ct-kids-banner__emojis {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.ct-kids-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ct-kids-banner p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.ct-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) { .ct-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ct-products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.ct-menu-product-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.ct-menu-product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

.ct-menu-product-card--kids {
  border-color: #fbcfe8;
  background: linear-gradient(to bottom, #fdf2f8, #faf5ff);
}

.ct-menu-product-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ct-menu-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ct-menu-product-card:hover .ct-menu-product-card__image img {
  transform: scale(1.1);
}

.ct-menu-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-menu-product-card:hover .ct-menu-product-card__overlay { opacity: 1; }

.ct-menu-product-card__overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
}

.ct-kids-product-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #ec4899;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.ct-menu-product-card__body {
  padding: 1rem;
}

.ct-menu-product-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-menu-product-card__desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ct-menu-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-menu-product-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-menu-product-card__price--kids {
  background: none;
  -webkit-text-fill-color: #ec4899;
  color: #ec4899;
}

.ct-menu-product-card__add {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  background: var(--primary);
  color: var(--primary-foreground);
}

.ct-menu-product-card__add--kids {
  background: #ec4899;
  color: #fff;
}

.ct-menu-product-card__add:hover { transform: scale(1.1); }

.ct-floating-order-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
}

.ct-floating-order-btn:hover { transform: scale(1.05); }

/* ============================
   AUTH PAGE
   ============================ */
.ct-auth-page {
  min-height: 100vh;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ct-auth-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 28rem;
}

.ct-auth-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  text-align: center;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.ct-auth-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.ct-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-form__input-wrap {
  position: relative;
}

.ct-form__input-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--muted-foreground);
}

.ct-form__input-wrap .ct-form__input {
  padding-left: 2.75rem;
}

.ct-auth-toggle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

.ct-auth-toggle button {
  color: var(--primary);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
}

.ct-auth-toggle button:hover { text-decoration: underline; }

/* ============================
   CHECKOUT PAGE
   ============================ */
.ct-checkout-page {
  min-height: 100vh;
  background: var(--background);
}

.ct-checkout-header {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 2rem 0;
}

.ct-checkout-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .ct-checkout-grid { grid-template-columns: 1fr 1fr; }
}

.ct-checkout-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ct-checkout-section h2 svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary);
}

.ct-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-checkout-select {
  width: 100%;
  background: var(--muted);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.ct-checkout-select:focus { box-shadow: 0 0 0 2px var(--primary); }

.ct-payment-box {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.ct-sign-in-notice {
  background: hsla(48, 100%, 50%, 0.1);
  border: 1px solid hsla(48, 100%, 50%, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
}

.ct-sign-in-notice a { color: var(--primary); font-weight: 600; }

.ct-order-summary {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--navbar-height) + 1rem);
}

.ct-order-summary h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.ct-order-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ct-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.ct-order-item__name { flex: 1; }
.ct-order-item__extras { font-size: 0.75rem; color: var(--muted-foreground); }
.ct-order-item__price { white-space: nowrap; }

.ct-order-total {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-order-total__label {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.ct-order-total__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================
   ORDER SUCCESS
   ============================ */
.ct-order-success {
  min-height: 100vh;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ct-order-success__content {
  text-align: center;
  max-width: 28rem;
}

.ct-order-success__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: hsla(48, 100%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.ct-order-success__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--primary);
}

.ct-order-success h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.ct-order-success p { color: var(--muted-foreground); margin-bottom: 0.5rem; }

.ct-order-success__btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) { .ct-order-success__btns { flex-direction: row; } }

/* ============================
   DASHBOARD PAGE
   ============================ */
.ct-dashboard {
  min-height: 100vh;
  background: var(--background);
  padding-top: var(--navbar-height);
}

.ct-dashboard__header {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 2rem 0;
}

.ct-dashboard__user {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.ct-dashboard__body {
  padding: 2rem 0;
}

.ct-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-order-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.ct-order-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ct-order-card__id {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.ct-order-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
}

.ct-order-status--pending { background: hsla(48, 100%, 50%, 0.15); color: #92400e; }
.ct-order-status--confirmed { background: hsla(217, 91%, 60%, 0.15); color: #1e40af; }
.ct-order-status--preparing { background: hsla(262, 83%, 58%, 0.15); color: #6d28d9; }
.ct-order-status--on_the_way { background: hsla(158, 64%, 52%, 0.15); color: #065f46; }
.ct-order-status--delivered { background: hsla(142, 71%, 45%, 0.15); color: #166534; }
.ct-order-status--cancelled { background: hsla(0, 84%, 60%, 0.15); color: #991b1b; }

/* ============================
   MANAGER DASHBOARD
   ============================ */
.ct-manager {
  min-height: 100vh;
  background: var(--background);
  padding-top: var(--navbar-height);
}

.ct-manager-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding: 0 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.ct-manager-tabs::-webkit-scrollbar { display: none; }

.ct-manager-tab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 1rem 1.25rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted-foreground);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.ct-manager-tab.is-active {
  color: var(--foreground);
  border-bottom-color: var(--primary);
}

.ct-manager-tab:hover { color: var(--foreground); }

/* Stats Grid */
.ct-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .ct-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.ct-stat-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.ct-stat-card__label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.ct-stat-card__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================
   NOT FOUND PAGE
   ============================ */
.ct-not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: var(--background);
}

.ct-not-found h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.ct-not-found p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px hsla(48, 100%, 50%, 0.3); }
  50% { box-shadow: 0 0 40px hsla(48, 100%, 50%, 0.6); }
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

/* ============================
   PAGE PADDING FOR FOOTER (because of sticky CTA)
   ============================ */
body.has-sticky-cta {
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  body.has-sticky-cta { padding-bottom: 0; }
}

/* ============================
   LOADING SPINNER
   ============================ */
.ct-spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 9999px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================
   TOAST NOTIFICATIONS
   ============================ */
.ct-toast-container {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 20rem;
}

@media (min-width: 768px) { .ct-toast-container { bottom: 2rem; } }

.ct-toast {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  animation: fadeUp 0.3s ease-out;
}

.ct-toast--success { border-left: 3px solid hsl(142, 71%, 45%); }
.ct-toast--error { border-left: 3px solid var(--destructive); }

/* ============================
   FESTIVE SEASON OFFERS SECTION
   Category tabs + horizontal sliding product cards
   ============================ */

.ct-festive-section {
  padding: 4rem 0 3rem;
  background: var(--background);
}

@media (min-width: 768px) {
  .ct-festive-section { padding: 5rem 0 4rem; }
}

/* --- Heading --- */
.ct-festive-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ct-festive-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .ct-festive-title { font-size: 3.25rem; }
}

.ct-festive-wave {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.ct-festive-wave svg {
  width: 120px;
  height: 18px;
}

/* --- Tab bar: underline style exactly like screenshot --- */
.ct-festive-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ct-festive-tabs::-webkit-scrollbar { display: none; }

.ct-festive-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  padding: 0.625rem 1.375rem;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1.5px;
  transition: color 0.2s, border-color 0.2s;
  position: relative;
}

.ct-festive-tab:hover {
  color: var(--foreground);
}

.ct-festive-tab.is-active {
  color: #D80027;
  border-bottom-color: #D80027;
  font-weight: 600;
}

/* --- Slider wrapper --- */
.ct-festive-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Nav arrow buttons */
.ct-festive-nav {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--background);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  color: var(--foreground);
  z-index: 2;
}

.ct-festive-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.08);
}

.ct-festive-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Scrollable outer container */
.ct-festive-track-outer {
  flex: 1;
  overflow: hidden;
}

/* Inner track — flex row, no wrap */
.ct-festive-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0.5rem 0.25rem 1rem;
}

/* --- Individual product card (matches screenshot style: white card, image top, name + price) --- */
.ct-festive-card {
  flex: 0 0 200px;
  width: 200px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
  .ct-festive-card { flex: 0 0 210px; width: 210px; }
}

.ct-festive-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

/* Image area — square, object-fit cover */
.ct-festive-card__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.ct-festive-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.ct-festive-card:hover .ct-festive-card__img-wrap img {
  transform: scale(1.07);
}

/* Quick-view hover overlay */
.ct-festive-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.ct-festive-card:hover .ct-festive-card__overlay {
  opacity: 1;
}

.ct-festive-card__overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}

/* Card body: name + price + add button */
.ct-festive-card__body {
  padding: 0.75rem 0.875rem 0.875rem;
  background: #fff;
}

.ct-festive-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.ct-festive-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #D80027;
  margin-bottom: 0.625rem;
}

.ct-festive-card__add {
  width: 100%;
  background: var(--foreground);
  color: var(--secondary-foreground);
  border: none;
  border-radius: 6px;
  padding: 0.45rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
}

.ct-festive-card__add:hover {
  background: #D80027;
  transform: scale(1.02);
}

/* Kids Corner special card tint */
.ct-festive-card--kids {
  border-color: #fbcfe8;
  background: linear-gradient(to bottom, #fdf2f8, #fff);
}

.ct-festive-card--kids .ct-festive-card__body {
  background: transparent;
}

.ct-festive-card--kids .ct-festive-card__price {
  color: #ec4899;
}

.ct-festive-card--kids .ct-festive-card__add {
  background: #ec4899;
}

.ct-festive-card--kids .ct-festive-card__add:hover {
  background: #db2777;
}

/* --- Skeleton placeholders --- */
.ct-festive-skeleton {
  flex: 0 0 200px;
  width: 200px;
  height: 280px;
  background: linear-gradient(90deg, var(--muted) 25%, var(--card) 50%, var(--muted) 75%);
  background-size: 200% 100%;
  animation: ctSkeleton 1.4s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes ctSkeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state when a category has no items */
.ct-festive-empty {
  flex: 1;
  padding: 3rem 0;
  text-align: center;
  color: var(--muted-foreground);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
}

/* ============================
   PIZZA PLANET-STYLE MENU SECTION
   Matches: pizzaplanet.dreavity.com menu design
   ============================ */

.ctpp-menu-section {
  padding: 5rem 0 4rem;
  background: #f7f7f7;
}

/* ---- Section label badge ---- */
.ctpp-section-label {
  text-align: center;
  margin-bottom: 1rem;
}

.ctpp-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: hsla(48, 100%, 50%, 0.15);
  color: hsl(30, 90%, 35%);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  border: 1px solid hsla(48, 100%, 50%, 0.3);
}

/* ---- Heading row ---- */
.ctpp-menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ctpp-menu-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .ctpp-menu-title { font-size: 3rem; }
}

.ctpp-menu-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-family: 'Inter', sans-serif;
}

.ctpp-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.ctpp-view-all:hover {
  color: hsl(30, 90%, 35%);
  border-color: hsl(30, 90%, 35%);
}

/* ---- Filter pill tabs ---- */
.ctpp-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ctpp-filter {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.ctpp-filter:hover {
  border-color: var(--foreground);
  color: var(--foreground);
  background: #fff;
}

.ctpp-filter.is-active {
  background: var(--foreground);
  color: #fff;
  border-color: var(--foreground);
  font-weight: 600;
}

/* ---- Product grid — 2 cols mobile, 3 tablet, 4 desktop ---- */
.ctpp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .ctpp-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
  .ctpp-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ---- Individual product card ---- */
.ctpp-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.ctpp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Image area */
.ctpp-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f3f3;
  flex-shrink: 0;
}

.ctpp-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.ctpp-card:hover .ctpp-card__img-wrap img {
  transform: scale(1.08);
}

/* Badge overlay — top left (Best Seller, Popular, Hot Deal, etc.) */
.ctpp-card__badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.ctpp-badge--bestseller { background: #FFD000; color: #111; }
.ctpp-badge--popular    { background: #ff6b35; color: #fff; }
.ctpp-badge--hot        { background: #e53e3e; color: #fff; }
.ctpp-badge--new        { background: #38a169; color: #fff; }
.ctpp-badge--value      { background: #805ad5; color: #fff; }
.ctpp-badge--spicy      { background: #c05621; color: #fff; }
.ctpp-badge--kids       { background: #ec4899; color: #fff; }

/* Quick View hover overlay */
.ctpp-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 1;
}

.ctpp-card:hover .ctpp-card__overlay {
  opacity: 1;
}

.ctpp-card__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ctpp-card__overlay-btn:hover {
  background: #fff;
}

/* Card body */
.ctpp-card__body {
  padding: 1rem 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ctpp-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.3rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ctpp-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 0.875rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price + Add row */
.ctpp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.ctpp-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--foreground);
  white-space: nowrap;
}

/* "Add +" button — exactly like Pizza Planet */
.ctpp-card__add {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--foreground);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 0.875rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.ctpp-card__add:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.05);
}

/* Kids Corner card style */
.ctpp-card--kids {
  border-color: #fce7f3;
}

.ctpp-card--kids .ctpp-card__add {
  background: #ec4899;
}

.ctpp-card--kids .ctpp-card__add:hover {
  background: #db2777;
  color: #fff;
}

/* Empty state */
.ctpp-empty {
  grid-column: 1 / -1;
  padding: 4rem 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

/* ---- Skeleton loading cards ---- */
.ctpp-skeleton {
  height: 300px;
  background: linear-gradient(90deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: ctppSkeleton 1.4s ease-in-out infinite;
  border-radius: 16px;
}

@keyframes ctppSkeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Category badges per category */
.ctpp-card[data-cat="Chicken"]     .ctpp-card__name { color: #92400e; }
.ctpp-card[data-cat="Kids Corner"] .ctpp-card__price { color: #be185d; }
