/* ==========================================================================
   DUMMORA - BRAND & STYLESHEET
   Crafted with Dum. Served with Pride.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --color-bg-deep: #09090b;
  --color-bg-card: #131211;
  --color-bg-card-border: #312818;
  --color-bg-light: #F7F3E9;
  --color-bg-cream: #FAF6ED;
  --color-text-cream: #F5EFE6;
  --color-text-muted: #BDB29F;
  --color-text-dark: #1F1912;
  --color-text-dark-sub: #5C5245;

  /* Metallic Gold Palette */
  --gold-primary: #E5B242;
  --gold-light: #FCE082;
  --gold-dark: #B88318;
  --gold-gradient: linear-gradient(135deg, #FCE082 0%, #E5B242 50%, #B88318 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFF0A8 0%, #F5C252 50%, #C89328 100%);
  --gold-shadow: 0 8px 24px rgba(229, 178, 66, 0.25);
  --gold-border: 1px solid rgba(229, 178, 66, 0.35);

  /* Typography */
  --font-heading-serif: 'Playfair Display', Georgia, serif;
  --font-brand-cinzel: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', 'Reenie Beanie', cursive;

  /* Layout */
  --max-width: 1240px;
  --header-height: 84px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 178, 66, 0.07) 0%, rgba(9, 9, 11, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   3. Typography & Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 50px;
}

.ornament-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  color: #B88318;
  font-weight: 700;
  margin-bottom: 8px;
}

.header-tag {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-title.dark-text {
  color: var(--color-text-dark);
}

.section-title.light-text {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
}

.section-subtitle.dark-sub {
  color: var(--color-text-dark-sub);
}

.section-subtitle.light-sub {
  color: #BDB29F;
}

/* --------------------------------------------------------------------------
   4. Buttons & UI Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #1a1202;
  box-shadow: var(--gold-shadow);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(229, 178, 66, 0.4);
}

.btn-large {
  padding: 14px 34px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.btn-card-gold {
  background: var(--gold-gradient);
  color: #181103;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  width: 100%;
  box-shadow: 0 4px 14px rgba(229, 178, 66, 0.2);
}

.btn-card-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 178, 66, 0.35);
}

.arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   5. Sticky Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 178, 66, 0.12);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: rgba(9, 9, 11, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 72px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(229, 178, 66, 0.25));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 3px 14px rgba(229, 178, 66, 0.45));
}

.footer-logo-img {
  height: 86px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(229, 178, 66, 0.2));
}

.drawer-logo-img {
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

/* Navigation Links */
.nav-menu {
  display: block;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-cream);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-btn {
  position: relative;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid rgba(229, 178, 66, 0.25);
  background: rgba(229, 178, 66, 0.05);
}

.cart-btn:hover {
  background: rgba(229, 178, 66, 0.15);
  border-color: var(--gold-primary);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #E5B242;
  color: #120e04;
  font-size: 0.72rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #11100f;
  border-left: 1px solid rgba(229, 178, 66, 0.2);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
}

.logo-title-mini {
  font-family: var(--font-brand-cinzel);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
}

.close-drawer-btn {
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-cream);
  display: block;
  padding: 4px 0;
}

.mobile-link:hover {
  color: var(--gold-light);
}

.mobile-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-phone {
  font-size: 0.88rem;
  color: var(--gold-light);
  text-align: center;
}

.w-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  background-color: #09090b;
  background-image: url('../images/hero banner.png');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
}

/* Left Hero Content */
.hero-headline-wrap {
  margin-bottom: 16px;
}

.hero-script-top {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: #F8E7BE;
  line-height: 1.1;
  font-weight: 600;
  transform: rotate(-1.5deg);
  display: block;
}

.hero-script-mid {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: #F8E7BE;
  line-height: 1.1;
  font-weight: 600;
  transform: rotate(-1.5deg);
  display: block;
  margin-left: 20px;
}

