/* ── FONTS ── */
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/eafabf029ad39a43-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/0484562807a97172-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/b957ea75a84b6ea7-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/7db6c35d839a711c-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/6245472ced48d3be-s.p.woff2") format("woff2");
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #1a1a1a;
  color: #1a1a1a;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ── PAGE WRAPPER ── */
.page-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 16px 12px 32px;
}

/* ══════════════════════════════════════════
   FLIP CARD SYSTEM
   ══════════════════════════════════════════ */
.flip-scene {
  perspective: 1300px;
  margin-bottom: 12px;
}
.flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.35, 0.1, 0.25, 1);
}
.flip-inner.is-flipped {
  transform: rotateY(-180deg);
}
.flip-front {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
}
.flip-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: rotateY(180deg);
  border-radius: 24px;
  overflow: visible;
  pointer-events: none;
}
.flip-inner.is-flipped .flip-back {
  pointer-events: auto;
}
.flip-inner.is-flipped .flip-front {
  pointer-events: none;
}

/* ── MAIN CARD ── */
.main-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
/* ── HERO IMAGE ── */
.hero {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #0c2918;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tap-flip {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s;
  z-index: 5;
}
.tap-flip:active {
  background: rgba(255, 255, 255, 1);
}

/* ── LOGO + SOCIAL ROW ── */
.logo-social-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
  margin-top: -42px;
  margin-bottom: 4px;
  z-index: 2;
}
.logo-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #1e4d3d;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.15);
}
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
}
.soc-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  overflow: hidden;
}
.soc-ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.soc-wa {
  background: #25d366;
}

/* ── PROFILE INFO ── */
.profile-info {
  padding: 8px 20px 16px;
}
.brand-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.brand-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e4d3d;
  line-height: 1.45;
  margin-bottom: 14px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
}
.pill-star {
  color: #f59e0b;
}

.section-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 18px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.sec-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.sec-title-inline {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0;
}
.welcome-text {
  font-size: 0.84rem;
  color: #4b5563;
  line-height: 1.73;
}

/* ── MENU CATEGORIES (home) ── */
.menu-section-home {
  margin-bottom: 10px;
}
.menu-home-header {
  padding: 4px 4px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.menu-home-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 4px;
}
.menu-home-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.menu-home-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  padding-bottom: 2px;
}
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/3.8;
  display: block;
  text-decoration: none;
  background: #1e3a2f;
  transition: transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.cat-card:active {
  transform: scale(0.97);
}
.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.cat-card:active .cat-card__img {
  transform: scale(1.04);
}
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.18) 35%,
    rgba(0, 0, 0, 0.72) 75%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

/* no-image fallback */
.cat-card.no-img {
  background: linear-gradient(145deg, #1e3a2f, #163020);
}
.cat-card.no-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* item count badge */
.cat-card__count {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.cat-card__icon-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.cat-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px 12px;
}
.cat-card__name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.cat-card__desc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  transition: background 0.18s;
}
.cat-card:active .cat-card__btn {
  background: rgba(255, 255, 255, 0.26);
}

