/* assets/css/style.css — Menzere Restaurant */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6914;
  --dark: #0e0d0b;
  --dark2: #1a1815;
  --dark3: #242220;
  --cream: #f5f0e8;
  --cream2: #ede7d9;
  --text: #3a3228;
  --text-light: #7a6e62;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(201,169,110,0.25);
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── PRELOADER ─────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
#preloader .logo-anim {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  letter-spacing: 0.2em;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { opacity: 0.5; text-shadow: 0 0 20px rgba(201,169,110,0.3); }
  50% { opacity: 1; text-shadow: 0 0 40px rgba(201,169,110,0.8); }
}

/* ── NAVBAR ─────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(14,13,11,0.96);
  backdrop-filter: blur(12px);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(201,169,110,0.4);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-lang {
  display: flex; gap: 6px; align-items: center;
}
.lang-btn {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 4px 10px; border: 1px solid rgba(201,169,110,0.4);
  background: transparent; color: rgba(255,255,255,0.6);
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.nav-book {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 10px 24px;
  background: var(--gold); color: var(--dark);
  text-decoration: none; transition: all 0.3s;
  border: 1px solid var(--gold);
}
.nav-book:hover {
  background: transparent; color: var(--gold);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--white);
  transition: all 0.3s; display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────── */
#hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(to bottom, rgba(14,13,11,0.5) 0%, rgba(14,13,11,0.3) 50%, rgba(14,13,11,0.8) 100%),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 20px;
  animation: fadeInUp 1.2s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem; font-weight: 300; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}
.btn-primary {
  padding: 14px 40px; background: var(--gold); color: var(--dark);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--gold); transition: all 0.4s;
  display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline {
  padding: 14px 40px; background: transparent; color: var(--white);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5); transition: all 0.4s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll svg { width: 20px; color: var(--gold); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTIONS ───────────────────────────────── */
section { padding: 100px 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-divider {
  width: 60px; height: 2px; background: var(--gold);
  margin-bottom: 40px;
}
.section-title-center { text-align: center; }
.section-title-center .section-divider { margin: 0 auto 40px; }
.section-title-center .section-label { text-align: center; }

/* ── FEATURED / HIGHLIGHTS ──────────────────── */
#features {
  background: var(--dark);
  padding: 60px 0;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(201,169,110,0.15);
}
.feature-item {
  background: var(--dark2); padding: 50px 40px; text-align: center;
  transition: background 0.4s;
}
.feature-item:hover { background: var(--dark3); }
.feature-icon {
  width: 56px; height: 56px; margin: 0 auto 24px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  transition: all 0.4s;
}
.feature-item:hover .feature-icon {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 12px;
}
.feature-item p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── MENU ──────────────────────────────────── */
#menu { background: var(--cream); }
.menu-tabs {
  display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 48px;
  border-bottom: 1px solid rgba(201,169,110,0.3);
}
.tab-btn {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 12px 24px;
  background: transparent; border: none; cursor: pointer;
  color: var(--text-light); transition: all 0.3s;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: var(--font-body);
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.menu-card {
  background: var(--white);
  overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: all var(--transition);
  display: none;
}
.menu-card.visible { display: flex; flex-direction: column; }
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  position: relative;
}
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-img .no-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream2), var(--cream));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--gold-light);
}
.menu-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--dark);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 4px 10px;
}
.menu-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.menu-card-cat {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 8px;
}
.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; color: var(--dark);
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 0.85rem; color: var(--text-light); line-height: 1.65;
  flex: 1; margin-bottom: 20px;
}
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--cream2);
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; color: var(--gold-dark);
}
.menu-price span { font-size: 0.75rem; color: var(--text-light); }

