/* ============================================
   RestonArt - Restaurant Theme Design System
   ============================================ */

:root {
  --primary: #ff8000;
  --primary-dark: #e27100;
  --primary-light: #ff8000;
  --accent: #f39c12;
  --accent-light: #f1c40f;
  --dark: #1a1a2e;
  --dark-soft: #2d2d44;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --text: #333333;
  --text-muted: #6c757d;
  --success: #27ae60;
  --warning: #e67e22;
  --danger: #e74c3c;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Site Header ---- */
  --header-bg: rgba(22, 22, 36, 0.88);
  --header-bg-scrolled: rgba(18, 18, 30, 0.96);
  --header-border: rgba(255, 255, 255, 0.06);
  --header-shadow-scrolled: 0 8px 32px rgba(0, 0, 0, 0.18);
  --header-logo-color: var(--white);
  --header-logo-accent: var(--accent);
  --header-logo-bg: rgba(22, 22, 36, 0.98);
  --header-logo-bg-scrolled: rgba(18, 18, 30, 0.98);
  --header-nav-link-color: rgba(255, 255, 255, 0.78);
  --header-nav-link-hover-color: var(--white);
  --header-nav-link-hover-bg: rgba(255, 255, 255, 0.08);
  --header-nav-link-active-accent: var(--accent);
  --header-auth-color: var(--white);
  --header-auth-border: rgba(255, 255, 255, 0.22);
  --header-auth-hover-color: var(--accent);
  --header-order-bg-start: var(--primary);
  --header-order-bg-end: var(--primary-light);
  --header-order-color: var(--white);
  --header-order-shadow: rgba(192, 57, 43, 0.35);
  --header-order-shadow-hover: rgba(192, 57, 43, 0.42);
  --header-mobile-btn-bg: rgba(255, 255, 255, 0.08);
  --header-mobile-btn-bg-hover: rgba(255, 255, 255, 0.14);
  --header-mobile-btn-bar: var(--white);

  /* ---- Mobile Offcanvas Menu (header'a bağlı) ---- */
  --offcanvas-bg-start: #12121f;
  --offcanvas-bg-end: var(--dark);
  --offcanvas-border: rgba(255, 255, 255, 0.08);
  --offcanvas-color: var(--white);
  --offcanvas-close-bg: rgba(255, 255, 255, 0.08);
  --offcanvas-nav-color: rgba(255, 255, 255, 0.82);
  --offcanvas-nav-icon-color: var(--accent);
  --offcanvas-nav-hover-bg: rgba(192, 57, 43, 0.18);
  --offcanvas-register-border: rgba(255, 255, 255, 0.18);
  --offcanvas-info-border: rgba(255, 255, 255, 0.08);
  --offcanvas-info-text: rgba(255, 255, 255, 0.55);
  --offcanvas-info-link: rgba(255, 255, 255, 0.75);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

/* ---- Custom Header (not Bootstrap navbar) ---- */
body:not(.auth-page-body) {
  padding-top: 76px;
}

.site-header {
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-border);
  z-index: 1030;
  transition: var(--transition);
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: var(--header-shadow-scrolled);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.site-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--header-logo-color);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.site-logo span {
  color: var(--header-logo-accent);
}

/* Header specific logo container adjustments */
.site-header .site-logo {
  position: relative;
  width: 150px;
  height: 48px;
}

.site-logo img {
  position: absolute;
  top: -12px;
  left: 0;
  height: auto !important;
  max-height: 120px;
  max-width: 200px;
  object-fit: contain;
  display: block;
  background: var(--header-logo-bg);
  padding: 8px 12px 12px 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  z-index: 11;
}

.site-header.scrolled .site-logo img {
  background: var(--header-logo-bg-scrolled);
}

.site-nav {
  align-items: center;
  gap: 0.35rem;
}

.site-nav-link {
  color: var(--header-nav-link-color);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  position: relative;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: var(--header-nav-link-hover-color);
  background: var(--header-nav-link-hover-bg);
}