.hero-title {
  font-family: var(--font-heading-serif);
  font-size: clamp(3.2rem, 6.2vw, 5.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.05;
  margin-top: 6px;
  letter-spacing: -0.01em;
}

.hero-divider-gold {
  width: 220px;
  margin: 18px 0 32px;
}

.gold-curve {
  width: 100%;
  height: auto;
}

/* 3 Quality Pillars */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(229, 178, 66, 0.35);
  background: rgba(229, 178, 66, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.pillar-item:hover .pillar-icon {
  border-color: var(--gold-light);
  transform: scale(1.08);
  background: rgba(229, 178, 66, 0.16);
}

.pillar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #DDD2C0;
  line-height: 1.25;
}

.pillar-divider {
  width: 1px;
  height: 38px;
  background: rgba(229, 178, 66, 0.2);
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-decorative-quote {
  position: relative;
}

.quote-text {
  font-family: var(--font-script);
  font-size: 1.55rem;
  line-height: 1.2;
  color: #F8E7BE;
  display: block;
  transform: rotate(2deg);
}

.heart-symbol {
  color: var(--gold-light);
  font-size: 1.2rem;
}

/* Right Hero Visual */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 400px;
}

.dish-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(229, 178, 66, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.dish-image-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
}

.hero-dish-img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(229, 178, 66, 0.2);
  border: 3px solid rgba(229, 178, 66, 0.4);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-dish-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.plate-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 35px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 75%);
  z-index: -1;
}

/* Steam Animation */
.steam-container {
  position: absolute;
  top: 10px;
  left: 45%;
  transform: translateX(-50%);
  width: 160px;
  height: 120px;
  z-index: 3;
  pointer-events: none;
}

.steam-line {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.4), transparent);
  border-radius: 50%;
  filter: blur(5px);
  animation: risingSteam 3.5s infinite linear;
}

.steam-1 { left: 20%; animation-delay: 0s; }
.steam-2 { left: 50%; animation-delay: 1.2s; height: 75px; }
.steam-3 { left: 75%; animation-delay: 2.1s; height: 50px; }

@keyframes risingSteam {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  60% {
    transform: translateY(-40px) scaleX(1.8);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-80px) scaleX(2.5);
    opacity: 0;
  }
}

.hero-floating-callout {
  position: absolute;
  bottom: 0px;
  right: 2%;
  z-index: 4;
}

.callout-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #F8E7BE;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.9);
  display: block;
  transform: rotate(-7deg);
}

/* --------------------------------------------------------------------------
   7. Menu Section (Warm Cream Background for Premium Contrast)
   -------------------------------------------------------------------------- */
.menu-section {
  background-color: var(--color-bg-cream);
  padding: 95px 0 105px;
  position: relative;
}

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

.menu-card {
  background-color: #12100e;
  border-radius: 18px;
  border: 1px solid rgba(229, 178, 66, 0.45);
  box-shadow: 0 16px 36px rgba(45, 30, 10, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: #FCE082;
  box-shadow: 0 24px 44px rgba(45, 30, 10, 0.25), 0 0 25px rgba(229, 178, 66, 0.2);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 72%;
  background-color: #0d0c0a;
}

.card-food-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  clip-path: inset(0 0 0 0);
}

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

.card-badge-icon {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #1a1714;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.card-body {
  padding: 38px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-brand-cinzel);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 0.82rem;
  color: #D3C9B6;
  margin-bottom: 16px;
  min-height: 38px;
}



.card-actions {
  margin-top: auto;
  width: 100%;
}

/* --------------------------------------------------------------------------
   8. How to Order Section (Dark Premium Layout)
   -------------------------------------------------------------------------- */
