/* ============================================
   TARKA BOTANY — REDEFINED DARK LUXURY UI
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Colors — Onyx & Gold (Premium Dark Luxury) */
  --color-bg-primary: #0A0A0A;
  /* Deep Onyx */
  --color-bg-secondary: #0F0F0F;
  /* Slightly lighter for contrast */
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-bg-glass: rgba(10, 10, 10, 0.85);
  /* Onyx Glass */
  --color-bg-dark: #000000;

  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(212, 175, 55, 0.6);
  /* Gold hover */

  /* Brand Colors */
  --color-coffee: #4A2C1D;
  --color-gold: #D4AF37;
  /* Luxury Gold */
  --color-saffron: #D4AF37;
  --color-saffron-light: #E5C560;
  --color-saffron-dark: #B08D22;

  /* Text Colors */
  --color-text-primary: #F5F5F5;
  /* Pearl White */
  --color-text-secondary: #B0B0B0;
  /* Silver/Grey */
  --color-text-muted: #666666;
  --color-text-light: #F5F5F5;

  /* Gradients & Accents */
  --gradient-saffron: linear-gradient(135deg, #D4AF37 0%, #F2E4C6 50%, #B8933B 100%);
  /* Gold/Cream/Bronze */
  --gradient-hero: linear-gradient(180deg, rgba(8, 8, 8, 0.3) 0%, rgba(8, 8, 8, 0.9) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

  --navbar-bg-scrolled: rgba(10, 10, 10, 0.95);
  --nav-toggle-color: var(--color-gold);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}


/* ============================================
   LIGHT THEME (Cream Override)
   ============================================ */
[data-theme="light"] {
  --color-bg-primary: #F5F1EB;
  /* Soft Cream */
  --color-bg-secondary: #EDE3D6;
  /* Warm Beige */
  --color-bg-card: #FFFFFF;
  /* White for cards */
  --color-bg-glass: rgba(255, 255, 255, 0.85);

  --color-border: rgba(74, 44, 29, 0.15);
  /* Coffee-tinted border */
  --color-border-hover: rgba(212, 175, 55, 0.5);
  /* Gold hover */

  --color-text-primary: #2B1A12;
  /* Rich Dark Brown */
  --color-text-secondary: #4A2C1D;
  /* Deep Coffee */
  --color-text-muted: #7A6F66;
  /* Warm Grey */

  --gradient-saffron: linear-gradient(135deg, #D4AF37, #F2E4C6);
  --gradient-hero: linear-gradient(180deg, transparent 0%, transparent 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #fcfbf9 100%);

  --navbar-bg-scrolled: rgba(245, 241, 235, 0.95);
  /* Cream Glass */
  --nav-toggle-color: var(--color-coffee);
}

[data-theme="light"] .navbar.scrolled {
  background: var(--navbar-bg-scrolled);
  border-bottom-color: var(--color-border);
}

[data-theme="light"] .nav-toggle span {
  background: var(--nav-toggle-color);
}

/* Footer in Light Mode should stay DARK */
[data-theme="light"] .footer {
  background: #1E1E1E !important;
  color: #F5F1EB;
  border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .footer h4 {
  color: var(--color-gold);
}

[data-theme="light"] .footer p,
[data-theme="light"] .footer a,
[data-theme="light"] .footer span {
  color: rgba(245, 241, 235, 0.7);
}

[data-theme="light"] .footer a:hover {
  color: var(--color-gold);
}


/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg-glass);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-left: 8px;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--color-saffron);
  background: rgba(212, 160, 84, 0.1);
  transform: rotate(30deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-primary);
  stroke-width: 2;
  fill: none;
  transition: all var(--transition-fast);
}

/* Default (Dark): Show SUN to toggle Light */
.theme-toggle .icon-sun {
  display: block;
}

.theme-toggle .icon-moon {
  display: none;
}

/* Light Mode: Show MOON to toggle Dark */
[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-saffron);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-saffron-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
}

.text-saffron {
  color: var(--color-saffron);
}

.text-center {
  text-align: center;
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: 16px;
  position: relative;
}

.section-header .label::before,
.section-header .label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--color-saffron);
  opacity: 0.5;
}

.section-header .label::before {
  right: calc(100% + 12px);
}