.site-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--header-nav-link-active-accent);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-auth-trigger {
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--header-auth-border);
  color: var(--header-auth-color);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-auth-trigger:hover {
  border-color: var(--header-auth-hover-color);
  color: var(--header-auth-hover-color);
}

.btn-header-order {
  background: linear-gradient(135deg, var(--header-order-bg-start), var(--header-order-bg-end));
  color: var(--header-order-color);
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px var(--header-order-shadow);
}

.btn-header-order:hover {
  color: var(--header-order-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--header-order-shadow-hover);
}

.btn-mobile-menu {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: var(--header-mobile-btn-bg);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.btn-mobile-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--header-mobile-btn-bar);
  border-radius: 999px;
  transition: var(--transition);
}

.btn-mobile-menu:hover {
  background: var(--header-mobile-btn-bg-hover);
}

/* ---- Offcanvas Menu ---- */
.site-offcanvas {
  width: min(88vw, 360px) !important;
  background: linear-gradient(180deg, var(--offcanvas-bg-start) 0%, var(--offcanvas-bg-end) 100%);
  border-left: 1px solid var(--offcanvas-border);
  color: var(--offcanvas-color);
}

.site-offcanvas .offcanvas-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--offcanvas-border);
}

.site-offcanvas .offcanvas-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.btn-offcanvas-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: var(--offcanvas-close-bg);
  color: var(--offcanvas-color);
  font-size: 1.1rem;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.offcanvas-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  color: var(--offcanvas-nav-color);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.offcanvas-nav-link i {
  width: 22px;
  color: var(--offcanvas-nav-icon-color);
}

.offcanvas-nav-link:hover,
.offcanvas-nav-link.active {
  background: var(--offcanvas-nav-hover-bg);
  color: var(--offcanvas-color);
}

.offcanvas-auth {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn-register-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--offcanvas-register-border);
  color: var(--offcanvas-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.site-header .btn-register-outline:hover {
  border-color: var(--header-auth-hover-color);
  color: var(--header-auth-hover-color);
}

.offcanvas-info {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--offcanvas-info-border);
}

.offcanvas-info p {
  margin-bottom: 0.65rem;
  color: var(--offcanvas-info-text);
  font-size: 0.9rem;
}

.offcanvas-info a {
  color: var(--offcanvas-info-link);
}

.offcanvas-info i {
  color: var(--offcanvas-nav-icon-color);
  width: 18px;
  margin-right: 0.5rem;
}

/* ---- Hero Slider ---- */
.hero-slider {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--dark);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: calc(100vh - 76px);
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(16, 16, 28, 0.88) 0%, rgba(16, 16, 28, 0.45) 55%, rgba(192, 57, 43, 0.35) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-slide-content .hero-badge {
  transform: translateY(24px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.hero-slide-content .hero-title,
.hero-slide-content .hero-subtitle,
.hero-slide-content .hero-buttons,
.hero-slide-content .hero-stats {
  transform: translateY(28px);
  opacity: 0;
  transition: all 0.8s ease;
}

.hero-slide.active .hero-slide-content .hero-badge {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide.active .hero-slide-content .hero-title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.35s;
}

.hero-slide.active .hero-slide-content .hero-subtitle {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.hero-slide.active .hero-slide-content .hero-buttons {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.65s;
}

.hero-slide.active .hero-slide-content .hero-stats {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.8s;
}

.hero-slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 5;
}

.hero-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-dots {
  display: flex;
  gap: 0.65rem;
}

.hero-dot {
  width: 42px;
  height: 4px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  width: 56px;
}

/* ---- Auth Pages & Modal ---- */
.auth-page-body {
  background: var(--cream);
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.auth-page-visual {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&q=80');
  background-size: cover;
  background-position: center;
}

.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18, 18, 30, 0.92), rgba(192, 57, 43, 0.72));
}

.auth-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.auth-visual-logo {
  margin-bottom: 3rem;
}