.how-to-order-section {
  background-color: #09090b;
  background-image: url('../images/how.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0 110px;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 16px;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(229, 178, 66, 0.25);
}

.step-icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-circle {
  transform: translateY(-4px) scale(1.05);
  border-color: #FFE699;
  box-shadow: 0 10px 25px rgba(229, 178, 66, 0.35);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: #AFA595;
  line-height: 1.5;
  max-width: 210px;
}

.step-script-accent {
  position: absolute;
  bottom: -40px;
  right: -50px;
  font-family: var(--font-script);
  font-size: 2.2rem;
  line-height: 1.1;
  color: #F8E7BE;
  transform: rotate(-12deg);
  text-align: right;
}

/* --------------------------------------------------------------------------
   9. QR Ordering Section (Prominent Warm Gold Banner)
   -------------------------------------------------------------------------- */
.qr-section {
  background-color: #f7b134;
  background-image: url('../images/scan.png');
  background-size: cover;
  background-position: center;
  color: #1a1408;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.qr-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
  min-height: 320px;
}

/* Phone Mockup */
.phone-mockup-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}

.phone-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.phone-hand-img {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

/* QR Content */
.qr-content-col {
  padding: 60px 0;
}

.qr-tagline {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #4A3307;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.qr-title {
  font-family: var(--font-heading-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #171105;
  line-height: 1.1;
  margin-bottom: 12px;
}

.qr-desc {
  font-size: 1rem;
  color: #38290B;
  max-width: 540px;
  margin-bottom: 26px;
  line-height: 1.55;
  font-weight: 500;
}

.qr-button-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.btn-dark-cta {
  background-color: #14120D;
  color: #FFFFFF;
  padding: 13px 26px;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.btn-dark-cta:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.btn-light-cta {
  background-color: #FFFFFF;
  color: #14120D;
  padding: 13px 26px;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-light-cta:hover {
  background-color: #F8F4EA;
  transform: translateY(-2px);
}

.benefits-row {
  display: flex;
  align-items: center;
  gap: 36px;
  border-top: 1px solid rgba(35, 25, 6, 0.2);
  padding-top: 22px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #241A06;
}

.benefit-icon {
  display: flex;
  align-items: center;
  color: #171105;
}

/* --------------------------------------------------------------------------
   10. Footer Section
   -------------------------------------------------------------------------- */
.footer {
  background-color: #080706;
  border-top: 1px solid rgba(229, 178, 66, 0.15);
  padding-top: 75px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-mission {
  color: #9E9484;
  font-size: 0.9rem;
  margin: 18px 0 24px;
  max-width: 320px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(229, 178, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  background: rgba(229, 178, 66, 0.05);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: #150F04;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-col-title {
  font-family: var(--font-heading-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

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

.footer-links-list a {
  color: #A99E8E;
  font-size: 0.92rem;
}

.footer-links-list a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #A99E8E;
  font-size: 0.9rem;
}

.newsletter-desc {
  color: #A99E8E;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #181512;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(229, 178, 66, 0.25);
}

.btn-newsletter {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.newsletter-feedback {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #6EE7B7;
}

/* Sub Footer */
.sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  background: #050404;
}

.sub-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8C8273;
}

.love-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.heart-white {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   11. Order & Cart Modal
   -------------------------------------------------------------------------- */
.cart-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-modal {
  background: #151310;
  border: 1px solid rgba(229, 178, 66, 0.35);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 35px rgba(229, 178, 66, 0.15);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-modal-backdrop.active .cart-modal {
  transform: translateY(0);
}

.cart-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1714;
}

.cart-title-wrap h3 {
  font-family: var(--font-heading-serif);
  color: #FFFFFF;
  font-size: 1.35rem;
}

.cart-subtitle-items {
  font-size: 0.82rem;
  color: var(--gold-light);
}

.cart-close-btn {
  font-size: 1.8rem;
  color: #BDB29F;
  line-height: 1;
}

.cart-close-btn:hover {
  color: #FFFFFF;
}

.cart-modal-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.empty-cart-state {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #8C8273;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 14px;
}

.cart-item-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-light);
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #221F1B;
  border-radius: 20px;
  padding: 4px 10px;
}

.qty-btn {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
}

.qty-num {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}

/* Customer Details Form */
.form-sec-title {
  font-size: 1rem;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(229, 178, 66, 0.2);
  padding-bottom: 6px;
  margin-bottom: 14px;
}

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

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #D6C7A9;
}

.form-group input,
.form-group textarea {
  background: #0D0C0A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
}

.cart-summary-totals {
  background: #0E0D0B;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed rgba(229, 178, 66, 0.2);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #BDB29F;
}

.summary-line.total-line {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.checkout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-whatsapp-order {
  background: #25D366;
  color: #063116;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.btn-email-order {
  background: #FFFFFF;
  color: #111;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-email-order:hover {
  background: #ece8db;
  transform: translateY(-2px);
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1D1A16;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 14px 22px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 4000;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   12. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-headline-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-script-mid {
    margin-left: 0;
  }
  .hero-divider-gold {
    margin: 16px auto 26px;
  }
  .hero-pillars {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
  .hero-section {
    background-position: 80% center;
    padding-bottom: 40px;
  }
  .hero-image-wrap {
    order: 2;
    min-height: 250px;
  }
  .hero-floating-callout {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
  .dish-image-container {
    display: none;
  }
  .qr-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    min-height: unset;
  }
  .phone-mockup-col {
    order: 2;
    position: relative;
    height: 320px;
    transform: none;
  }
  .phone-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .qr-content-col {
    padding: 50px 0 30px;
  }
  .qr-button-group {
    justify-content: center;
  }
  .benefits-row {
    justify-content: center;
  }
  .step-script-accent {
    position: static;
    margin-top: 30px;
    text-align: center;
    transform: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sub-footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .header-actions {
    gap: 8px;
  }
  .nav-cta {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .brand-logo-img {
    height: 44px;
    max-width: 140px;
  }
  .footer-logo-img {
    height: 64px;
    max-width: 280px;
  }
  .checkout-actions {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Floating Action Buttons (WhatsApp + Phone)
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.fab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 9999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 54px; /* collapsed — show only icon */
}

.fab:hover {
  max-width: 200px; /* expand to show label */
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

/* Smooth width expansion */
.fab {
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s ease,
              box-shadow 0.25s ease;
}

.fab-label {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.25s ease 0.1s, max-width 0.35s ease;
  white-space: nowrap;
}

.fab:hover .fab-label {
  opacity: 1;
  max-width: 120px;
}

/* WhatsApp Button */
.fab-whatsapp {
  background-color: #25D366;
  color: #ffffff;
}

.fab-whatsapp:hover {
  background-color: #1ebe5c;
}

/* Pulse ring on WhatsApp */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: fabPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

/* Phone Button */
.fab-phone {
  background: linear-gradient(135deg, #E5B242 0%, #C8901A 100%);
  color: #1a1000;
}

.fab-phone:hover {
  background: linear-gradient(135deg, #FCE082 0%, #E5B242 100%);
}

/* On mobile — always show icon only, no label expansion */
@media (max-width: 600px) {
  .floating-actions {
    flex-direction: row;
    bottom: 20px;
    left: 16px;
    right: auto;
    gap: 12px;
  }
  .fab {
    padding: 14px;
    max-width: 52px;
  }
  .fab:hover {
    max-width: 52px;
  }
  .fab-label {
    display: none;
  }
}


/* ========================================
   DUMMORA WP THEME OVERRIDES
   ======================================== */

/* Footer: 3-column layout (newsletter removed) */
@media (min-width: 1081px) {
  .footer-container {
    grid-template-columns: 1.4fr 0.8fr 1.2fr !important;
  }
}

/* Homepage Menu Card Updates */
.card-bottom {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
.price-wrap {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.price-label {
  font-size: 0.7rem;
  color: #A89A83;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3px;
}
.card-bottom .price {
  font-family: var(--font-heading-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  width: auto;
}



/* Responsive Menu Grid */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}


/* Responsive Menu Grid */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
