/* ==========================================================================
   PASTEL KAFE — ARTISAN DİJİTAL QR MENÜ SİSTEMİ
   Theme: Craft Coffee Shop & Bakery Edition
   Brand: Pastel Kafe (Artisan Coffee, Bakery & Focaccia — Meram, Konya)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CRAFT THEME FONTS & ASSETS
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'bebas_neuebold';
  src: url('/craft/fonts/bebasneue-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'arkipelagoregular';
  src: url('/craft/fonts/arkipelago-webfont.woff2') format('woff2'),
       url('/craft/fonts/arkipelago-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. CRAFT DESIGN SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Signature Craft Palette */
  --color-espresso: #18110D;
  --color-espresso-card: #231914;
  --color-espresso-border: #382921;
  --color-cream-bg: #FAF6F0;
  --color-cream-surface: #FFFFFF;
  --color-sand: #F2E9DE;
  --color-sand-border: #E8DED4;
  
  /* Metallic Gold & Vintage Accents */
  --color-gold: #C59B42;
  --color-gold-hover: #D8AF54;
  --color-gold-light: #FAF2E3;
  --color-gold-glow: rgba(197, 155, 66, 0.35);

  /* Rose & Sage Accents */
  --color-rose: #9B4D63;
  --color-rose-hover: #823C51;
  --color-rose-light: #F7E8EC;
  --color-sage: #557A68;
  --color-sage-light: #EBF3EE;

  /* Typography Colors */
  --color-text-dark: #1F1511;
  --color-text-muted: #6B5B53;
  --color-text-light: #EFE7DE;
  --color-text-dim: #9C8B82;

  /* Legacy DM Tokens Mapped to Craft */
  --dm-bgcolor: var(--color-cream-bg);
  --dm-surface: var(--color-cream-surface);
  --dm-color: var(--color-text-dark);
  --dm-muted: var(--color-text-muted);
  --dm-border: var(--color-sand-border);

  --pastel-rose: var(--color-gold);
  --pastel-rose-light: var(--color-gold-light);
  --pastel-mint: var(--color-sage);
  --pastel-mint-light: var(--color-sage-light);
  --pastel-gold: var(--color-gold);
  --pastel-gold-light: var(--color-gold-light);
  --pastel-sand: var(--color-sand);
  --pastel-espresso: var(--color-espresso);

  /* Typography Hierarchies */
  --primary-font: 'bebas_neuebold', 'Oswald', sans-serif;
  --script-font: 'arkipelagoregular', cursive;
  --serif-title: 'Playfair Display', Georgia, serif;
  --ui-font: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radii & Shadows */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(24, 17, 13, 0.05);
  --shadow-md: 0 6px 20px rgba(24, 17, 13, 0.08);
  --shadow-lg: 0 14px 34px rgba(24, 17, 13, 0.16);
  --shadow-gold: 0 6px 22px rgba(197, 155, 66, 0.32);
  --shadow-espresso: 0 10px 30px rgba(24, 17, 13, 0.5);

  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--dm-bgcolor);
}

body {
  font-family: var(--ui-font);
  color: var(--dm-color);
  background-color: var(--dm-bgcolor);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* --------------------------------------------------------------------------
   4. STICKY HEADER (Appears on scroll)
   -------------------------------------------------------------------------- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(24, 17, 13, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 155, 66, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  z-index: 900;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.sticky-header.not-showing {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-header__content {
  max-width: 600px;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-header__title a {
  font-family: var(--primary-font);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.sticky-header__title a:hover {
  color: var(--color-gold);
}

.sticky-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-header .btn-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(197, 155, 66, 0.4);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.sticky-header .btn-icon:hover {
  background: var(--color-gold);
  color: var(--color-espresso);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(197, 155, 66, 0.4);
}

/* --------------------------------------------------------------------------
   5. SIDE达PAGE HERO SECTION (Artisan Cafe Visual Identity)
   -------------------------------------------------------------------------- */
.sidepage-hero {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background-color: var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3.5px solid var(--color-gold);
  box-shadow: 0 8px 28px rgba(24, 17, 13, 0.35);
}

.sidepage-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.03);
  transition: transform 7s ease-out;
}

.sidepage-hero:hover .sidepage-hero__bg {
  transform: scale(1.08);
}

.sidepage-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(24, 17, 13, 0.6) 0%, 
    rgba(24, 17, 13, 0.35) 45%, 
    rgba(24, 17, 13, 0.88) 100%
  );
}

.sidepage-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}