.auth-visual-content blockquote {
  margin: 0 0 2rem;
}

.auth-visual-content blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.auth-visual-content blockquote footer {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.auth-visual-stats {
  display: flex;
  gap: 2rem;
}

.auth-visual-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
}

.auth-visual-stats span {
  font-size: 0.85rem;
  opacity: 0.75;
}

.auth-visual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-visual-list li {
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.auth-visual-list i {
  color: var(--accent);
  margin-right: 0.65rem;
}

.auth-page-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-page-form-wrap {
  width: 100%;
  max-width: 460px;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

.auth-back-link:hover {
  color: var(--primary);
}

.auth-page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.auth-page-header p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.auth-form .auth-field {
  margin-bottom: 1.15rem;
}

.auth-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.auth-input-wrap {
  position: relative;
}

.auth-input-wrap > i:first-child {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-input {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.auth-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

.auth-toggle-pass {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0.25rem;
}

.auth-form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.auth-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.auth-check-block {
  margin-bottom: 1.25rem;
}

.auth-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.auth-link:hover {
  color: var(--primary-dark);
}

.btn-auth-submit {
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 28px rgba(192, 57, 43, 0.28);
  transition: var(--transition);
}

.btn-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(192, 57, 43, 0.34);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.auth-social-page {
  grid-template-columns: 1fr;
}

.btn-social {
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.btn-social:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-social.google i { color: #ea4335; }
.btn-social.facebook i { color: #1877f2; }

.auth-switch {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.auth-switch a {
  color: var(--primary);
  font-weight: 700;
}

.auth-modal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: var(--cream);
  color: var(--text);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.12), rgba(243, 156, 18, 0.18));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.auth-modal-header h3 {
  margin-bottom: 0.35rem;
}

.auth-modal-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.92rem;
}

/* ---- Navbar ---- */
.navbar-restonart {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-restonart.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-brand span {
  color: var(--accent);
}

.navbar-restonart .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  margin: 0 0.15rem;
}

.navbar-restonart .nav-link:hover,
.navbar-restonart .nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
}

.btn-order-nav {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
  border: 2px solid var(--primary);
}

.btn-order-nav:hover {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ---- Status Banner ---- */
.status-banner {
  padding: 0.65rem 0;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: var(--transition);
  margin-top: 0 !important;
  display: none !important;/*şimdilik bu yapı çalışmıyor*/
}

.status-banner.open {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: var(--white);
}

.status-banner.closed {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: var(--white);
}

.status-banner .status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-accent {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--dark);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-item-detail {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.1);
  color: var(--primary);
  border: 1.5px solid rgba(192, 57, 43, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-item-detail:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(192, 57, 43, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(243, 156, 18, 0.9);
  color: var(--dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.9;
  max-width: 550px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---- Section Styles ---- */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

/* ---- Featured Dishes ---- */
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dish-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dish-card-body {
  padding: 1.25rem;
}

.dish-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.dish-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.dish-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

/* ---- Features ---- */
.feature-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--white);
}

.feature-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- Reviews ---- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.review-stars {
  color: var(--accent);
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--accent);
}

.footer-brand img {
  height: auto !important;
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Menu Page ---- */
.menu-layout {
  display: flex;
  gap: 2rem;
  min-height: calc(100vh - 200px);
}

.menu-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.menu-sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.category-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 0.25rem;
}

.category-nav li a:hover,
.category-nav li a.active {
  background: var(--primary);
  color: var(--white);
}

.category-nav li a i {
  width: 20px;
  text-align: center;
}

.menu-mobile-categories {
  display: none;
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
  gap: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-mobile-categories::-webkit-scrollbar {
  display: none;
}

.menu-mobile-categories .cat-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.menu-mobile-categories .cat-pill.active,
.menu-mobile-categories .cat-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.menu-content {
  flex: 1;
}

.menu-category-section {
  margin-bottom: 3rem;
  scroll-margin-top: 120px;
}

.menu-category-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.menu-category-count {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.menu-item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 1rem;
}

.menu-item-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.menu-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* ---- Sticky Cart ---- */
.sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cart.visible {
  transform: translateY(0);
}

.sticky-cart-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-cart-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-cart-count {
  background: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sticky-cart-total {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.sticky-cart-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}

.sticky-cart-btn:hover {
  background: var(--accent-light);
}

/* ---- Product Modal ---- */
.product-modal .modal-content {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-modal-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-modal-body {
  padding: 1.5rem;
}

.customization-group {
  margin-bottom: 1.25rem;
}

.customization-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customization-label .required {
  color: var(--primary);
  font-size: 0.75rem;
}

.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-pill {
  padding: 0.5rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.option-pill:hover {
  border-color: var(--primary);
}

.option-pill.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.option-pill.extra {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.option-pill.extra .extra-price {
  color: var(--success);
  font-weight: 600;
  font-size: 0.8rem;
}

.remove-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.remove-chip {
  padding: 0.4rem 0.85rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.remove-chip.selected {
  background: #fdecea;
  border-color: var(--danger);
  color: var(--danger);
  text-decoration: line-through;
}

.modal-qty-control {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.modal-qty-value {
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

.modal-add-btn {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.modal-add-btn:hover {
  background: var(--primary-dark);
}

/* ---- Checkout Page ---- */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  position: relative;
}

.checkout-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.checkout-step.active .checkout-step-number {
  background: var(--primary);
  color: var(--white);
}

.checkout-step.completed .checkout-step-number {
  background: var(--success);
  color: var(--white);
}

.checkout-step-label {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.checkout-step.active .checkout-step-label {
  color: var(--dark);
  font-weight: 600;
}

.checkout-step::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--cream-dark);
}

.checkout-step:last-child::after {
  display: none;
}

.checkout-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.checkout-card-title {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-card-title i {
  color: var(--primary);
}

.delivery-option {
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}

.delivery-option:hover {
  border-color: var(--primary);
}

.delivery-option.selected {
  border-color: var(--primary);
  background: rgba(192, 57, 43, 0.05);
}

.delivery-option-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}

.payment-option:hover {
  border-color: var(--primary);
}

.payment-option.selected {
  border-color: var(--primary);
  background: rgba(192, 57, 43, 0.05);
}

.payment-option input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.address-card {
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}

.address-card.selected {
  border-color: var(--primary);
  background: rgba(192, 57, 43, 0.05);
}

.address-label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.order-summary-total .amount {
  color: var(--primary);
  font-family: var(--font-heading);
}

/* ---- About Page ---- */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 5rem 0 4rem;
  color: var(--white);
  text-align: center;
}

.about-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--primary);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.certificate-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
}

.certificate-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---- Contact Page ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--white);
}

.contact-info-card.whatsapp .contact-info-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-control-custom {
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Dashboard ---- */
.dashboard-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.dashboard-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 0.25rem;
}

.dashboard-nav li a:hover,
.dashboard-nav li a.active {
  background: var(--primary);
  color: var(--white);
}

.dashboard-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.order-tracker {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2rem 0;
  padding: 0 1rem;
}

.order-tracker::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--cream-dark);
  z-index: 0;
}

.order-tracker-progress {
  position: absolute;
  top: 20px;
  left: 10%;
  height: 4px;
  background: var(--success);
  z-index: 1;
  transition: width 0.5s ease;
}

.tracker-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.tracker-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.tracker-step.completed .tracker-icon {
  background: var(--success);
  color: var(--white);
}

.tracker-step.active .tracker-icon {
  background: var(--primary);
  color: var(--white);
  animation: pulse 2s infinite;
}

.tracker-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.tracker-step.completed .tracker-label,
.tracker-step.active .tracker-label {
  color: var(--dark);
  font-weight: 600;
}

.order-history-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.order-history-item:hover {
  box-shadow: var(--shadow);
}

.order-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.order-status-badge.delivered {
  background: #d4edda;
  color: #155724;
}

.order-status-badge.cancelled {
  background: #f8d7da;
  color: #721c24;
}

.btn-reorder {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-reorder:hover {
  background: var(--primary);
  color: var(--white);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

/* ---- Toast Notification ---- */
.toast-container-custom {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
}

.toast-custom {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  animation: slideIn 0.4s ease;
  min-width: 280px;
}

.toast-custom.success {
  border-left: 4px solid var(--success);
}

.toast-custom i {
  color: var(--success);
  font-size: 1.25rem;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 4rem 0 3rem;
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a:hover {
  color: var(--accent);
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-page-visual {
    min-height: 280px;
  }

  .auth-visual-content {
    padding: 2rem;
  }

  .auth-visual-logo {
    margin-bottom: 1rem;
  }

  .auth-visual-stats,
  .auth-visual-list {
    display: none;
  }

  .menu-sidebar {
    display: none;
  }

  .menu-mobile-categories {
    display: flex;
  }

  .menu-layout {
    flex-direction: column;
  }

  .checkout-steps {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .checkout-step::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .order-tracker {
    flex-direction: column;
    gap: 1.5rem;
  }

  .order-tracker::before,
  .order-tracker-progress {
    display: none;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  body:not(.auth-page-body) {
    padding-top: 72px;
  }

  .site-header-inner {
    min-height: 72px;
  }

  .site-header .site-logo {
    width: 120px;
    height: 40px;
  }

  .site-logo img {
    max-height: 90px;
    max-width: 120px;
    top: -17px;
    padding: 6px 10px 10px 10px;
  }

  .hero-slides,
  .hero-slider {
    min-height: 520px;
    height: calc(100vh - 72px);
  }

  .hero-slider-controls {
    bottom: 1.25rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .menu-item-card {
    flex-direction: column;
  }

  .menu-item-img {
    width: 100%;
    height: 180px;
  }

  .sticky-cart-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .sticky-cart-btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .dashboard-sidebar {
    margin-bottom: 1.5rem;
  }
}

/* ---- Bootstrap overrides ---- */
.modal-backdrop.show { opacity: 0.65; }
.offcanvas-backdrop.show { opacity: 0.72; }

.product-modal .modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.product-modal .modal-dialog {
  max-width: 520px;
}

.feature-box,
.dish-card,
.review-card,
.menu-item-card,
.dashboard-content,
.dashboard-sidebar {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dish-card,
.feature-box {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
}

.menu-item-card {
  border-radius: 18px;
}

.section-padding {
  position: relative;
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .auth-social:not(.auth-social-page) {
    grid-template-columns: 1fr;
  }

  .site-header-actions .btn-header-order {
    display: none !important;
  }

  .site-header .site-logo {
    width: 110px;
    height: 36px;
  }

  .site-logo img {
    max-height: 80px;
    max-width: 110px;
    top: -18px;
    padding: 4px 8px 8px 8px;
  }
}


/*Loader*/
  .loader_rolling {width: 10px; height: 10px; border-radius: 50%; display: block; margin:15px auto; position: relative; color: #FFF; left: -100px; box-sizing: border-box; animation: shadowRolling 2s linear infinite; }
  @keyframes shadowRolling {
    0% {box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0); }
    12% {box-shadow: 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0); }
    25% {box-shadow: 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0); }
    36% {box-shadow: 120px 0 white, 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0); }
    50% {box-shadow: 130px 0 white, 120px 0 white, 110px 0 white, 100px 0 white; }
    62% {box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white, 110px 0 white; }
    75% {box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white; }
    87% {box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white; }
    100% {box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0); }
  }
 .form_loader{z-index: 10000; position: fixed; height: 100vh; width: 100vw; top: 0; left: 0; background: #020306a6; justify-content: center; align-content: center; flex-wrap: wrap;display:none; font-size: 1rem;}
 .loadet_text{color: #fff;}
 /*Loader*/