/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  height: 72px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo-img-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 15px var(--gold-glow);
  transition: transform var(--transition-normal);
  overflow: hidden;
}
.site-header.scrolled .brand-logo-img-wrapper {
  width: 44px;
  height: 44px;
}
.brand-logo:hover .brand-logo-img-wrapper {
  transform: rotate(5deg) scale(1.05);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Live Status Badge */
.live-status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
}
.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s infinite ease-in-out;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  z-index: 1100;
}
.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 2rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    transition: right var(--transition-smooth);
    z-index: 1050;
  }
  .nav-menu.open {
    right: 0;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-actions .btn-header-cta {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: var(--bg-dark);
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: slowZoom 20s infinite alternate ease-in-out;
  filter: brightness(0.65) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center 40%, rgba(10, 9, 8, 0.45) 0%, rgba(10, 9, 8, 0.88) 75%, #0a0908 100%);
  z-index: 2;
}

#embers-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(200, 157, 86, 0.12);
  border: 1px solid var(--gold-border-bright);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero-badge i {
  color: var(--flame-light);
}
.hero-badge span {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: rgba(18, 16, 14, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-gold);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero-features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .hero-stat-item:nth-child(2)::after {
    display: none;
  }
}

/* ==========================================================================
   STORY & HERITAGE SECTION
   ========================================================================== */
.story-section {
  position: relative;
  background-color: var(--bg-surface);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-main-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.8);
}
.story-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.story-visual:hover .story-img-main {
  transform: scale(1.03);
}

.story-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg), 0 0 25px var(--gold-glow);
}

.experience-years {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.experience-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-quote {
  font-family: var(--font-subheading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-lighter);
  border-left: 3px solid var(--gold-primary);
  padding-left: 1.25rem;
  margin: 1.5rem 0 2rem 0;
  line-height: 1.6;
}

.story-pill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.story-pill-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.story-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 157, 86, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.story-pill-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.story-pill-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-experience-badge {
    right: 10px;
    bottom: 10px;
  }
}

/* ==========================================================================
   SABAH CİĞERİ RİTÜELİ (SPECIAL FEATURE)
   ========================================================================== */
.morning-ritual-section {
  position: relative;
  background: radial-gradient(circle at center, rgba(230, 92, 0, 0.08) 0%, var(--bg-dark) 70%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

.morning-box-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: linear-gradient(135deg, rgba(24, 20, 16, 0.95) 0%, rgba(14, 12, 10, 0.98) 100%);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(230, 92, 0, 0.15);
  overflow: hidden;
}

.morning-box-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.morning-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(230, 92, 0, 0.15);
  border: 1px solid rgba(230, 92, 0, 0.4);
  color: #ff9d42;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.morning-box-media {
  position: relative;
  min-height: 380px;
}
.morning-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .morning-box-card {
    grid-template-columns: 1fr;
  }
  .morning-box-content {
    padding: 2.25rem 1.5rem;
  }
  .morning-box-media {
    min-height: 280px;
  }
}

/* ==========================================================================
   DIGITAL MENU & ORDER SIMULATOR
   ========================================================================== */
.menu-section {
  position: relative;
  background-color: var(--bg-dark);
}

.menu-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.menu-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}
.menu-filter-btn:hover {
  background: rgba(200, 157, 86, 0.1);
  border-color: var(--gold-border);
  color: var(--gold-light);
}
.menu-filter-btn.active {
  background: var(--gold-gradient);
  color: #120e06;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(200, 157, 86, 0.35);
}

/* Menu Search Bar */
.menu-search-box {
  max-width: 420px;
  margin: 0 auto 3rem auto;
  position: relative;
}

.menu-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all var(--transition-normal);
}
.menu-search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(200, 157, 86, 0.2);
}
.menu-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 1rem;
}

/* Menu Items Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

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

.menu-card {
  background: var(--stone-card-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}
.menu-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(200, 157, 86, 0.15);
}

.menu-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

.menu-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge-special {
  background: var(--flame-gradient);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.badge-certified {
  background: var(--gold-gradient);
  color: #120e06;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.menu-card-price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--gold-primary);
  color: var(--gold-lighter);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.menu-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.menu-card-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.menu-card-side-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-subtle);
  padding-top: 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-card-side-info i {
  color: var(--gold-light);
}

.menu-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Floating Cart Trigger Button */
.floating-cart-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold-gradient);
  color: #120e06;
  border-radius: var(--radius-full);
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 35px rgba(200, 157, 86, 0.45);
  z-index: 990;
  transition: all var(--transition-normal);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.floating-cart-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 40px rgba(200, 157, 86, 0.6);
}
.cart-badge-count {
  background: #120e06;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Slide-out Drawer */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.cart-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--gold-border-bright);
  z-index: 1250;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
  transition: right var(--transition-smooth);
}
.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--text-muted);
  gap: 1rem;
}
.cart-empty-state i {
  font-size: 3rem;
  color: var(--gold-border);
}

.cart-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.cart-item-type {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.cart-item-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold-lighter);
}

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

.qty-control-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.qty-btn:hover {
  background: var(--gold-primary);
  color: #120e06;
}
.qty-display {
  font-size: 0.875rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove-btn {
  color: #ef4444;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-drawer-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(14, 12, 10, 0.95);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cart-total-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.cart-total-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

.cart-notes-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  resize: none;
}

/* ==========================================================================
   GALLERY & INSTAGRAM FEED
   ========================================================================== */
.gallery-section {
  position: relative;
  background-color: var(--bg-surface);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}
.gallery-filter-tab.active, .gallery-filter-tab:hover {
  background: rgba(200, 157, 86, 0.15);
  border-color: var(--gold-border-bright);
  color: var(--gold-light);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 290px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}
.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 9, 8, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}
.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
}
.gallery-card-sub {
  font-size: 0.8125rem;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }
}

/* Instagram Live Social Card */
.instagram-promo-card {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(30, 24, 18, 0.9) 0%, rgba(18, 14, 12, 0.95) 100%);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.insta-promo-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.insta-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(214, 36, 159, 0.35);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  position: relative;
  background-color: var(--bg-dark);
}

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

.review-card {
  background: var(--stone-card-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}
.review-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 1.25rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.review-author-group {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 157, 86, 0.2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.review-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESERVATION & CONTACT SECTION
   ========================================================================== */
.reservation-section {
  position: relative;
  background: var(--bg-surface);
}

.reservation-container-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all var(--transition-normal);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(200, 157, 86, 0.2);
}

.form-select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.contact-info-card {
  background: var(--stone-card-gradient);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 157, 86, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.map-embed-wrapper {
  margin-top: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 200px;
}

@media (max-width: 900px) {
  .reservation-container-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #060505;
  border-top: 1px solid var(--border-gold);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 1.25rem 0 1.75rem 0;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}
.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MOBILE FLOATING ACTION BAR
   ========================================================================== */
.mobile-sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold-border);
  padding: 0.75rem 1rem;
  z-index: 980;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}
.mobile-action-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-sticky-action-bar {
    display: block;
  }
  .floating-cart-btn {
    bottom: 75px;
    right: 15px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ==========================================================================
   LIGHTBOX MODAL & FOOD DETAIL DIALOG
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-modal.active {
  display: flex;
}
.lightbox-content-box {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}
.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2rem;
}
.lightbox-caption {
  text-align: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  margin-top: 1rem;
}

/* Native dialog / modal styles */
dialog.food-modal {
  border: 1px solid var(--gold-border-bright);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 640px;
  width: 90%;
  color: var(--text-primary);
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(200, 157, 86, 0.2);
}
dialog.food-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}