/* Circular Logo with Artisan Gold Ring */
.sidepage-hero__logo-link {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 8px;
}

.sidepage-hero__logo-link:hover {
  transform: scale(1.05);
}

.sidepage-hero__logo--l {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3.5px solid var(--color-gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), 0 0 20px rgba(197, 155, 66, 0.35);
  background: var(--color-espresso);
}

.hero-brand-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.hero-brand-title {
  font-family: var(--primary-font);
  font-size: 1.85rem;
  letter-spacing: 3px;
  color: #FFFFFF;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
  line-height: 1.1;
}

.hero-brand-subtitle {
  font-family: var(--script-font);
  font-size: 1.25rem;
  color: var(--color-gold);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
}

/* Hero Corner Action Buttons */
.hero-corner-btn {
  position: absolute;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(24, 17, 13, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid rgba(197, 155, 66, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.hero-corner-btn.left {
  left: 18px;
  letter-spacing: 1px;
}

.hero-corner-btn.right {
  right: 18px;
}

.hero-corner-btn:hover, .hero-corner-btn:active {
  background: var(--color-gold);
  color: var(--color-espresso);
  transform: translateY(-2px) scale(1.06);
  box-shadow: var(--shadow-gold);
  border-color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   6. MAIN CONTAINER & ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.sections-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 18px 16px 44px;
  flex: 1;
}

/* Announcement Bar: Artisan Brass Frame Styling */
.announcement-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 155, 66, 0.28);
  border-left: 5px solid var(--color-gold);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(24, 17, 13, 0.05);
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 155, 66, 0.05));
  pointer-events: none;
}

.announcement-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-gold-light);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(197, 155, 66, 0.2);
}

.announcement-text strong {
  display: block;
  font-family: var(--primary-font);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: var(--color-espresso);
  line-height: 1.2;
  margin-bottom: 2px;
}

.announcement-text p {
  font-family: var(--ui-font);
  font-size: 0.85rem;
  color: var(--dm-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. VIEW SWITCHER (Vintage Segmented Control)
   -------------------------------------------------------------------------- */
.view-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: #EFE8DE;
  border: 1px solid rgba(197, 155, 66, 0.3);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(24, 17, 13, 0.04);
}

.view-switcher__label {
  font-family: var(--primary-font);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--color-espresso);
  margin-right: 6px;
}

.view-switcher__btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: var(--dm-muted);
  border: 1px solid rgba(197, 155, 66, 0.2);
  font-size: 0.95rem;
  transition: var(--transition);
}

.view-switcher__btn.is-active {
  background: var(--color-espresso);
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 3px 10px rgba(197, 155, 66, 0.35);
  transform: scale(1.04);
}

.view-switcher__btn:hover:not(.is-active) {
  background: var(--color-gold-light);
  color: var(--color-espresso);
  border-color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   8. BENTO CATEGORY GRID (Craft Coffee Shop Theme Cards)
   -------------------------------------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.menu-grid-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
  border: 1.5px solid rgba(197, 155, 66, 0.22);
}

.menu-grid-item:hover, .menu-grid-item:active {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(24, 17, 13, 0.22), 0 0 0 2px var(--color-gold);
  border-color: var(--color-gold);
}

/* Deep Espresso Gradient Scrim */
.menu-grid-item .black-box {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(24, 17, 13, 0.18) 0%, 
    rgba(24, 17, 13, 0.5) 40%, 
    rgba(24, 17, 13, 0.85) 100%
  );
  transition: background 0.3s ease;
}

.menu-grid-item:hover .black-box {
  background: linear-gradient(180deg, 
    rgba(24, 17, 13, 0.25) 0%, 
    rgba(24, 17, 13, 0.6) 40%, 
    rgba(24, 17, 13, 0.92) 100%
  );
}