.section-header .label::after {
  left: calc(100% + 12px);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.divider .line {
  width: 60px;
  height: 1px;
  background: var(--gradient-saffron);
  opacity: 0.5;
}

.divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--color-saffron);
  transform: rotate(45deg);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1000;
  padding: 14px 24px;
  border-radius: 100px;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-medium);
}

body.has-status-strip .navbar {
  top: calc(var(--strip-height, 0px) + 16px);
}

.navbar.scrolled {
  top: 12px;
  padding: 10px 24px;
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
}

body.has-status-strip .navbar.scrolled {
  top: calc(var(--strip-height, 0px) + 12px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar.scrolled .logo img {
  height: 40px;
}

/* Hero Logo */
.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
  animation: heroFloat 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text-primary);
  background: var(--color-bg-glass);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--color-saffron);
  border-radius: 1px;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
  background: var(--color-bg-glass);
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta a {
  background: var(--gradient-saffron) !important;
  color: #0a0a0a !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
}

.nav-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 160, 84, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 80px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(212, 160, 84, 0.3);
  border-radius: 50px;
}

.hero-content h1 {
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-saffron);
}

.hero-content p {
  margin: 0 auto 40px;
  font-size: 1.1rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--color-saffron);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

/* Page Hero (for sub-pages) */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg img {
  transform: scale(1.02);
}

.page-hero .hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

/* ============================================
   BUTTONS (Premium Metallic Finish)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #c4a24e 0%, #e8c673 50%, #b8933b 100%);
  color: #1a1612;
  box-shadow: 0 4px 15px rgba(196, 162, 78, 0.3);
  background-size: 200% auto;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 162, 78, 0.5);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid rgba(196, 162, 78, 0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  background: rgba(196, 162, 78, 0.1);
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.8rem;
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-medium);
}

.glass-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.service-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.service-card .card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

.service-card .card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10, 10, 10, 1), transparent);
}

.service-card .card-body {
  padding: 28px 28px 32px;
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 84, 0.12);
  border: 1px solid rgba(212, 160, 84, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============================================
   ABOUT / SPLIT LAYOUT
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-layout .content-side h2 {
  margin-bottom: 24px;
}

.split-layout .content-side p {
  margin-bottom: 16px;
}

.split-layout .image-side {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-layout .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-layout .image-side::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* Floating accent for image */
.image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-saffron);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

/* ============================================
   PARALLAX SHOWCASE
   ============================================ */
.parallax-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.parallax-section .parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
}

.parallax-section .parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.parallax-section .parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, rgba(10, 10, 10, 0.7) 50%, var(--color-bg-primary) 100%);
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================
   FEATURE CARDS (2 Column)
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.feature-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.feature-card .feature-image {
  height: 260px;
  overflow: hidden;
}

.feature-card .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-card:hover .feature-image img {
  transform: scale(1.06);
}

.feature-card .feature-body {
  padding: 32px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-medium);
}

.review-card:hover {
  border-color: var(--color-border-hover);
}

.review-card .stars {
  color: var(--color-saffron);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card .review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 160, 84, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-saffron);
}

.review-card .reviewer-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.review-card .reviewer-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-medium);
}

.contact-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 160, 84, 0.1);
  border: 1px solid rgba(212, 160, 84, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.contact-card a:hover {
  color: var(--color-saffron);
}

/* ============================================
   OPENING HOURS TABLE
   ============================================ */
.hours-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
  color: var(--color-text-primary);
}

.hours-row .time {
  color: var(--color-text-secondary);
}

/* ============================================
   MAP
   ============================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) brightness(0.8) contrast(1.1);
  transition: filter var(--transition-medium);
}

.map-container:hover iframe {
  filter: grayscale(0.2) brightness(0.9) contrast(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 32px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.footer-partner-logo {
  display: inline-flex;
  align-items: center;
}

.footer-partner-logo img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-partner-logo:hover img {
  opacity: 1;
}

.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.footer-brand .logo span {
  color: var(--color-saffron);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--color-saffron);
  color: var(--color-saffron);
  background: rgba(212, 160, 84, 0.08);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--color-text-primary);
}

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.footer-col .contact-item .icon {
  color: var(--color-saffron);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-partner-text {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CATERING PAGE
   ============================================ */
.catering-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.catering-feature {
  text-align: center;
  padding: 40px 24px;
}