/* ── ABOUT ──────────────────────────────────── */
#about { background: var(--white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images {
  position: relative; height: 550px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 72%; height: 80%;
  overflow: hidden; box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 50%; height: 55%;
  overflow: hidden; box-shadow: var(--shadow);
  border: 6px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 80px; left: 60%;
  transform: translateX(-50%);
  background: var(--dark); color: var(--gold);
  width: 110px; height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  z-index: 2; box-shadow: var(--shadow-gold);
}
.about-badge .year { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.about-badge .since { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.about-text p {
  font-size: 1rem; color: var(--text-light); line-height: 1.9; margin-bottom: 24px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px;
}
.about-stat { border-left: 2px solid var(--gold); padding-left: 16px; }
.about-stat .num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--gold-dark); line-height: 1;
}
.about-stat .label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.05em; }

/* ── GALLERY ─────────────────────────────────── */
#gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(14,13,11,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: var(--gold); width: 40px; }

/* ── RESERVATION ─────────────────────────────── */
#reservation { background: var(--dark); position: relative; overflow: hidden; }
#reservation::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover;
  opacity: 0.12;
}
.reservation-inner { position: relative; z-index: 1; }
#reservation .section-title { color: var(--white); }
#reservation .section-label { color: var(--gold); }
.res-form {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 40px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}
.form-control {
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }
select.form-control option { background: var(--dark2); color: var(--white); }
.btn-submit {
  padding: 16px 48px; background: var(--gold); color: var(--dark);
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 2px solid var(--gold); cursor: pointer; transition: all 0.4s;
  display: inline-block;
}
.btn-submit:hover { background: transparent; color: var(--gold); }
.form-message {
  grid-column: span 2; padding: 16px 20px;
  font-size: 0.9rem; font-weight: 500;
  display: none;
}
.form-message.success { background: rgba(34,197,94,0.15); color: #4ade80; border-left: 3px solid #4ade80; display: block; }
.form-message.error { background: rgba(239,68,68,0.15); color: #f87171; border-left: 3px solid #f87171; display: block; }

/* ── CONTACT ─────────────────────────────────── */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.info-item { display: flex; gap: 20px; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  transition: all 0.4s;
}
.info-item:hover .info-icon { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.info-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 6px; }
.info-text { color: var(--text); font-size: 0.95rem; }
.info-text a { color: var(--text); text-decoration: none; }
.info-text a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 40px; height: 40px; border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.map-frame {
  width: 100%; height: 380px; filter: grayscale(0.3) contrast(1.1);
  border: 1px solid var(--cream2);
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .logo { font-family: var(--font-display); font-size: 2rem; color: var(--gold); letter-spacing: 0.08em; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ── LIGHTBOX ────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; color: var(--white); cursor: pointer;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* ── TOAST ───────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  padding: 16px 24px; background: var(--dark2);
  border-left: 3px solid var(--gold); color: var(--white);
  font-size: 0.9rem; max-width: 340px;
  transform: translateY(20px); opacity: 0;
  transition: all 0.4s; pointer-events: none;
  box-shadow: var(--shadow);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 768px) {
  #navbar { padding: 20px 24px; }
  #navbar.scrolled { padding: 14px 24px; }
  .nav-links, .nav-book { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 64px;
    background: rgba(14,13,11,0.98);
    padding: 40px 24px; gap: 24px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1rem; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .about-images { height: 280px; }
  .res-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .container { padding: 0 24px; }
  section { padding: 70px 0; }
}

/* ── ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESERVATION METHOD SWITCHER ─────────────── */
.res-method-switcher {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.res-method-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.35s;
}
.res-method-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.res-method-btn.active {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
}
.res-method-btn i { font-size: 1rem; }
.res-method-btn[data-method="whatsapp"].active {
  background: #25d366; border-color: #25d366; color: #fff;
}
.res-method-btn[data-method="call"].active {
  background: var(--blue); border-color: var(--blue); color: #fff;
}

/* ── METHOD PANELS ────────────────────────────── */
.res-method-panel { display: none; }
.res-method-panel.active { display: block; }

/* ── WHATSAPP PANEL ───────────────────────────── */
.res-whatsapp-box {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: 48px 40px;
  background: rgba(37,211,102,0.05);
  border: 1px solid rgba(37,211,102,0.2);
}
.res-wa-icon {
  font-size: 3.5rem; color: #25d366; margin-bottom: 20px;
  animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%,100% { text-shadow: 0 0 0 rgba(37,211,102,0); }
  50% { text-shadow: 0 0 30px rgba(37,211,102,0.4); }
}
.res-whatsapp-box h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--white); margin-bottom: 12px;
}
.res-whatsapp-box p {
  color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 32px;
}
.wa-quick-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 28px; text-align: left;
}
.wa-field label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.wa-big-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: #25d366; color: #fff;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; transition: all 0.3s;
  border: 2px solid #25d366;
}
.wa-big-btn i { font-size: 1.3rem; }
.wa-big-btn:hover {
  background: transparent; color: #25d366;
}
.wa-note {
  margin-top: 20px; font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.wa-note a { text-decoration: none; }
.wa-note a:hover { text-decoration: underline; }

/* ── CALL PANEL ───────────────────────────────── */
.res-call-box {
  max-width: 540px; margin: 0 auto; text-align: center;
}
.res-call-phones {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px;
}
.call-card {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.18);
  text-decoration: none; color: var(--white);
  transition: all 0.3s;
}
.call-card:hover {
  border-color: var(--gold); background: rgba(201,169,110,0.08);
  transform: translateX(4px);
}
.call-card-wa { border-color: rgba(37,211,102,0.2); }
.call-card-wa:hover { border-color: #25d366; background: rgba(37,211,102,0.08); }
.call-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(201,169,110,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
}
.call-card-wa .call-icon { background: rgba(37,211,102,0.12); color: #25d366; font-size: 1.4rem; }
.call-info { flex: 1; text-align: left; }
.call-label { display: block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.call-num { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; }
.call-arrow { color: rgba(255,255,255,0.25); font-size: 0.85rem; }
.call-hours {
  font-size: 0.88rem; color: rgba(255,255,255,0.4);
  padding: 16px 20px; border: 1px dashed rgba(201,169,110,0.2);
}

/* ── FLOATING BUTTONS ─────────────────────────── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: wa-bounce 3s ease-in-out infinite;
}
@keyframes wa-bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  animation: none;
}
.wa-float-tooltip {
  position: absolute; right: 68px;
  background: var(--dark);
  color: var(--white); white-space: nowrap;
  font-size: 0.78rem; font-weight: 500;
  padding: 8px 14px;
  pointer-events: none;
  opacity: 0; transform: translateX(6px);
  transition: all 0.3s;
  border-left: 2px solid #25d366;
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1; transform: translateX(0);
}

.phone-float {
  position: fixed; bottom: 100px; right: 32px; z-index: 800;
  width: 50px; height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--dark);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
  transition: all 0.3s;
}
.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(201,169,110,0.6);
  background: var(--gold-dark); color: var(--white);
}

/* ── MOBILE ADJUSTMENTS ───────────────────────── */
@media (max-width: 600px) {
  .wa-quick-form { grid-template-columns: 1fr; }
  .res-whatsapp-box { padding: 32px 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .phone-float { bottom: 84px; right: 20px; width: 44px; height: 44px; font-size: 1.1rem; }
  .res-method-btn { padding: 10px 18px; font-size: 0.78rem; }
  .call-card { padding: 16px 18px; }
}

/* ── QR MENU PROMO ───────────────────────────── */
#qrmenu-promo .btn-primary { border: 2px solid var(--gold); }
@media (max-width: 768px) {
  #qrmenu-promo > .container > div {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center;
  }
  #qrmenu-promo .section-title { text-align: center; }
  #qrmenu-promo .section-divider { margin: 0 auto 24px; }
  #qrmenu-promo p { margin: 0 auto 28px; }
}