/* View Full Menu button */
.view-full-menu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  background: #1e4d3d;
  color: #fff;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s;
}
.view-full-menu-btn:active {
  background: #163920;
}
.vfm-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vfm-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.vfm-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.vfm-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 1px;
}
.vfm-arrow {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

/* ── WHY LIST ── */
.why-list {
  display: flex;
  flex-direction: column;
}
.why-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}
.why-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.why-icon {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.why-ttl {
  font-size: 0.83rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.why-sub {
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ── GALLERY (home) ── */
.gal-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  height: 200px;
  margin-bottom: 5px;
}
.gi {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.gi.tall {
  grid-row: span 2;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gi:hover img {
  transform: scale(1.06);
}
.gal-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  margin-bottom: 10px;
}
.gs {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.gs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gs:hover img {
  transform: scale(1.07);
}
.view-gal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 12px;
  border-radius: 11px;
  border: 2px solid #1e4d3d;
  color: #1e4d3d;
  font-size: 0.84rem;
  font-weight: 700;
  background: #fff;
  transition: all 0.2s;
}
.view-gal-btn:hover {
  background: #1e4d3d;
  color: #fff;
}

/* ── REVIEWS ── */
.rev-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rev-view-all {
  font-size: 0.73rem;
  font-weight: 700;
  color: #2563eb;
  white-space: nowrap;
  margin-top: 4px;
}
.rating-big {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.rating-num {
  font-size: 2.1rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}
.rating-stars-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 9px;
}
.rating-stars-row {
  display: flex;
  gap: 2px;
}
.sf {
  fill: #f59e0b;
}
.se {
  fill: none;
  stroke: #f59e0b;
  stroke-width: 2;
}
.rev-based {
  font-size: 0.67rem;
  color: #9ca3af;
}
.rev-card {
  background: #f9fafb;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 13px;
  margin-bottom: 9px;
}
.rev-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}
.rev-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.rev-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
}
.rev-meta {
  font-size: 0.67rem;
  color: #9ca3af;
  margin-top: 1px;
}
.rev-body {
  font-size: 0.76rem;
  color: #4b5563;
  line-height: 1.62;
}
.rev-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.rev-out {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px;
  border-radius: 11px;
  border: 1.5px solid #222;
  color: #222;
  font-size: 0.8rem;
  font-weight: 700;
  background: #fff;
  transition: all 0.18s;
}
.rev-out:hover {
  background: #111;
  color: #fff;
}
.rev-write {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 12px;
  border-radius: 11px;
  background: #1e4d3d;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.rev-write:hover {
  background: #2a6b55;
}

/* ── INSTAGRAM BANNER ── */
.ig-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 16px;
  background: linear-gradient(120deg, #1e4d3d 0%, #c49200 100%);
  text-decoration: none;
  transition: opacity 0.18s;
  margin-bottom: 10px;
}
.ig-banner:hover {
  opacity: 0.9;
}
.ig-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
}
.ig-text {
  flex: 1;
}
.ig-text h4 {
  font-size: 0.83rem;
  font-weight: 700;
  color: #fff;
}
.ig-text p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}
.ig-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.c-list {
  display: flex;
  flex-direction: column;
}
.c-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid #f3f4f6;
}
.c-item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}
.c-ico {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.c-lbl {
  font-size: 0.66rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.c-val {
  font-size: 0.83rem;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
}
.c-sub {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 1px;
}
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
}
.c-btn:hover {
  opacity: 0.85;
}
.cb-g {
  background: #16a34a;
}
.cb-i {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.cb-r {
  background: #dc2626;
}
.map-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  height: 128px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  margin-top: 9px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
}
.map-box:hover {
  background: #d1fae5;
}
.h-rows {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
}
.h-day {
  color: #6b7280;
}
.h-time {
  font-weight: 700;
  color: #1a1a1a;
}
.h-closed {
  font-weight: 700;
  color: #ef4444;
}

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 18px 16px 22px;
  text-align: center;
  border-top: 3px solid #1e4d3d;
}
.fc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.fc strong {
  color: #f5c518;
}
.fp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 9px;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.28);
}
.fp a {
  color: rgba(255, 255, 255, 0.46);
  text-decoration: underline;
}

   GET IN TOUCH SECTION
   ══════════════════════════════════════════ */
.git-header {
  background: linear-gradient(135deg, #1e4d3d, #2f6b55);
  padding: 22px 20px 18px;
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
}
.git-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.git-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.git-quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9px;
  padding: 14px 14px 0;
  background: #fff;
}
.git-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 6px;
  border-radius: 16px;
  gap: 7px;
  text-decoration: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.git-quick-btn:active {
  transform: scale(0.95);
}
.git-quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.git-quick-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #111;
}
.git-quick-val {
  font-size: 0.62rem;
  color: #6b7280;
  text-align: center;
}
.git-call .git-quick-icon {
  background: #e6f7f0;
  color: #1e4d3d;
}
.git-whatsapp .git-quick-icon {
  background: #e7fce8;
  color: #25d366;
}
.git-instagram .git-quick-icon {
  background: #fce8f3;
  color: #e1306c;
}
.git-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 14px;
  background: #fff;
  border-radius: 0 0 20px 20px;
}
.git-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background 0.18s;
}
.git-info-card:active {
  background: #f0f0f0;
}
.git-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1e4d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.git-card-body {
  flex: 1;
}
.git-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.git-card-val {
  font-size: 0.82rem;
  color: #111;
  line-height: 1.55;
  margin-bottom: 4px;
}
.git-card-action {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e4d3d;
  margin-top: 6px;
}
.git-hours-table {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
}
.git-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.git-day {
  font-size: 0.8rem;
  color: #444;
}
.git-open-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #15803d;
  background: #e6f7f0;
  border-radius: 999px;
  padding: 3px 10px;
}
.git-closed-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #b91c1c;
  background: #fef2f2;
  border-radius: 999px;
  padding: 3px 10px;
}

