:root {
  --bg: #f5f0e8;
  --bg-muted: #ede8de;
  --card: #ffffff;
  --primary: #7c3a10;
  --primary-dark: #8b4a1c;
  --accent: #c8874a;
  --hero: #0a0d14;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #ddd0bc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

.page-symbol-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-symbol-field span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: rotate(var(--r));
  font-family: "Playfair Display", serif;
  font-size: var(--s);
  color: rgba(124, 58, 16, 0.12);
  text-shadow: 0 0 22px rgba(200, 135, 74, 0.08);
  user-select: none;
}

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

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

.container {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
}

sup[style*="font-size: 0.5em"] {
  font-size: 0.55em !important;
  line-height: 0;
  vertical-align: super;
  color: inherit !important;
}

.tm {
  font-size: 0.55em;
  line-height: 0;
  vertical-align: super;
  color: inherit;
}

.brand-name sup[style*="font-size: 0.5em"],
.f-brand sup[style*="font-size: 0.5em"],
.footer-title sup[style*="font-size: 0.5em"] {
  color: var(--primary) !important;
}

.brand-name .tm,
.f-brand .tm,
.footer-title .tm {
  color: var(--primary);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

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

main,
footer {
  position: relative;
  z-index: 1;
}

.brand-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Darken accent span ("otsava") in nav brand for contrast on cream bg */
.brand-name span[style*="--accent"] {
  color: #a06830 !important;
}

.brand-tagline {
  margin-top: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a6c30;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(124, 58, 16, 0.08);
  transform: translateY(-1px);
  color: var(--primary);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

@media (max-width: 640px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    width: 260px;
    height: calc(100vh - 60px);
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 60; /* above nav-backdrop (45) and nav bar (50) */
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px 10px;
    font-size: 1.05rem;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(124, 58, 16, 0.1);
  }

  .page-symbol-field span {
    font-size: calc(var(--s) * 0.8);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 85vh;
  padding-top: 60px;
  background: var(--hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 100% at 50% 20%, rgba(200, 135, 74, 0.18), transparent 60%),
    radial-gradient(100% 100% at 20% 80%, rgba(124, 58, 16, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  top: 60px;
  right: 0;
  height: calc(85vh - 60px);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-watermark img {
  width: min(72vw, 680px);
  max-height: min(72vh, 680px);
  object-fit: contain;
  opacity: 0.15;
  border-radius: 50%;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 0;
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.12;
}

.hero .tagline,
.hero .sub,
.hero p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.hero .tagline {
  color: #e1b46b;
  font-style: italic;
  font-weight: 600;
}

.hero .goldline,
.hero .label,
.hero .eyebrow,
.tiny-gold {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(200, 164, 90, 0.78);
}

.hero .label,
.hero .eyebrow {
  margin-bottom: 10px;
}


section {
  padding: 72px 0;
}

.muted-section,
.story-block {
  background: var(--bg-muted);
}

.center {
  text-align: center;
}

h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  color: var(--primary);
  font-size: clamp(26px, 3.2vw, 36px);
}

.lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.icircle {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: rgba(200, 135, 74, 0.18);
  color: var(--accent);
  font-size: 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card a {
  color: var(--primary);
  font-weight: 600;
}

.card a:hover {
  text-decoration: underline;
}

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

.farmers-grid .card {
  text-align: left;
}

.farmers-grid .icircle {
  margin: 0 0 14px;
}

.trinity {
  margin: 18px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.tri-item {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tri-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.tri-item:hover .tri-icon {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 20px rgba(200, 164, 90, 0.3);
}

.tri-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 18px;
  padding: 10px 18px;
  background: rgba(139, 74, 28, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #fff;
}

.tiny-gold {
  margin: 10px 0 18px;
}

.signup {
  margin: 10px auto 0;
  max-width: 560px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.signup input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  transition: border 0.2s ease, background 0.2s ease;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.signup input:focus {
  border-color: rgba(200, 135, 74, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--primary-dark);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn.white {
  background: #fff;
  color: var(--primary-dark);
}

.btn.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn.outline:hover {
  background: #fff;
  color: var(--primary-dark);
}

.btn.primary {
  background: var(--accent);
  color: #23160c;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(200, 146, 65, 0.22);
}

.btn.primary:hover {
  filter: brightness(1.04);
}

.hint {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.outline-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.quote {
  max-width: 820px;
  margin: 22px auto 0;
  background: #faf7f3;
  border-left: 3px solid var(--primary-dark);
  padding: 18px;
  border-radius: 12px;
  color: rgba(26, 26, 26, 0.78);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  margin-top: 28px;
}

.pillars {
  display: grid;
  gap: 18px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.p-ic {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(200, 135, 74, 0.18);
  color: var(--primary);
  flex: 0 0 auto;
  font-size: 18px;
}

.pillar h4 {
  margin: 0 0 4px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.photo {
  width: 100%;
  height: 400px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.telugu {
  text-align: center;
}

.telugu .tel-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--primary);
}

.telugu p {
  max-width: 840px;
  margin: 10px auto 0;
  color: var(--muted);
}

.telugu em {
  color: var(--primary);
  font-style: italic;
}

.cta,
.notify {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
}

.cta h2,
.notify h2 {
  color: #fff;
}

.cta p,
.notify p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}

.btn-row,
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: rgba(200, 146, 65, 0.14);
  color: var(--primary);
  font-size: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
  margin-top: 30px;
}

.story-box,
.highlight-panel,
.visual-card,
.menu-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.story-box h3,
.menu-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.22rem;
}

.story-box p {
  margin: 0 0 14px;
  color: var(--muted);
}

.story-box p:last-child {
  margin-bottom: 0;
}

.highlight-panel {
  background: linear-gradient(135deg, #fff8ee, #f4ead8);
}

.highlight-panel .big {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.48rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.highlight-panel p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 30px;
}

.visual-card {
  padding: 0;
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature {
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  background: #fff8ef;
}

.feature h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.06rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.menu-preview .items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  color: var(--muted);
}

.menu-row:last-child {
  border-bottom: none;
}

.menu-row strong {
  color: var(--text);
}

.menu-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-band {
  background: linear-gradient(180deg, #fffaf2, #f6ede0);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

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

.contact-card .icon {
  margin-bottom: 12px;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.notify p {
  margin-bottom: 22px;
}

.notify .signup input {
  border: none;
  background: #fff;
  color: var(--text);
}

.notify .signup input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.notify .signup button {
  background: var(--accent);
  color: #24170c;
  border: none;
}

.tab-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 22px 0 38px;
}

.tab {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s ease;
}

.tab:hover {
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
}

.tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 16, 0.28);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.page-menu .menu-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.page-cafe .menu-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.page-menu .menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-muted);
}

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

.page-menu .menu-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.badge-food {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-dark);
  border: 1px solid var(--accent);
}

.badge-drink {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-dark);
  border: 1px solid var(--accent);
}

.card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}

.card-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(200, 135, 74, 0.14);
  color: var(--primary-dark);
  text-transform: uppercase;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

footer {
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 24px;
}

.f-brand,
.footer-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.f-small,
.footer-small {
  color: var(--muted);
  font-size: 0.92rem;
}

.f-label,
.footer-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 10px;
  font-weight: 600;
}

.f-links a,
.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.f-links a:hover,
.footer-links a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.copyright {
  margin-top: 22px;
  text-align: center;
  color: rgba(26, 26, 26, 0.55);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .cards,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .two-col,
  .split,
  .showcase,
  .menu-preview .items {
    grid-template-columns: 1fr;
  }

  .photo {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .cards,
  .contact-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .tri-item {
    width: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   NAV BACKDROP (mobile menu overlay)
   ============================================ */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(10, 13, 20, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-backdrop.open {
  display: block;
}

/* ============================================
   SOCIAL LINKS (footer)
   ============================================ */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(124, 58, 16, 0.1);
  color: var(--primary);
  border: 1px solid rgba(124, 58, 16, 0.2);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================
   CART DRAWER & BUTTONS
   ========================================= */

/* Floating Cart Toggle */
.cart-toggle-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(124, 58, 16, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.cart-toggle-btn:hover {
  transform: scale(1.08) translateY(-4px);
  background: var(--primary-dark);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Add to Cart Button on Menu Cards */
.card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.08);
}

.card-price {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.add-to-cart-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.add-to-cart-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 135, 74, 0.3);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 20, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-muted);
}

.cart-header h2 {
  margin: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-cart-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.close-cart-btn:hover {
  color: var(--primary);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  position: relative;
}

/* Empty State */
.cart-empty-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

.cart-empty-state .icon {
  width: 80px;
  height: 80px;
  background: var(--bg-muted);
  font-size: 32px;
  margin-bottom: 20px;
}

.cart-empty-state p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.05);
}

.cart-item-img img,
.cart-item-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  padding-right: 24px;
}

.cart-item-info h4 {
  margin: 0 0 4px;
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  background: var(--bg-muted);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--primary-dark);
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: rgba(124, 58, 16, 0.1);
}

.qty-val {
  width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.cart-item-remove {
  position: absolute;
  top: -4px;
  right: 0;
  background: none;
  border: none;
  font-size: 22px;
  color: #ccc;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: 24px;
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cart-subtotal-row strong {
  font-family: "Playfair Display", serif;
  color: var(--primary-dark);
  font-size: 1.4rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #23160c;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(200, 135, 74, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.cart-checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(200, 135, 74, 0.4);
}

.cart-checkout-btn:disabled {
  background: #ccc;
  color: #888;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Visitor Counter */
.visitor-counter {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.visitor-counter:hover {
  opacity: 1;
}

.visitor-counter img {
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Signup Success & Status Messages */
.success-message {
  text-align: center;
  padding: 30px 20px;
  background: rgba(124, 58, 16, 0.08);
  border: 1px solid rgba(200, 135, 74, 0.3);
  border-radius: 16px;
  margin-top: 20px;
  backdrop-filter: blur(8px);
}

.success-message h3 {
  color: var(--primary);
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
}

.success-message p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.error-message {
  color: #c03a10;
  margin-top: 15px;
  font-size: 0.9rem;
  background: rgba(192, 58, 16, 0.05);
  padding: 10px;
  border-radius: 8px;
}

.signup.submitting {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}