/* Category Title Text */
.menu-grid-item .text-box {
  position: relative;
  z-index: 2;
  font-family: var(--primary-font);
  font-size: 1.45rem;
  letter-spacing: 2.2px;
  color: #FFFFFF;
  text-align: center;
  padding: 14px 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 16px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

/* Bento Sizing Hierarchy */
.menu-grid-item.style-wide {
  grid-column: span 2;
  height: 160px;
}

.menu-grid-item.style-tall {
  grid-column: span 1;
  height: 290px;
}

.menu-grid-item.style-half {
  grid-column: span 1;
  height: 155px;
}

/* Bento Split Row: 1 Tall Column + 1 Stack Column */
.bento-split-row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bento-stack-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-stack-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid rgba(197, 155, 66, 0.22);
}

.bento-stack-card:hover, .bento-stack-card:active {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(24, 17, 13, 0.18), 0 0 0 2px var(--color-gold);
  border-color: var(--color-gold);
}

.bento-stack-card .black-box {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(24, 17, 13, 0.2) 0%, 
    rgba(24, 17, 13, 0.82) 100%
  );
}

.bento-stack-card .text-box {
  position: relative;
  z-index: 2;
  font-family: var(--primary-font);
  font-size: 1.15rem;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  text-align: center;
  padding: 10px;
}

/* Şefin Seçtikleri (Chef's Specials Pill) */
.bento-tag-pill {
  height: 52px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 155, 66, 0.35);
  box-shadow: 0 3px 12px rgba(24, 17, 13, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-tag-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-espresso) 100%);
}

.bento-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-sparkle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(197, 155, 66, 0.25);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.pill-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pill-title {
  font-family: var(--primary-font);
  font-size: 1.15rem;
  letter-spacing: 1.2px;
  color: var(--color-espresso);
  line-height: 1.1;
}

.pill-sub {
  font-family: var(--script-font);
  font-size: 0.95rem;
  color: var(--color-gold);
  line-height: 1.1;
}

.pill-arrow {
  color: var(--color-gold);
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.bento-tag-pill:hover,
.bento-tag-pill:active {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.bento-tag-pill:hover .pill-sparkle {
  transform: scale(1.12) rotate(18deg);
}

.bento-tag-pill:hover .pill-arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. CAFE CONCIERGE ACTION BUTTONS (Yol Tarifi, Instagram, Rezervasyon)
   -------------------------------------------------------------------------- */
.bento-action-pill {
  height: 52px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 155, 66, 0.25);
  box-shadow: 0 3px 12px rgba(24, 17, 13, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.action-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.action-icon-circle.mint {
  background: var(--color-sage-light);
  color: var(--color-sage);
}

.action-icon-circle.rose {
  background: var(--color-rose-light);
  color: var(--color-rose);
}

.action-icon-circle.gold {
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.action-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.action-main-text {
  font-family: var(--primary-font);
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--color-espresso);
  line-height: 1.15;
}

.action-sub-text {
  font-family: var(--ui-font);
  font-size: 0.76rem;
  color: var(--dm-muted);
  letter-spacing: 0.3px;
}

.action-chevron {
  color: var(--color-gold);
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.bento-action-pill:hover,
.bento-action-pill:active {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  box-shadow: 0 8px 22px rgba(24, 17, 13, 0.08);
}

.bento-action-pill:hover .action-icon-circle {
  transform: scale(1.1);
}

.bento-action-pill:hover .action-chevron {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   10. CATEGORY DETAIL VIEW
   -------------------------------------------------------------------------- */
.category-header-banner {
  position: relative;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 26px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(197, 155, 66, 0.3);
}

.category-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.category-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, 
    rgba(24, 17, 13, 0.92) 0%, 
    rgba(24, 17, 13, 0.5) 50%, 
    rgba(24, 17, 13, 0.2) 100%
  );
}

.category-header-content {
  position: relative;
  z-index: 2;
  padding: 18px 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-category-header-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 17, 13, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--color-gold);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--primary-font);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  margin-bottom: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  width: fit-content;
}

.btn-category-header-back i {
  font-size: 0.95rem;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}

.btn-category-header-back:hover {
  background: var(--color-gold);
  color: var(--color-espresso);
  transform: translateX(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-category-header-back:hover i {
  color: var(--color-espresso);
  transform: translateX(-2px);
}

.category-header-title {
  font-family: var(--primary-font);
  font-size: 2.1rem;
  letter-spacing: 2.8px;
  color: #FFFFFF;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   11. FOOD / ITEM CARDS (Craft Theme Shop/Menu Style)
   -------------------------------------------------------------------------- */
.items-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.item-box {
  display: flex;
  background: #FFFFFF;
  border: 1px solid var(--color-sand-border);
  border-radius: var(--radius-md);
  padding: 16px;
  gap: 16px;
  box-shadow: 0 3px 14px rgba(24, 17, 13, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.item-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 17, 13, 0.08);
  border-color: var(--color-gold);
}

.item-image {
  width: 98px;
  height: 98px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
  background-color: var(--color-sand);
  border: 1px solid rgba(24, 17, 13, 0.06);
  transition: transform 0.3s ease;
}

.item-image:hover {
  transform: scale(1.04);
}

.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.primary-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}

.primary-title {
  font-family: var(--serif-title);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-espresso);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1.25;
}

.primary-title:hover {
  color: var(--color-gold);
}

/* Dotted Leader Line (Artisan Menu Dot Leader) */
.primary-dots {
  flex: 1;
  border-bottom: 1.5px dotted #D6C7BF;
  margin: 0 8px;
  transform: translateY(-4px);
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--primary-font);
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--color-gold);
  font-weight: 700;
  white-space: nowrap;
}

