:root {
  --primary: #2A9D8F;
  --secondary: #1B6B8A;
  --accent: #5EC4E8;
  --sand: #E8D4A8;
  --coral: #FF8C69;
  --text: #1A2E35;
  --bg: #f8fcfb;
  --shadow: 0 12px 40px rgba(27, 107, 138, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--secondary); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
header {
  text-align: center;
  padding: 40px 20px 24px;
  background: linear-gradient(180deg, #fff 0%, var(--sand) 120%);
}
.hero { padding-top: 72px; position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #e8f7f5 0%, #fff 35%, var(--sand) 100%);
}
.hero-wave {
  position: absolute; left: -10%; width: 120%; height: 120px;
  border-radius: 45%; opacity: 0.45;
}
.hero-wave--1 {
  bottom: -40px; background: rgba(42, 157, 143, 0.25);
  animation: hero-wave 7s ease-in-out infinite;
}
.hero-wave--2 {
  bottom: -60px; background: rgba(27, 107, 138, 0.18);
  animation: hero-wave 9s ease-in-out infinite reverse;
}
@keyframes hero-wave {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(-3%) rotate(2deg); }
}
body.tg-app {
  background: var(--tg-bg, var(--bg));
  color: var(--tg-text, var(--text));
  min-height: var(--tg-viewport-height, 100vh);
  min-height: var(--tg-viewport-height, 100dvh);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
html.tg-app main,
html.tg-app #services,
html.tg-app .site-nav {
  display: block !important;
  visibility: visible !important;
}
html.tg-app #tg-boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--tg-bg, #f8fcfb);
  color: var(--tg-text, #1B6B8A);
}
html.tg-app.tg-ready #tg-boot { display: none !important; }
html.tg-app {
  scroll-padding-top: var(--tg-nav-offset, 56px);
}
body.tg-app .site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--tg-secondary-bg, rgba(255,255,255,0.98));
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
body.tg-app .site-nav__brand { display: none; }
body.tg-app .site-nav__inner { min-height: 44px; }
body.tg-app .site-nav__links a[href="#gallery"],
body.tg-app .site-nav__links a[href="#reviews"],
body.tg-app .site-nav__links a[href="#location"],
body.tg-app .site-nav__links a[href="#events"],
body.tg-app .site-nav__links a[href="#faq"] { display: none !important; }
body.tg-app .site-nav__brand { color: var(--tg-text, var(--secondary)); font-size: 0.95rem; }
body.tg-app .site-nav__links a { color: var(--tg-text, var(--text)); font-size: 0.82rem; white-space: nowrap; }
body.tg-app .site-nav__toggle { display: none !important; }
body.tg-app .site-nav__links {
  display: flex !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.tg-app .site-nav__links::-webkit-scrollbar { display: none; }
body.tg-app .site-nav__links a[href*="AmraSupBot"],
body.tg-app .site-nav__links a[href*="t.me/"] { display: none; }
body.tg-app .hero,
body.tg-app #gallery,
body.tg-app #reviews,
body.tg-app #location,
body.tg-app #events,
body.tg-app #faq,
body.tg-app #posts,
body.tg-app footer,
body.tg-app .tg-hint { display: none !important; }
body.tg-app .hero-actions { display: none; }
body.tg-app section { padding: 20px 0; }
body.tg-app #services {
  padding-top: 0;
  scroll-margin-top: var(--tg-nav-offset, 56px);
}
body.tg-app #menu,
body.tg-app #my-bookings {
  scroll-margin-top: var(--tg-nav-offset, 56px);
}
body.tg-app #services h2,
body.tg-app #menu h2,
body.tg-app #my-bookings h2 { font-size: 1.25rem; margin-bottom: 16px; }
body.tg-app .section-intro { font-size: 0.9rem; margin-bottom: 12px; }
body.tg-app .services-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
body.tg-app .service-card:hover { transform: none; }
body.tg-app .service-card__img {
  height: 260px;
  min-height: 260px;
  background: #eef3f5;
}
body.tg-app .service-card__img .img-carousel {
  width: 100%;
  height: 260px;
  min-height: 260px;
}
body.tg-app .service-card__img > img,
body.tg-app .service-card__img .img-carousel__slide {
  width: 100%;
  height: 260px;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
body.tg-app .service-card__img .img-carousel__slide.active {
  opacity: 1;
}
body.tg-app .container { padding: 0 14px; }
body.tg-app .btn-primary {
  background: var(--tg-button, var(--primary));
  color: var(--tg-button-text, #fff);
}
body.tg-app .btn-secondary {
  background: var(--tg-secondary-bg, #fff);
  color: var(--tg-text, var(--secondary));
  border-color: rgba(0, 0, 0, 0.12);
}
body.tg-app .service-card,
body.tg-app .my-booking-card,
body.tg-app .menu-list,
body.tg-app .event-form {
  background: var(--tg-secondary-bg, #fff);
  color: var(--tg-text, var(--text));
}
body.tg-app .modal {
  padding: 0;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.45);
}
body.tg-app .modal.open { display: flex; }
body.tg-app .modal-box {
  width: 100%;
  max-width: 100%;
  max-height: min(calc(var(--tg-viewport-height, 100dvh) - 12px), 96dvh);
  border-radius: 16px 16px 0 0;
  padding: 20px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  margin: 0;
  background: var(--tg-secondary-bg, #fff);
  color: var(--tg-text, var(--text));
}
body.tg-app .modal-close {
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  font-size: 1.75rem;
  z-index: 2;
}
body.tg-app .modal-menu .img-carousel {
  max-height: 300px;
  min-height: 220px;
}
body.tg-app #bk-contact input,
body.tg-app .promo-row input,
body.tg-app .event-form input,
body.tg-app .event-form textarea {
  background: var(--tg-bg, #fff);
  color: var(--tg-text, var(--text));
  border-color: rgba(0, 0, 0, 0.12);
}
body.tg-app .toast-container {
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
body.tg-app .lightbox {
  padding: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.hidden { display: none; }
.logo { max-width: 200px; margin-bottom: 16px; }
h1 {
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  color: var(--secondary);
}
.tagline { color: var(--primary); font-style: italic; margin-top: 8px; }
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px;
}
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 12px;
  font-family: Montserrat, sans-serif; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary { background: #fff; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-block { width: 100%; margin-top: 12px; }
section { padding: 48px 0; }
section h2 {
  font-family: Montserrat, sans-serif; text-align: center;
  color: var(--secondary); margin-bottom: 28px; font-size: 1.5rem;
}
#mood-widget { max-width: 520px; margin: 32px auto 0; }
.widget-inner {
  background: linear-gradient(145deg, #fff 0%, #e8f7f5 100%);
  border-radius: 16px; box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid rgba(42, 157, 143, 0.2);
}
.widget-bar {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.widget-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.widget-dot.red { background: #ff5f57; }
.widget-dot.yellow { background: #febc2e; }
.widget-dot.green { background: #28c840; }
.widget-title { color: #fff; font-size: 0.8rem; margin-left: 8px; opacity: .9; }
.widget-content { padding: 24px; }
.widget-weather {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 6px 14px; border-radius: 20px; font-size: 0.9rem; margin-bottom: 16px;
}
.widget-content h2 { font-size: 1.2rem; text-align: left; margin-bottom: 12px; color: var(--secondary); }
.btn-music {
  margin-top: 16px; background: var(--sand); border: none; padding: 8px 16px;
  border-radius: 20px; cursor: pointer; font-size: 0.9rem;
}
.widget-placeholder { text-align: center; color: var(--primary); padding: 24px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.service-card {
  background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card__img {
  display: block; width: 100%; padding: 0; border: none;
  background: #f0f0f0; position: relative; overflow: hidden;
  min-height: 280px;
}
.service-card__img > img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.service-card__img .img-carousel {
  width: 100%; height: 280px;
}
.service-card:hover .service-card__img img { opacity: 0.92; }

.img-carousel {
  position: relative; overflow: hidden;
}
.img-carousel__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}
.img-carousel__slide.active {
  opacity: 1; pointer-events: auto;
}
.modal-menu .img-carousel {
  width: 100%; min-height: 260px; max-height: 400px;
  background: #f5f5f5; border-radius: 12px;
}
.modal-menu .img-carousel__slide {
  object-fit: contain;
}
.modal-menu > img {
  width: 100%; max-height: 400px; object-fit: contain; display: block; background: #f5f5f5;
}
.modal-menu {
  display: block; width: 100%; padding: 0; margin: 16px 0; border: none;
  background: none; position: relative; border-radius: 12px; overflow: hidden;
}
.modal-menu img { width: 100%; max-height: 400px; object-fit: contain; display: block; background: #f5f5f5; }
.zoom-hint {
  display: block; text-align: center; font-size: 0.8rem; color: #666; padding: 8px;
  background: rgba(255,255,255,0.9);
}
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.88); align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(100%, 960px); max-height: 92vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.lightbox-close {
  position: fixed; top: 16px; right: 20px; z-index: 201;
  background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1;
}
.review-form {
  max-width: 520px; margin: 32px auto 0; background: #fff; padding: 24px;
  border-radius: 16px; box-shadow: var(--shadow);
}
.review-form h3 {
  font-family: Montserrat, sans-serif; color: var(--secondary); margin-bottom: 16px; text-align: center;
}
.review-form label { display: block; margin-bottom: 12px; font-weight: 600; }
.review-form input[type="text"],
.review-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 10px;
  border-radius: 8px; border: 1px solid #ddd; font: inherit;
}
.rating-field {
  border: none; margin: 0 0 12px; padding: 0;
}
.rating-field legend { font-weight: 600; margin-bottom: 8px; }
.rating-field label {
  display: inline-block; margin-right: 12px; font-weight: normal; cursor: pointer;
}
.review-form-msg { margin-top: 12px; font-size: 0.9rem; }
.review-form-msg.success { color: #1b7f4a; }
.review-form-msg.error { color: #c0392b; }
.section-lead {
  max-width: 640px; margin: 0 auto 24px; text-align: center; color: #555;
}
.events-section { background: linear-gradient(180deg, #f8fbfa 0%, var(--bg) 100%); }
.event-form {
  max-width: 640px; margin: 0 auto; background: #fff; padding: 24px;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.event-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin-bottom: 12px;
}
@media (max-width: 600px) { .event-form-grid { grid-template-columns: 1fr; } }
.event-form label { display: block; margin-bottom: 12px; font-weight: 600; }
.event-form input, .event-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 10px;
  border-radius: 8px; border: 1px solid #ddd; font: inherit; font-weight: normal;
}
.event-form .optional { font-weight: normal; color: #888; font-size: 0.85rem; }
.reviews-empty { text-align: center; color: #666; margin-bottom: 8px; }
.service-card__body { padding: 20px; }
.service-card h3 { font-family: Montserrat, sans-serif; color: var(--secondary); }
.service-count { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
#gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.gallery-showcase {
  max-width: 1100px; margin: 0 auto 24px; width: 100%;
}
.gallery-carousel {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  max-height: 70vh;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  background: #eef3f5;
}
.gallery-carousel__slide {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; opacity: 0;
  transition: opacity 0.8s ease-in-out; pointer-events: none;
}
.gallery-carousel__slide.active {
  opacity: 1; pointer-events: auto;
}
.gallery-carousel__slide img {
  flex: 1; width: 100%; object-fit: cover; min-height: 0; cursor: zoom-in;
  background: #dde6ea;
}
.gallery-carousel__slide figcaption {
  flex-shrink: 0; padding: 14px 18px; background: #fff;
  text-align: center; font-size: 1rem; cursor: pointer;
}
.gallery-item--solo {
  grid-column: 1 / -1; max-width: 1100px; width: 100%; margin: 0 auto;
}
.gallery-item {
  border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow);
  transition: transform .2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 320px; object-fit: cover; display: block; }
.gallery-item figcaption {
  padding: 8px; font-size: 0.85rem; background: #fff; text-align: center;
}
.gallery-form {
  margin-top: 32px; max-width: 520px; margin-left: auto; margin-right: auto;
  background: #fff; padding: 24px; border-radius: 16px; box-shadow: var(--shadow);
}
.gallery-form h3 { font-family: Montserrat, sans-serif; color: var(--secondary); margin-bottom: 8px; }
.gallery-form-hint { color: #666; font-size: 0.9rem; margin-bottom: 16px; }
.gallery-form label { display: block; margin-bottom: 12px; font-size: 0.9rem; }
.gallery-form input[type="text"],
.gallery-form select,
.gallery-form input[type="file"] {
  display: block; width: 100%; margin-top: 4px; padding: 10px; border: 1px solid #ddd;
  border-radius: 8px; font-size: 1rem;
}
.gallery-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 520px) {
  .gallery-form-row { grid-template-columns: 1fr; }
}
#reviews-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.review {
  background: #fff; padding: 24px; border-radius: 16px; box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.review-stars { color: var(--coral); margin-bottom: 8px; }
.review cite { display: block; margin-top: 12px; font-style: normal; color: var(--secondary); font-weight: 600; }
#posts-list { display: flex; flex-direction: column; gap: 16px; max-width: 700px; margin: 0 auto; }
.post-card {
  background: #fff; padding: 20px; border-radius: 12px; box-shadow: var(--shadow);
}
.post-card img { width: 100%; border-radius: 8px; margin-bottom: 12px; }
.modal {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 100; align-items: center; justify-content: center; padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 16px; max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 28px; position: relative;
}
.modal-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: #666;
}
.modal-gallery {
  display: flex; gap: 8px; overflow-x: auto; margin: 16px 0;
}
.modal-gallery img { height: 180px; border-radius: 8px; flex-shrink: 0; }
.badge {
  background: var(--sand); padding: 2px 10px; border-radius: 12px; font-size: 0.8rem;
}
.chip-btn {
  display: inline-block; margin: 4px; padding: 8px 14px; border-radius: 20px;
  border: 1px solid var(--sand); background: #fff; cursor: pointer;
}
.chip-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.slot-btn {
  display: inline-flex; flex-direction: column; align-items: center; min-width: 88px;
  vertical-align: top;
}
.slot-time { font-weight: 600; }
.slot-avail {
  font-size: 0.75rem; margin-top: 2px; white-space: nowrap; font-weight: 600;
}
.slot-btn--full .slot-avail { color: #1b7f4a; }
.slot-btn--partial .slot-avail { color: #c05621; }
.chip-btn.active .slot-avail { color: rgba(255,255,255,0.95); }
.avail-summary { line-height: 1.5; }
.avail-hint {
  margin: 0 0 12px; padding: 8px 12px; border-radius: 8px;
  background: rgba(0, 119, 182, 0.08); color: #555; font-size: 0.85rem; line-height: 1.4;
}
.qty-wrap {
  display: block; margin: 12px 0;
}
.qty-wrap span { display: block; margin-bottom: 6px; font-weight: 600; }
#bk-qty {
  width: 100%; max-width: 120px; padding: 10px; border-radius: 8px; border: 1px solid #ddd;
}
.price-preview {
  margin: 0 0 12px; font-weight: 600; color: var(--primary);
}
.tg-hint {
  margin: 12px 0; font-size: 0.85rem; color: #666; line-height: 1.4;
}
.tg-hint a { color: var(--primary); }
.step-label { margin: 12px 0 8px; font-weight: 600; }
#bk-contact input {
  display: block; width: 100%; margin: 8px 0; padding: 10px; border-radius: 8px; border: 1px solid #ddd;
}
.success-box { text-align: center; padding: 20px; }
.success-box h2 { color: var(--primary); margin-bottom: 16px; }
.error { color: #c0392b; }
footer {
  text-align: center; padding: 32px; color: #666; font-size: 0.9rem;
  background: linear-gradient(0deg, var(--sand) 0%, transparent 100%);
}

/* Sticky nav */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 157, 143, 0.15);
  box-shadow: 0 2px 16px rgba(27, 107, 138, 0.08);
}
.site-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px; gap: 16px;
}
.site-nav__brand {
  font-family: Montserrat, sans-serif; font-weight: 700;
  color: var(--secondary); text-decoration: none; font-size: 1.05rem;
}
.site-nav__links {
  display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
}
.site-nav__links a {
  text-decoration: none; font-size: 0.9rem; font-weight: 600; color: var(--text);
}
.site-nav__links a:hover { color: var(--primary); }
.site-nav__toggle {
  display: none; background: none; border: 2px solid var(--secondary);
  border-radius: 8px; padding: 6px 10px; font-size: 1.2rem; cursor: pointer;
}
@media (max-width: 720px) {
  .site-nav__toggle { display: block; }
  .site-nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 16px 20px;
    border-bottom: 1px solid rgba(42, 157, 143, 0.15);
  }
  .site-nav__links.open { display: flex; }
}

.section-intro, .hero-stats {
  text-align: center; color: #666; margin-bottom: 24px;
}
.hero-stats { margin-top: 8px; font-size: 0.95rem; }
.today-live {
  display: inline-block; margin-top: 16px; padding: 8px 16px;
  background: rgba(42, 157, 143, 0.12); border-radius: 20px;
  color: var(--secondary); font-weight: 600; font-size: 0.9rem;
  animation: fade-up .6s ease;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .logo { animation: fade-up .5s ease; }

.loading-block { text-align: center; color: #888; padding: 24px; }
.loading-inline::after {
  content: ''; display: inline-block; width: 16px; height: 16px; margin-left: 8px;
  border: 2px solid var(--primary); border-top-color: transparent;
  border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  display: flex; flex-direction: column; gap: 8px; max-width: min(360px, calc(100vw - 32px));
}
.toast {
  padding: 12px 16px; border-radius: 12px; color: #fff; font-size: 0.9rem;
  box-shadow: var(--shadow); animation: toast-in .25s ease;
}
.toast--ok { background: #1b7f4a; }
.toast--err { background: #c0392b; }
.toast--info { background: var(--secondary); }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
}
.location-info {
  background: #fff; padding: 24px; border-radius: 16px; box-shadow: var(--shadow);
}
.location-tips {
  margin: 16px 0; padding-left: 20px; color: #555;
}
.location-tips li { margin-bottom: 8px; }
.location-map iframe {
  width: 100%; height: 320px; border: none; border-radius: 16px;
  box-shadow: var(--shadow);
}

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 12px; margin-bottom: 12px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600;
  font-family: Montserrat, sans-serif; color: var(--secondary);
}
.faq-item p { padding: 0 20px 16px; color: #555; margin: 0; }

.success-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px;
}
.gallery-grid { min-height: 48px; }

.menu-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.menu-category {
  background: #fff; border-radius: 16px; padding: 20px; box-shadow: var(--shadow);
}
.menu-category h3 {
  font-family: Montserrat, sans-serif; color: var(--secondary);
  margin-bottom: 12px; font-size: 1.1rem;
}
.menu-item-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-row--photo { align-items: flex-start; }
.menu-item-photo {
  flex-shrink: 0; width: 72px; height: 72px; padding: 0; border: none;
  border-radius: 10px; overflow: hidden; background: #eef3f5; cursor: zoom-in;
}
.menu-item-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.menu-item-text { flex: 1; min-width: 0; }
.menu-item-name { font-weight: 600; }
.menu-item-desc { font-size: 0.85rem; color: #666; margin-top: 2px; }
.menu-item-price { font-weight: 700; color: var(--primary); white-space: nowrap; }

.promo-row { display: flex; gap: 8px; margin-top: 6px; }
.promo-row input { flex: 1; padding: 10px; border-radius: 8px; border: 1px solid #ddd; }
.promo-wrap { display: block; margin: 12px 0; font-weight: 600; }
.promo-msg { display: block; font-size: 0.85rem; margin-top: 6px; font-weight: normal; }
.promo-msg.ok { color: #1b7f4a; }
.promo-msg.err { color: #c0392b; }

.my-booking-card {
  background: #fff; border-radius: 12px; padding: 16px; margin-top: 12px;
  box-shadow: var(--shadow); display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 12px;
}