/* ── LIGHTBOX (home cards) ── */
#lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  align-items: center;
  justify-content: center;
}
#lb.open {
  display: flex;
}
#lb-img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}
#lb-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

/* ── CARD 1 (Menu) — unique extras ── */
.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
/* card-1: green chip */
.page-1-menu-card .card-chip {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #15803d;
}
.open-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
}
.open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Promo Banner */
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 40px 11px 16px;
  background: linear-gradient(90deg, #1e4d3d 0%, #2e7d58 50%, #c49200 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
  animation: bannerSlide 0.5s ease;
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0px,
    rgba(255, 255, 255, 0) 18px,
    rgba(255, 255, 255, 0.04) 18px,
    rgba(255, 255, 255, 0.04) 20px
  );
}
.promo-banner-emoji {
  font-size: 1rem;
  flex-shrink: 0;
}
.promo-banner-text {
  position: relative;
  z-index: 1;
}
.promo-banner-text strong {
  color: #fde68a;
}
.promo-banner-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s;
  z-index: 2;
  flex-shrink: 0;
}
.promo-banner-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
@keyframes bannerSlide {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.promo-banner.hiding {
  animation: bannerHide 0.3s ease forwards;
}
@keyframes bannerHide {
  to {
    opacity: 0;
    max-height: 0;
    padding: 0;
  }
}

/* ── CARD 2 (Catalogue) — unique extras ── */
.page-2-catalogue-card .card-chip {
  background: #e8edf8;
  border: 1.5px solid #b8c7e8;
  color: #1e3a6e;
}
.btn-wa-green {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #eaecf0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-2px);
}
.product-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f3f4f6;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.prod-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e23744;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}
.product-body {
  padding: 10px 10px 12px;
}
.product-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
  line-height: 1.3;
}
.product-prices {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.product-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
}
.product-mrp {
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.product-off {
  font-size: 0.68rem;
  font-weight: 700;
  color: #16a34a;
}
.product-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  background: #e7fce8;
  color: #15803d;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.view-cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: #1e3a6e;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}
.view-cat-btn:hover {
  background: #2a4fa3;
}

/* ── CARD 3 (Business) — unique extras ── */
.page-3-business-card .card-chip {
  background: #fef9c3;
  border: 1.5px solid #fde68a;
  color: #854d0e;
}
.page-3-business-card footer {
  border-top-color: #b8860b !important;
}
.save-vcard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: #1c1c1c;
  color: #fff;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.save-vcard:hover {
  background: #333;
}
.save-vcard .gold {
  color: #f5c518;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid #f3f4f6;
}
.stat-box {
  background: #fff;
  padding: 16px 8px;
  text-align: center;
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1c1c1c;
  line-height: 1;
}
.stat-suffix {
  font-size: 1rem;
  font-weight: 900;
  color: #b8860b;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #9ca3af;
  margin-top: 4px;
  line-height: 1.3;
}
.svc-list {
  display: flex;
  flex-direction: column;
}
.svc-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid #f3f4f6;
}
.svc-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.svc-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.svc-body {
  flex: 1;
}
.svc-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.svc-desc {
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.5;
}
.svc-price {
  font-size: 0.78rem;
  font-weight: 800;
  color: #b8860b;
  white-space: nowrap;
}
.skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1.5px solid #e5e7eb;
  font-size: 0.76rem;
  font-weight: 600;
  color: #374151;
}

/* ── CARD 4 (Appointment) — unique extras ── */
.page-4-appointment-card .card-chip {
  background: #f3e8ff;
  border: 1.5px solid #ddd6fe;
  color: #6b46c1;
}
.page-4-appointment-card footer {
  border-top-color: #6b46c1 !important;
}


.hero-gallery {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-img.active {
    opacity: 1;
    z-index: 2;
}