.price-box .currency {
  font-size: 1.05rem;
  margin-left: 2px;
}

.item-desc {
  font-family: var(--ui-font);
  font-size: 0.85rem;
  color: var(--dm-muted);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tags & Dietary Row */
.item-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.diet-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.diet-icon {
  width: 20px;
  height: 20px;
  color: var(--color-sage);
  display: inline-block;
  vertical-align: middle;
}

.calorie-pill {
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--color-sage-light);
  color: var(--color-sage);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.item-tag-pill {
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--color-gold-light);
  color: var(--color-gold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 155, 66, 0.2);
}

/* Quick Add Button (Artisan Badge) */
.btn-add-item {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-espresso);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(24, 17, 13, 0.25);
}

.btn-add-item:hover, .btn-add-item:active {
  background: var(--color-gold);
  color: var(--color-espresso);
  transform: scale(1.12);
  box-shadow: var(--shadow-gold);
}

/* --------------------------------------------------------------------------
   12. SINGLE PAGE VIEW (Horizontal Slider + Categorized Sections)
   -------------------------------------------------------------------------- */
.sp-nav-wrapper {
  position: sticky;
  top: 60px;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 800;
  margin: -10px -16px 20px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--dm-border);
}

.sp-category-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sp-category-nav::-webkit-scrollbar {
  display: none;
}

.sp-category-chip {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--dm-border);
  color: var(--dm-muted);
  font-family: var(--primary-font);
  font-size: 1rem;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: var(--transition);
}

.sp-category-chip.active, .sp-category-chip:hover {
  background: var(--color-espresso);
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 3px 10px rgba(197, 155, 66, 0.35);
}

.sp-section-block {
  margin-bottom: 34px;
}

.sp-section-title {
  font-family: var(--primary-font);
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: var(--color-espresso);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* --------------------------------------------------------------------------
   13. ZEN VIEW (Minimalist Text List)
   -------------------------------------------------------------------------- */
.zen-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.zen-section-title {
  font-family: var(--primary-font);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--color-espresso);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 6px;
  margin-bottom: 14px;
}

.zen-item-row {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(214, 199, 191, 0.7);
  cursor: pointer;
  transition: var(--transition);
}

.zen-item-row:hover {
  background: rgba(255, 255, 255, 0.5);
  padding-left: 6px;
}

.zen-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.zen-item-name {
  font-family: var(--serif-title);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-espresso);
}

.zen-dots {
  flex: 1;
  border-bottom: 1.5px dotted #D6C7BF;
  margin: 0 10px;
}