.catering-feature .feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 160, 84, 0.1);
  border: 1px solid rgba(212, 160, 84, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.catering-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.catering-feature p {
  font-size: 0.9rem;
  margin: 0 auto;
}

/* ============================================
   MENU CATEGORY CARDS
   ============================================ */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
  text-align: center;
}

.menu-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.menu-card .menu-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.menu-card .menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-image img {
  transform: scale(1.08);
}

.menu-card .menu-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 10, 1), transparent);
}

.menu-card .menu-body {
  padding: 28px 28px 36px;
}

.menu-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.menu-card p {
  font-size: 0.92rem;
  margin: 0 auto 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .split-layout {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catering-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .navbar {
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 16px;
  }

  .navbar.scrolled {
    padding: 10px 16px;
  }

  /* Mobile Nav — Premium Slide Panel */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 32px;
    gap: 2px;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    color: var(--color-text-secondary);
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(212, 175, 55, 0.08);
    border-left-color: var(--color-gold);
    color: var(--color-text-primary);
  }

  .nav-links a.active {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--color-gold);
    color: var(--color-gold);
    font-weight: 600;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta a {
    width: 100%;
    text-align: center;
    display: block !important;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 8px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1201;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 0 0 0 16px !important;
    min-width: auto !important;
  }

  .dropdown-menu a {
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
    color: var(--color-text-muted) !important;
  }

  .dropdown-menu a:hover {
    color: var(--color-gold) !important;
  }

  /* Layout */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-layout .image-side {
    order: -1;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .menu-categories {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .catering-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-hours-list {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-hours-list .time {
    font-size: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-right {
    flex-direction: column;
    gap: 8px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .glass-card {
    padding: 28px;
  }

  .service-card .card-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   NAVBAR LOGO IMAGE
   ============================================ */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.navbar.scrolled .logo img {
  height: 36px;
}

/* ============================================
   SVG ICON SYSTEM
   ============================================ */
.icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--color-saffron);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-svg.icon-lg {
  width: 32px;
  height: 32px;
}

.card-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon .icon-svg {
  width: 28px;
  height: 28px;
}

.contact-item .icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.contact-item .icon .icon-svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SOCIAL ICONS (SVG)
   ============================================ */
.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(212, 160, 84, 0.15);
  border-color: var(--color-saffron);
  transform: translateY(-2px);
}

.footer-social a .icon-svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-secondary);
  fill: none;
}

.footer-social a:hover .icon-svg {
  stroke: var(--color-saffron);
}

/* Google icon is filled not stroked */
.footer-social a .icon-svg.icon-google {
  fill: var(--color-text-secondary);
  stroke: none;
}

.footer-social a:hover .icon-svg.icon-google {
  fill: var(--color-saffron);
  stroke: none;
}

/* ============================================
   GOOGLE RATING BADGE
   ============================================ */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 16px;
}

.google-rating .rating-score {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-saffron);
}

.google-rating .rating-stars {
  color: var(--color-saffron);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.google-rating .rating-count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.google-rating .rating-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.google-rating .rating-label .icon-svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Back to top */
.btn-back-to-top {
  background: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-back-to-top:hover {
  border-color: var(--color-saffron);
  background: rgba(40, 40, 40, 0.95);
}

.btn-back-to-top .icon-svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-primary);
}

/* Order Now */
.btn-order-now {
  background: var(--gradient-saffron);
  color: #0a0a0a;
}

.btn-order-now:hover {
  box-shadow: 0 8px 32px rgba(212, 160, 84, 0.4);
}

.btn-order-now .icon-svg {
  width: 20px;
  height: 20px;
  stroke: #0a0a0a;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }
}

/* ============================================
   THREE.JS HERO PARTICLES
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Allow mouse events to pass through to hero for interaction */
.hero:hover .hero-particles,
.page-hero:hover .hero-particles {
  pointer-events: auto;
}

/* ============================================
   DEVELOPER CREDIT LOGO
   ============================================ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.developer-credit:hover {
  color: var(--color-text-secondary);
}

.developer-credit img {
  height: 22px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  filter: grayscale(0.3);
}

.developer-credit:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* ============================================
   PAGE HERO CTA BUTTONS
   ============================================ */
.page-hero .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.page-hero .hero-content p {
  margin: 0 auto;
  font-size: 1.05rem;
  max-width: 560px;
}

