:root {
  --red:    #dc2626;
  --orange: #f97316;
  --yellow: #fbbf24;
  --dark:   #0d0807;
  --card:   #1a0f0c;
  --border: rgba(220,38,38,0.18);
  --text:   #f3f4f6;
  --muted:  #9ca3af;
  --font:   'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAVBAR ── */
.c99-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,8,7,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.c99-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.c99-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c99-nav-logo img { height: 40px; }

.c99-nav-brand {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff7ed, #f97316, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.c99-nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.c99-nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.25s;
  white-space: nowrap;
}

.c99-nav-links a:hover,
.c99-nav-links a.active {
  background: var(--red);
  color: #fff;
}

.c99-nav-cta {
  background: linear-gradient(135deg, #f97316, #dc2626) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(220,38,38,0.35);
}

/* ── HERO BANNER ── */
.c99-hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.c99-hero-banner {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.c99-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--dark));
  pointer-events: none;
}

/* ── SECTION ── */
.c99-section { padding: 80px 0; }

.c99-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.c99-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.c99-heading {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.c99-heading span {
  background: linear-gradient(135deg, #fff7ed, #f97316, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c99-subheading {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ── CATEGORY FILTERS ── */
.c99-categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.c99-cat-btn {
  padding: 10px 26px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}

.c99-cat-btn:hover,
.c99-cat-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── MENU GRID ── */
.c99-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.c99-menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.c99-card-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #1c0e09;
}

.c99-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.c99-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.c99-card-badge.veg        { background: #16a34a; }
.c99-card-badge.bestseller { background: var(--orange); }

.c99-card-body { padding: 1.3rem 1.5rem; }

.c99-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.c99-card-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 1.1rem;
}

.c99-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c99-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yellow);
}

.c99-card-price span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
}

.c99-add-btn {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.c99-add-btn:hover { transform: scale(1.06); }

/* ── FRANCHISE STRIP ── */
.c99-franchise-strip {
  background: linear-gradient(160deg, #160404 0%, #0d0807 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}

.c99-franchise-strip h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.c99-franchise-strip h2 span {
  background: linear-gradient(135deg, #fff7ed, #f97316, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c99-franchise-strip p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.c99-strip-btn {
  display: inline-block;
  padding: 18px 52px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(220,38,38,0.4);
  transition: all 0.3s;
}

.c99-strip-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(220,38,38,0.55);
}

/* ── FRANCHISE FEATURES GRID ── */
.c99-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 4.5rem;
  text-align: left;
}

.c99-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  transition: all 0.3s;
}

.c99-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220,38,38,0.35);
  background: rgba(26, 15, 12, 0.9);
}

.c99-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.c99-feature-icon i { width: 26px; height: 26px; }

.c99-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.c99-feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── FOOTER ── */
.c99-footer {
  background: #060202;
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.c99-footer p { color: var(--muted); font-size: 0.88rem; }
.c99-footer a { color: var(--orange); }
.c99-footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .c99-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .c99-heading { font-size: 2rem; }
  .c99-nav-links { display: none; }
  .c99-hero-banner { max-height: 300px; }
  .c99-franchise-strip h2 { font-size: 2rem; }
}

@media (max-width: 580px) {
  .c99-features-grid { grid-template-columns: 1fr; }
  .c99-menu-grid { grid-template-columns: 1fr; }
}