.zen-price {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.zen-item-desc {
  font-family: var(--ui-font);
  font-size: 0.84rem;
  color: var(--dm-muted);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   14. FLOATING ACTION BUTTONS: "Menüye Dön" & "Siparişim"
   -------------------------------------------------------------------------- */
.dm-action-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: linear-gradient(135deg, #18110D 0%, #291D17 100%);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--primary-font);
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 28px rgba(24, 17, 13, 0.5), 0 0 16px rgba(197, 155, 66, 0.25);
  z-index: 850;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid var(--color-gold);
}

.dm-action-btn i {
  color: var(--color-gold);
  font-size: 1.05rem;
}

.dm-action-btn--back {
  left: 20px;
  right: auto;
}

.dm-action-btn--back i {
  transition: transform 0.2s ease;
}

.dm-action-btn--back:hover i {
  transform: translateX(-3px);
}

.dm-action-btn:hover,
.dm-action-btn:active {
  transform: translateY(-3px) scale(1.03);
  border-color: #E2B961;
  box-shadow: 0 14px 34px rgba(24, 17, 13, 0.65), 0 0 24px rgba(197, 155, 66, 0.45);
}

.number-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  background: var(--color-gold);
  color: var(--color-espresso);
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui-font);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--color-espresso);
}

@media (max-width: 480px) {
  .dm-action-btn {
    bottom: 18px;
    right: 14px;
    padding: 10px 18px;
    font-size: 0.95rem;
    gap: 8px;
  }
  .dm-action-btn--back {
    left: 14px;
    right: auto;
    padding: 10px 18px;
    font-size: 0.95rem;
    gap: 8px;
  }
}

/* --------------------------------------------------------------------------
   15. MODALS & BOTTOM SHEETS (Craft Theme Modal Styling)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 17, 13, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 600px;
  margin: 0 auto;
  max-height: 88vh;
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  border-top: 3.5px solid var(--color-gold);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-sheet.hidden, .modal-backdrop.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-sheet.hidden {
  transform: translateY(100%);
}

.modal-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--dm-border);
  background: var(--dm-bgcolor);
}

.modal-sheet-title {
  font-family: var(--primary-font);
  font-size: 1.45rem;
  letter-spacing: 1.8px;
  color: var(--color-espresso);
}

.btn-close-modal {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFE7DE;
  color: var(--color-espresso);
  border: 1px solid rgba(197, 155, 66, 0.3);
  font-size: 1rem;
  transition: var(--transition);
}

.btn-close-modal:hover {
  background: var(--color-gold);
  color: var(--color-espresso);
}

.modal-sheet-body {
  padding: 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Item Detail Modal Specifics */
.modal-item-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  border: 1px solid rgba(24, 17, 13, 0.08);
}

.modal-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal-item-name {
  font-family: var(--serif-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-espresso);
}

.modal-item-price {
  font-family: var(--primary-font);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--color-gold);
  font-weight: 700;
}

.modal-item-desc {
  font-family: var(--ui-font);
  font-size: 0.95rem;
  color: var(--dm-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.modal-section-title {
  font-family: var(--primary-font);
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  color: var(--color-espresso);
  margin-bottom: 8px;
}

.modal-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.modal-chip {
  background: var(--dm-bgcolor);
  border: 1px solid var(--dm-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-espresso);
}

.modal-allergen-alert {
  background: var(--color-gold-light);
  border: 1px solid rgba(197, 155, 66, 0.35);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.84rem;
  color: #7A5B17;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-note-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--dm-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 22px;
  outline: none;
  background: var(--dm-bgcolor);
  font-family: var(--ui-font);
}

.modal-note-input:focus {
  border-color: var(--color-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 155, 66, 0.15);
}

.modal-qty-add-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-controller {
  display: flex;
  align-items: center;
  background: var(--dm-bgcolor);
  border: 1px solid var(--dm-border);
  border-radius: var(--radius-full);
  padding: 4px 8px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-espresso);
  background: #FFFFFF;
  border: 1px solid var(--dm-border);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--color-gold);
  color: var(--color-espresso);
}

.qty-count {
  width: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-espresso);
}