/* ============================================
   CATERING PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: 100px 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.partners-section .section-header h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 3rem;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.partners-section .section-header p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Partners Marquee / Scroll Animation */
.partners-marquee {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-row-2 {
  animation-direction: reverse;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px transparent;
  transition: all 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #ffffff;
}

.partner-card:hover::after {
  box-shadow: inset 0 0 0 2px var(--color-saffron);
}

.partner-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: all 0.4s ease;
  transform: scale(0.95);
  mix-blend-mode: multiply;
}

.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .marquee-content {
    gap: 16px;
    padding-right: 16px;
  }

  .partner-card {
    width: 120px;
    height: 120px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .partner-card {
    width: 100px;
    height: 100px;
    padding: 12px;
  }
}

/* ============================================
   SIPO API — STATUS STRIP
   ============================================ */
.status-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-strip .container {
  padding: 0 16px;
}

.status-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-strip.open {
  background: rgba(21, 128, 61, 0.55);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(21, 128, 61, 0.2);
  color: #fff;
}

.status-strip.closed {
  background: rgba(127, 29, 29, 0.55);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(127, 29, 29, 0.2);
  color: #fff;
}

.status-strip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: status-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.status-strip-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

@media (max-width: 480px) {
  .status-strip {
    font-size: 0.65rem;
  }
}

@keyframes status-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.status-strip .dismiss-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 2px 8px;
  font-size: 1.1rem;
  line-height: 1;
  margin-left: 12px;
  transition: color 0.2s;
}

.status-strip .dismiss-btn:hover {
  color: #fff;
}

/* Navbar offset when status strip is visible */
body.has-status-strip .navbar {
  top: var(--strip-height, 28px);
}

body.has-status-strip .hero,
body.has-status-strip .page-hero {
  margin-top: var(--strip-height, 28px);
}

/* ============================================
   SIPO API — MODALS (Closed / Offer)
   ============================================ */
.sipo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
}

.sipo-modal-overlay.active {
  display: flex;
  animation: modal-fade-in 0.3s ease forwards;
}

@keyframes modal-fade-in {
  to {
    opacity: 1;
  }
}

.sipo-modal {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  animation: modal-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes modal-slide-up {
  to {
    transform: translateY(0) scale(1);
  }
}

.sipo-modal h2,
.sipo-modal h3 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.sipo-modal p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sipo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.sipo-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-primary);
}

.sipo-modal .btn {
  margin-top: 8px;
}

/* Countdown timer in modal */
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-saffron);
  margin-bottom: 16px;
}

.countdown-timer .timer-sep {
  opacity: 0.5;
}

/* ============================================
   HOURS TABLE — TODAY HIGHLIGHT
   ============================================ */
.hours-row.today {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--color-saffron);
  border-radius: 4px;
  padding-left: 12px;
}

.hours-row.today .day {
  color: var(--color-saffron);
  font-weight: 600;
}

.hours-row.today .time {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ============================================
   FOOTER OPENING HOURS
   ============================================ */
.footer-hours {
  margin-top: 8px;
}

.footer-hours-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-saffron);
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours-list li:last-child {
  border-bottom: none;
}

.footer-hours-list li.today {
  color: var(--color-saffron);
  font-weight: 600;
}

.footer-hours-list .day {
  min-width: 32px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-hours-list .time {
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ============================================
   ORDER DISABLED STATE
   ============================================ */
body.ordering-disabled [data-order-url] {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* ============================================
   MOBILE — API COMPONENTS
   ============================================ */
@media (max-width: 768px) {
  .status-strip {
    font-size: 0.75rem;
    padding: 6px 0;
  }

  body.has-status-strip .navbar {
    top: 30px;
  }

  body.has-status-strip .hero,
  body.has-status-strip .page-hero {
    margin-top: 30px;
  }

  .sipo-modal {
    padding: 28px 24px;
    margin: 16px;
  }

  .hours-row.today {
    padding-left: 8px;
  }

  .footer-hours-list {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .status-strip {
    font-size: 0.7rem;
    padding: 5px 0;
  }

  body.has-status-strip .navbar {
    top: 26px;
  }

  body.has-status-strip .hero,
  body.has-status-strip .page-hero {
    margin-top: 26px;
  }

  .sipo-modal {
    padding: 24px 20px;
  }
}