@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --primary-green: #0d381e;
  --primary-green-dark: #082413;
  --primary-green-light: #15803d;
  --accent-green: #16a34a;
  --accent-green-bright: #22c55e;
  
  --accent-red: #dc2626;
  --accent-red-hover: #b91c1c;
  --accent-red-light: #fee2e2;

  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-cream: #fbf8f3;
  --bg-dark: #111413;
  --bg-dark-surface: #181c1a;

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --border-light: #e2e8f0;
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-green: rgba(22, 163, 74, 0.2);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px -4px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);

  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

/* Badges */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.tag-badge.white {
  color: #86efac;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent-green);
}

.pill-tag.green-solid {
  background: var(--accent-green);
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-red {
  background: var(--accent-red);
  color: #ffffff;
}

.btn-red:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

.btn-green {
  background: var(--accent-green);
  color: #ffffff;
}

.btn-green:hover {
  background: var(--primary-green-light);
  transform: translateY(-1px);
}

.btn-white {
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-outline-dark:hover {
  background: var(--bg-light);
  border-color: var(--text-muted);
}

/* 1. TOP NOTIFICATION BAR */
.top-bar {
  background: var(--primary-green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.top-bar-item strong {
  color: #ffffff;
}

/* 2. NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-green);
  border: 2px solid var(--accent-green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(13, 56, 30, 0.25);
  flex-shrink: 0;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  white-space: nowrap;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 3. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-color: #0b0f0c;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.88);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 15, 11, 0.94) 0%, rgba(8, 15, 11, 0.7) 45%, rgba(8, 15, 11, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding-block: 80px 100px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(38px, 4.5vw, 54px);
  color: #ffffff;
  line-height: 1.1;
  font-weight: 800;
}

.hero-desc {
  font-size: 16px;
  color: #e2e8f0;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
}

/* Floating Green Features Bar */
.hero-features-bar {
  position: relative;
  z-index: 4;
  margin-top: -46px;
  margin-bottom: 64px;
}

.features-bar-inner {
  background: var(--primary-green);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  overflow: hidden;
}

.feature-bar-item {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-bar-item:last-child {
  border-right: none;
}

.feature-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-text-sub {
  font-size: 12px;
  color: #cbd5e1;
  margin-top: 2px;
}

/* 4. SECTION COMMON HEADERS */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-head-left {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* 5. POPULAR MENU GRID (8 Cards) */
.menu-section {
  padding-bottom: 80px;
}

.menu-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dish-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.dish-media {
  position: relative;
  height: 180px;
  background: #1e293b;
  overflow: hidden;
}

.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.dish-card:hover .dish-media img {
  transform: scale(1.05);
}

.dish-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.dish-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dish-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.dish-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
}

.dish-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-dish-order {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
}

.btn-dish-order:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #ffffff;
}

/* 6. ABOUT / STORY SECTION (Warm Beige) */
.story-section {
  background-color: var(--bg-cream);
  padding-block: 84px;
  border-block: 1px solid #f1e9dc;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.story-media-compose {
  position: relative;
}

.story-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.story-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  background: var(--accent-red);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-cream);
}

.story-overlay-badge span:first-child {
  font-size: 20px;
  line-height: 1;
}

.story-overlay-badge span:last-child {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.story-sub-img {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-cream);
}

.story-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-title {
  font-size: clamp(30px, 3.5vw, 42px);
  color: var(--text-dark);
}

.story-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.story-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 8px;
}

.story-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 7. FOUR STEPS SECTION */
.steps-section {
  padding-block: 84px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid #e2e8f0;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.step-circle-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--accent-red);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
}

/* 8. DEEP GREEN HIGHLIGHT CARDS */
.green-banner-section {
  background: var(--primary-green);
  padding-block: 64px;
  color: #ffffff;
}

.green-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.green-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-fast);
}

.green-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.green-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #86efac;
}

.green-card-title {
  font-size: 24px;
  color: #ffffff;
}

.green-card-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.green-card-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: #86efac;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 9. PHOTO GALLERY (8 Photos Grid) */
.gallery-section {
  padding-block: 84px;
}

.gallery-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #1e293b;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* 10. LOCAL SEO ANADOLU YAKASI 13 İLÇE HUB */
.district-hub-section {
  background-color: var(--bg-cream);
  padding-block: 84px;
  border-top: 1px solid #f1e9dc;
}

.district-hub-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.district-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 6px;
}

.district-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.district-nav-btn:hover {
  background: var(--bg-light);
}

.district-nav-btn.active {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.3);
  color: var(--accent-green);
}

.district-eta-pill {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: var(--text-muted);
}

.district-nav-btn.active .district-eta-pill {
  background: var(--accent-green);
  color: #ffffff;
}

.district-content-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 12px;
}

.district-article {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.district-article.active {
  display: flex;
  animation: fadeIn 200ms ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.district-article-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.district-article-body {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.district-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.d-stat-item {
  display: flex;
  flex-direction: column;
}

.d-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.d-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2px;
}

/* 11. BLOG / GUIDE SECTION */
.blog-section {
  padding-block: 84px;
  background-color: var(--bg-cream);
  border-top: 1px solid #f1e9dc;
}

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

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-media {
  height: 200px;
  background: #1e293b;
  overflow: hidden;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.blog-card:hover .blog-media img {
  transform: scale(1.05);
}

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.blog-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 12. LOCATION & MAP SECTION */
.location-section {
  padding-block: 84px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: stretch;
}

.location-info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.info-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon-sq {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-red-light);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text-title {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.info-text-content {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}

.map-embed-wrapper {
  background: #f1f5f9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  min-height: 380px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* 13. RED DIAGONAL STRIPED CTA BANNER */
.red-cta-banner {
  background: repeating-linear-gradient(
    45deg,
    #dc2626,
    #dc2626 15px,
    #c81e1e 15px,
    #c81e1e 30px
  );
  color: #ffffff;
  padding-block: 28px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.red-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-left-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.cta-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 14. DARK FOOTER */
.footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding-top: 64px;
  padding-bottom: 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-link-item:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
}

/* 15. WHATSAPP ORDER DRAWER */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.order-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.drawer-backdrop.active .order-drawer {
  transform: translateX(0);
}

.drawer-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-size: 18px;
  font-weight: 700;
}

.btn-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-empty-hint {
  padding: 16px;
  text-align: center;
  background: var(--bg-light);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
}

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.cart-item-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-qty {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-count {
  font-size: 13px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-green);
}

.payment-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-toggle-btn {
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-body);
  text-align: center;
}

.payment-toggle-btn.active {
  background: rgba(22, 163, 74, 0.1);
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.drawer-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

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

.total-amount {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-green);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: var(--text-dark);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}