.btn-modal-add {
  flex: 1;
  background: linear-gradient(135deg, var(--color-gold) 0%, #B88E36 100%);
  color: var(--color-espresso);
  padding: 13px 22px;
  border-radius: var(--radius-full);
  font-family: var(--primary-font);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-modal-add:hover {
  background: linear-gradient(135deg, #D4AB50 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 155, 66, 0.45);
}

/* --------------------------------------------------------------------------
   16. SEARCH MODAL
   -------------------------------------------------------------------------- */
.search-input-wrapper {
  position: relative;
  margin-bottom: 14px;
}

.search-input {
  width: 100%;
  padding: 13px 44px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--dm-border);
  background: var(--dm-bgcolor);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  font-family: var(--ui-font);
}

.search-input:focus {
  border-color: var(--color-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(197, 155, 66, 0.15);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
}

.btn-clear-search {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dm-muted);
  font-size: 1rem;
}

.search-tags {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 16px;
  padding-bottom: 4px;
}

.search-tag {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--dm-bgcolor);
  border: 1px solid var(--dm-border);
  font-family: var(--primary-font);
  font-size: 0.92rem;
  letter-spacing: 0.8px;
  color: var(--dm-muted);
  white-space: nowrap;
  transition: var(--transition);
}

.search-tag.active {
  background: var(--color-espresso);
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 2px 8px rgba(197, 155, 66, 0.3);
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 52vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--dm-bgcolor);
  border-radius: var(--radius-sm);
  border: 1px solid var(--dm-border);
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: #FFFFFF;
  border-color: var(--color-gold);
  box-shadow: 0 4px 14px rgba(24, 17, 13, 0.06);
}

.search-result-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.06);
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-family: var(--serif-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-espresso);
}

.search-result-price {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   17. CART & ORDER MODAL
   -------------------------------------------------------------------------- */
.order-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--dm-border);
  margin-bottom: 18px;
}

.order-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-family: var(--primary-font);
  letter-spacing: 1.5px;
  font-size: 1.1rem;
  color: var(--dm-muted);
  border-bottom: 2.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.order-tab.is-active {
  color: var(--color-espresso);
  border-color: var(--color-gold);
}

.tab-badge {
  background: var(--color-gold);
  color: var(--color-espresso);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-family: var(--ui-font);
  font-size: 0.72rem;
  font-weight: 800;
  margin-left: 6px;
}

.modal-sheet-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-table-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--color-sage-light);
  color: var(--color-sage);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(85, 122, 104, 0.3);
}

.quick-service-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.quick-service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--dm-border);
  background: #FFFFFF;
  color: var(--color-espresso);
  font-family: var(--primary-font);
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.quick-service-btn i {
  color: var(--color-gold);
}

.quick-service-btn:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold);
  color: var(--color-espresso);
  transform: translateY(-1px);
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 38vh;
  overflow-y: auto;
  margin-bottom: 18px;
  padding-right: 4px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid var(--dm-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(24, 17, 13, 0.04);
  gap: 12px;
  transition: var(--transition);
}

.cart-item-row:hover {
  border-color: var(--color-gold);
}

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

.cart-item-info strong {
  display: block;
  font-family: var(--serif-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: 2px;
}

.cart-item-info small {
  color: var(--color-gold);
  font-family: var(--primary-font);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Table Selector & Service Type */
.table-unverified-card {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--dm-bgcolor);
  border: 1.5px solid var(--dm-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.unverified-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.unverified-label {
  font-family: var(--primary-font);
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--color-espresso);
  display: flex;
  align-items: center;
  gap: 8px;
}

.unverified-label i {
  color: var(--color-gold);
}

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

.service-type-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--dm-border);
  background: #FFFFFF;
  cursor: pointer;
  font-family: var(--ui-font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dm-muted);
  transition: var(--transition);
}

.service-type-option.is-active {
  background: var(--color-espresso);
  border-color: var(--color-gold);
  color: var(--color-gold);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(197, 155, 66, 0.25);
}

.service-type-option input[type="radio"] {
  display: none;
}

.table-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label-sm {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dm-muted);
}

.select-styled-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.form-select-styled {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--dm-border);
  background: #FFFFFF;
  font-family: var(--ui-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-espresso);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.form-select-styled:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 66, 0.2);
}

.select-prefix-icon {
  position: absolute;
  left: 14px;
  color: var(--color-gold);
  font-size: 0.95rem;
  pointer-events: none;
}

.table-security-notice {
  font-size: 0.78rem;
  color: #7A6961;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 4px;
  padding: 8px 10px;
  background: rgba(197, 155, 66, 0.08);
  border-radius: 8px;
}

.order-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 540px) {
  .order-inputs-grid {
    grid-template-columns: 1fr;
  }
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--color-gold);
  font-size: 0.95rem;
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 38px;
}

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

.field-label {
  font-family: var(--primary-font);
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  color: var(--color-espresso);
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--dm-border);
  background: #FFFFFF;
  font-family: var(--ui-font);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 66, 0.2);
}

.cart-summary-box {
  background: var(--dm-bgcolor);
  border: 1px solid var(--dm-border);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--dm-muted);
}

.summary-line.total-row {
  border-top: 1.5px dashed var(--dm-border);
  padding-top: 10px;
  margin-top: 4px;
  font-family: var(--primary-font);
  font-size: 1.45rem;
  letter-spacing: 1px;
  color: var(--color-espresso);
}

.summary-line.total-row strong {
  color: var(--color-gold);
}

.order-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.btn-send-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-full);
  font-family: var(--primary-font);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-send-order.primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, #B88E36 100%);
  color: var(--color-espresso);
  box-shadow: var(--shadow-gold);
}

.btn-send-order.primary:hover {
  background: linear-gradient(135deg, #D4AB50 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 155, 66, 0.45);
}

.btn-send-order.whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-send-order.whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   18. SITE FOOTER (Artisan Espresso & Gold Craft Branding)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-espresso);
  border-top: 3px solid var(--color-gold);
  padding: 42px 20px 54px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.social-footer {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.social-footer-item.instagram {
  color: var(--color-gold);
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-footer-item.instagram:hover {
  color: #FFFFFF;
  transform: scale(1.15);
}

.footer-company-name {
  font-family: var(--primary-font);
  font-size: 1.7rem;
  letter-spacing: 2.5px;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: block;
}

.footer-company-address {
  font-family: var(--ui-font);
  font-size: 0.88rem;
  color: #C5B6AA;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 400px;
}

.footer-company-address .text-link {
  color: var(--color-gold);
  font-weight: 600;
}

.footer-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 600;
  background: rgba(197, 155, 66, 0.12);
  border: 1px solid rgba(197, 155, 66, 0.3);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}

.btn-footer-page {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background: #231914;
  border: 1px solid rgba(197, 155, 66, 0.35);
  color: #EFE7DE;
  font-family: var(--primary-font);
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-footer-page:hover {
  background: var(--color-gold);
  color: var(--color-espresso);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(197, 155, 66, 0.35);
}

.footer-credits {
  font-size: 0.76rem;
  color: #8C7B72;
}

/* --------------------------------------------------------------------------
   19. TOAST NOTIFICATION & UTILITIES
   -------------------------------------------------------------------------- */
.toast-message {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(24, 17, 13, 0.95);
  border: 1.5px solid var(--color-gold);
  color: #FFFFFF;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--ui-font);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  pointer-events: none;
  animation: toastFadeIn 0.3s ease;
}

@keyframes toastFadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES (TABLET & DESKTOP)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .sticky-header__content {
    max-width: 900px;
    padding: 0 24px;
  }

  .sidepage-hero {
    height: 380px;
  }

  .sidepage-hero__content {
    max-width: 900px;
  }

  .sidepage-hero__logo--l {
    width: 155px;
    height: 155px;
  }

  .sections-content {
    max-width: 900px;
    padding: 24px 20px 60px;
  }

  .items-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .sp-sections-container .items-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .menu-grid-item.style-wide {
    height: 190px;
  }

  .menu-grid-item.style-tall {
    height: 340px;
  }
}

@media (min-width: 1024px) {
  .sticky-header__content {
    max-width: 1180px;
    padding: 0 32px;
  }

  .sidepage-hero {
    height: 420px;
  }

  .sidepage-hero__content {
    max-width: 1180px;
  }

  .sidepage-hero__logo--l {
    width: 180px;
    height: 180px;
  }

  .sections-content {
    max-width: 1180px;
    padding: 34px 24px 80px;
  }

  .menu-grid {
    gap: 20px;
  }

  .menu-grid-item.style-wide {
    height: 230px;
  }

  .menu-grid-item.style-tall {
    height: 410px;
  }

  .bento-stack-card {
    height: 145px;
  }

  .items-container {
    gap: 22px;
  }
}
