:root {
  --dir-ink: #1a120b;
  --dir-muted: #6b5344;
  --dir-paper: #faf6f1;
  --dir-sand: #e8ddd0;
  --dir-spice: #c2410c;
  --dir-spice-deep: #9a3412;
  --dir-leaf: #15803d;
  --dir-hero: #1a120b;
  --dir-accent: #ea580c;
  --dir-font: "Outfit", system-ui, sans-serif;
  --dir-display: "Fraunces", Georgia, serif;
}

.dir-body {
  margin: 0;
  font-family: var(--dir-font);
  color: var(--dir-ink);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(234, 88, 12, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 5%, rgba(21, 128, 61, 0.08), transparent 50%),
    linear-gradient(180deg, #fffdf9 0%, var(--dir-paper) 42%, #f3ebe3 100%);
  min-height: 100vh;
}

.dir-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(240, 244, 248, 0.88);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}

.dir-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dir-brand {
  font-family: var(--dir-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--dir-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.dir-brand .brand-logo {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.12);
}

.dir-brand-name {
  line-height: 1.15;
}

.dir-brand-mark {
  display: none;
}

.dir-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.dir-footer-brand .brand-logo {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(28, 25, 23, 0.12);
}

.dir-brand--footer {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.dir-auth-visual-inner .brand-logo,
.dir-auth .brand-logo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  box-shadow: 0 10px 28px rgba(12, 10, 9, 0.22);
}

.dir-auth .brand-logo {
  margin-left: auto;
  margin-right: auto;
}

.dir-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dir-nav-links a,
.dir-link-btn {
  color: var(--dir-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.dir-nav-links a:hover,
.dir-link-btn:hover {
  color: var(--dir-ink);
}

.dir-nav-cta {
  background: var(--dir-spice) !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.22);
}

.dir-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: visible;
  background: var(--dir-hero);
}

.dir-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, rgba(12, 10, 9, 0.72) 70%, rgba(12, 10, 9, 0.92) 100%),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.02);
  animation: dir-hero-drift 18s ease-in-out infinite alternate;
  clip-path: inset(0);
}

@keyframes dir-hero-drift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.dir-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3rem;
}

.dir-hero .dir-brand-hero {
  font-family: var(--dir-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.9rem;
  animation: dir-fade-up 0.8s ease both;
  display: flex;
  align-items: center;
}

.dir-hero .dir-brand-hero .brand-logo {
  width: clamp(7.5rem, 22vw, 11.5rem);
  height: clamp(7.5rem, 22vw, 11.5rem);
  border-radius: 50%;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
  background: rgba(255, 255, 255, 0.92);
  padding: 0.35rem;
}

.dir-hero p {
  max-width: 34rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 1.5rem;
  animation: dir-fade-up 0.8s ease 0.12s both;
}

@keyframes dir-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.dir-search {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.95fr auto auto;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.55rem;
  border-radius: 14px;
  animation: dir-fade-up 0.8s ease 0.22s both;
}

.dir-search-suggest-wrap {
  position: relative;
  min-width: 0;
}

.dir-search-suggest-wrap .dir-suggest {
  min-width: min(320px, 80vw);
  z-index: 80;
}

.dir-search-panel {
  grid-template-columns: 1.15fr 0.9fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--dir-sand);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
  animation: none;
}

.dir-search-simple {
  grid-template-columns: 1fr auto;
}

.dir-search-field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.dir-search-field span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dir-muted);
}

.dir-search-field input,
.dir-search input {
  border: 0;
  background: transparent;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--dir-ink);
  outline: none;
  width: 100%;
}

.dir-search-panel .dir-search-field input {
  background: var(--dir-paper);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dir-search-panel .dir-search-field input:focus {
  background: #fff;
  border-color: #9fb3c8;
}

.dir-search-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dir-search .btn-locate,
.dir-search .btn-go {
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  padding: 0.75rem 1rem;
  cursor: pointer;
  min-height: 48px;
}

.dir-search-panel .btn-locate,
.dir-search-panel .btn-go {
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
}

.dir-search .btn-locate {
  background: #eef2f6;
  color: var(--dir-ink);
}

.dir-search .btn-locate:hover {
  background: #e2e8f0;
}

.dir-search .btn-go {
  background: var(--dir-spice);
  color: #fff;
}

.dir-search .btn-go:hover {
  background: var(--dir-spice-deep);
}

@media (max-width: 900px) {
  .dir-search,
  .dir-search-panel,
  .dir-search-simple {
    grid-template-columns: 1fr;
  }

  .dir-search-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dir-search-simple .dir-search-actions {
    grid-template-columns: 1fr;
  }
}

.dir-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem;
}

.dir-section h1,
.dir-section h2,
.dir-page-head h1 {
  font-family: var(--dir-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.dir-section .lead,
.dir-page-head .lead {
  color: var(--dir-muted);
  margin: 0 0 1.5rem;
  max-width: 40rem;
  line-height: 1.5;
}

.dir-page-head {
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 244, 248, 0.65) 100%);
}

.dir-page-head-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 1.75rem;
}

.dir-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dir-spice);
}

.dir-page-head h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.dir-results-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dir-results-bar h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.dir-link-clear {
  color: var(--dir-muted);
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.dir-link-clear:hover {
  color: var(--dir-ink);
}

.dir-section-results {
  padding-top: 1.75rem;
}

.dir-empty {
  padding: 2.5rem 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--dir-sand);
  border-radius: 18px;
  color: var(--dir-muted);
}

.dir-empty p {
  margin: 0 0 1rem;
}

.dir-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.dir-city-grid a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: var(--dir-ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--dir-sand);
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dir-city-grid a:hover {
  transform: translateY(-2px);
  border-color: #d6d3d1;
}

.dir-city-grid strong {
  display: block;
  font-size: 1.05rem;
}

.dir-city-grid span {
  color: var(--dir-muted);
  font-size: 0.85rem;
}

.dir-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dir-ink);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
  cursor: pointer;
}

.dir-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1200px) {
  .dir-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .dir-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.dir-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  animation: dir-fade-up 0.55s ease both;
}

.dir-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.dir-list .dir-card:nth-child(2) { animation-delay: 0.05s; }
.dir-list .dir-card:nth-child(3) { animation-delay: 0.1s; }
.dir-list .dir-card:nth-child(4) { animation-delay: 0.15s; }
.dir-list .dir-card:nth-child(5) { animation-delay: 0.2s; }
.dir-list .dir-card:nth-child(6) { animation-delay: 0.25s; }

.dir-card:hover {
  border-color: #9fb3c8;
  box-shadow: 0 18px 40px rgba(16, 42, 67, 0.12);
  transform: translateY(-3px);
}

.dir-card-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  margin-top: -0.25rem;
}

.dir-fav-form {
  margin: 0;
}

.dir-fav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--dir-sand);
  background: var(--dir-paper);
  color: var(--dir-muted);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.dir-fav-btn:hover {
  color: var(--dir-ink);
  border-color: #bcccdc;
}

.dir-fav-btn.is-active,
.dir-fav-detail.is-active {
  color: #9f1239;
  background: #fff1f2;
  border-color: #fecdd3;
}

.dir-fav-btn.is-active i,
.dir-fav-detail.is-active i {
  color: #e11d48;
}

.dir-lead-btn {
  color: #0f766e;
  border-color: #99f6e4;
  background: #f0fdfa;
}

.dir-lead-btn:hover {
  color: #115e59;
  border-color: #5eead4;
}

.dir-lead-btn--wa {
  color: #128c7e;
  border-color: #a7f3d0;
  background: #ecfdf5;
}

.dir-lead-btn--wa:hover {
  color: #065f46;
  border-color: #6ee7b7;
}

.dir-lead-btn--wa i {
  color: #25d366;
}

.dir-detail-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0.15rem 0;
  align-items: center;
}

.dir-google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin-bottom: 0.35rem;
  color: var(--dir-ink);
}

.dir-google-stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #e2a100;
  letter-spacing: 0;
}

.dir-google-rating strong {
  font-weight: 700;
}

.dir-card-heading-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.dir-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dir-ink);
  white-space: nowrap;
}

.dir-card-rating i {
  color: #e2a100;
  font-size: 0.78rem;
}

.dir-card-reviews {
  font-weight: 500;
  color: var(--dir-muted, #6b7280);
  font-size: 0.78rem;
}

.dir-map-section {
  margin-top: 0.25rem;
}

.dir-map-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dir-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dir-map-frame {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--dir-sand);
  background: #e8eef3;
  aspect-ratio: 16 / 9;
  min-height: 260px;
}

.dir-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .dir-map-frame {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
}

.dir-share {
  position: relative;
}

.dir-share-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 20;
  min-width: 190px;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--dir-sand);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(16, 42, 67, 0.14);
  display: grid;
  gap: 0.2rem;
}

.dir-share-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--dir-ink);
  text-decoration: none;
  font: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
}

.dir-share-item:hover {
  background: var(--dir-paper);
}

.dir-share-item .bi-whatsapp {
  color: #128c7e;
}

.dir-card-media {
  position: relative;
  height: 140px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.dir-card-has-photo {
  background-color: #243b53;
}

.dir-card-has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 42, 67, 0.05) 20%, rgba(16, 42, 67, 0.45) 100%);
}

.dir-card-tone-0 {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(135deg, #134e4a 0%, #102a43 55%, #243b53 100%);
}

.dir-card-tone-1 {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.16), transparent 40%),
    linear-gradient(145deg, #0f766e 0%, #164e63 50%, #102a43 100%);
}

.dir-card-tone-2 {
  background:
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.12), transparent 45%),
    linear-gradient(160deg, #1e3a5f 0%, #0f766e 70%, #115e59 100%);
}

.dir-card-tone-3 {
  background:
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(125deg, #243b53 0%, #334e68 40%, #0f766e 100%);
}

.dir-card-media-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--dir-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: -0.04em;
  user-select: none;
}

.dir-card-city {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dir-ink);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.dir-card-logo {
  position: absolute;
  right: 0.9rem;
  bottom: -1.35rem;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.18);
}

.dir-card-logo-fallback {
  display: grid;
  place-items: center;
  font-family: var(--dir-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dir-ink);
  background: #eef2f6;
}

.dir-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 1.85rem 1.15rem 1.15rem;
}

.dir-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dir-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.25;
  color: var(--dir-ink);
}

.dir-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dir-card-tags span {
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--dir-muted);
  background: var(--dir-paper);
  border: 1px solid var(--dir-sand);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.dir-card-tags--type {
  margin-bottom: 0.15rem;
}

.dir-tag-type {
  background: rgba(234, 88, 12, 0.12) !important;
  color: var(--dir-spice-deep) !important;
  border-color: rgba(234, 88, 12, 0.22) !important;
}

.dir-type-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.dir-type-chip {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--dir-ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--dir-sand);
  background: #fff;
  white-space: nowrap;
}

.dir-type-chip.is-active,
.dir-type-chip:hover {
  border-color: var(--dir-accent);
  color: var(--dir-spice-deep);
  background: rgba(234, 88, 12, 0.08);
}

.dir-search-select {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--dir-ink);
  min-height: 44px;
}

.dir-search-panel .dir-search-select {
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 0.7rem 0.85rem;
}

.dir-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: var(--dir-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  min-height: 2.7em;
}

.dir-card-cta {
  margin-top: auto;
  padding-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dir-spice);
}

.dir-card:hover .dir-card-cta {
  color: var(--dir-spice-deep);
}

.dir-card:hover .dir-card-cta i {
  transform: translateX(3px);
}

.dir-card-cta i {
  transition: transform 0.2s ease;
}

.dir-meta {
  color: var(--dir-muted);
  font-size: 0.92rem;
}

.dir-dist {
  font-weight: 750;
  color: var(--dir-leaf);
  white-space: nowrap;
  font-size: 0.9rem;
  padding-top: 0.15rem;
}

.dir-menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .dir-menu-gallery {
    grid-template-columns: repeat(12, 1fr);
  }

  .dir-menu-gallery-item:first-child {
    grid-column: span 6;
    grid-row: span 2;
  }

  .dir-menu-gallery-item:first-child img {
    aspect-ratio: 4 / 3;
    height: 100%;
  }

  .dir-menu-gallery-item:not(:first-child) {
    grid-column: span 3;
  }
}

.dir-menu-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--dir-sand, #e7e5e4);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
  cursor: zoom-in;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dir-menu-gallery-item:hover,
.dir-menu-gallery-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(28, 25, 23, 0.14);
  outline: none;
}

.dir-menu-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.dir-menu-gallery-zoom {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(12, 10, 9, 0.55);
  color: #fff;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.dir-menu-gallery-cap {
  display: block;
  padding: 0.55rem 0.7rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dir-muted);
  background: #fff;
}

body.dir-lightbox-open {
  overflow: hidden;
}

.dir-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.dir-lightbox[hidden] {
  display: none !important;
}

.dir-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(6px);
}

.dir-lightbox-stage {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 1.5rem));
  max-height: calc(100dvh - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.dir-lightbox-figure {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.dir-lightbox-figure img {
  max-width: 100%;
  max-height: min(78dvh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.dir-lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.25rem;
}

.dir-lightbox-close,
.dir-lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.dir-lightbox-close:hover,
.dir-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.dir-lightbox-close {
  top: 0.35rem;
  right: 0.35rem;
  z-index: 2;
}

.dir-lightbox-prev {
  left: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
}

.dir-lightbox-next {
  right: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
}

.dir-lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
}

.dir-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dir-section-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dir-muted);
  background: rgba(28, 25, 23, 0.06);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.dir-empty-gallery {
  text-align: center;
  padding: 2.25rem 1.25rem;
  border: 1px dashed var(--dir-sand);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.dir-empty-gallery i {
  font-size: 2rem;
  color: var(--dir-spice);
  display: block;
  margin-bottom: 0.65rem;
}

.dir-empty-gallery h2 {
  margin-bottom: 0.35rem;
}

.dir-empty-gallery p {
  color: var(--dir-muted);
  margin: 0 auto 1rem;
  max-width: 28rem;
}

/* legacy logo utility still used elsewhere */
.dir-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #e7e5e4;
  display: grid;
  place-items: center;
  color: var(--dir-muted);
  font-weight: 700;
  flex-shrink: 0;
}

.dir-detail-banner {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 42vw, 440px);
  overflow: hidden;
  color: #fff;
  background: var(--dir-hero);
}

.dir-detail-banner-media {
  position: absolute;
  inset: 0;
  background: var(--detail-banner) center/cover no-repeat;
  transform: scale(1.04);
  animation: dir-detail-ken 18s ease-in-out infinite alternate;
}

@keyframes dir-detail-ken {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-1.5%); }
}

.dir-detail-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.28) 0%, rgba(12, 10, 9, 0.35) 40%, rgba(12, 10, 9, 0.88) 100%);
}

.dir-detail-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  min-height: inherit;
  padding: 1.1rem 1.25rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.dir-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}

.dir-detail-back:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.dir-detail-banner-title {
  max-width: 42rem;
  animation: dir-fade-up 0.7s ease both;
  padding-bottom:30px;
}

.dir-detail-banner-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.dir-detail-banner-kicker a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.dir-detail-banner-kicker a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.dir-detail-banner-title h1 {
  font-family: var(--dir-display);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.dir-detail-shell {
  max-width: 1180px;
  margin: -2.25rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1.25rem 5.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.35rem;
  align-items: start;
}

.dir-detail-main {
  min-width: 0;
  display: grid;
  gap: 1.25rem;
}

.dir-detail-card {
  background: #fff;
  border: 1px solid var(--dir-sand);
  border-radius: 22px;
  padding: 1.25rem 1.35rem 1.35rem;
  box-shadow: 0 18px 48px rgba(16, 42, 67, 0.12);
  animation: dir-fade-up 0.65s ease 0.08s both;
}

.dir-detail-card--identity {
  padding-top: 1.35rem;
}

.dir-detail-identity {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.dir-detail-logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.18);
  flex-shrink: 0;
  margin-top: -3.5rem;
  background: #e7e5e4;
  animation: dir-fade-up 0.55s ease both;
}

.dir-detail-logo-fallback {
  display: grid;
  place-items: center;
  font-family: var(--dir-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dir-ink);
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
}

.dir-detail-identity-text {
  min-width: 0;
  flex: 1;
}

.dir-detail-name-mobile {
  display: none;
  font-family: var(--dir-display);
  font-size: 1.55rem;
  margin: 0.2rem 0 0.45rem;
  line-height: 1.15;
}

.dir-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.dir-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.06);
  color: var(--dir-ink);
}

.dir-badge-listing {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}

.dir-badge-order {
  background: rgba(194, 65, 12, 0.12);
  color: var(--dir-spice-deep);
}

.dir-badge-rating {
  background: rgba(226, 161, 0, 0.14);
  color: #92400e;
}

.dir-badge-rating i {
  color: #e2a100;
  font-size: 0.75rem;
}

.dir-badge-open,
.dir-open-badge.dir-badge-open {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.dir-badge-soon,
.dir-open-badge.dir-badge-soon {
  background: rgba(217, 119, 6, 0.14);
  color: #b45309;
}

.dir-badge-closed,
.dir-open-badge.dir-badge-closed {
  background: rgba(120, 113, 108, 0.14);
  color: #57534e;
}

.dir-badge-muted,
.dir-open-badge.dir-badge-muted {
  background: rgba(28, 25, 23, 0.06);
  color: #78716c;
}

.dir-badge-area {
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  text-decoration: none;
}

.dir-open-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  left: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
}

.dir-eta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dir-muted);
}

.dir-eta-out {
  color: #a8a29e;
}

.dir-card-area {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
}

.dir-card-area a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 600;
}

.dir-card-area a:hover {
  text-decoration: underline;
}

.dir-link-muted {
  color: var(--dir-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.dir-link-muted:hover {
  color: var(--dir-ink);
  text-decoration: underline;
}

.dir-signal {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dir-muted);
}

.dir-signal-popular,
.dir-badge-popular {
  background: rgba(194, 65, 12, 0.12);
  color: #c2410c;
}

.dir-badge-popular {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.dir-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.dir-promo-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 25, 23, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dir-promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
  color: inherit;
}

.dir-promo-media {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #e7e5e4;
}

.dir-promo-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1.1rem;
}

.dir-promo-kind {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f766e;
}

.dir-promo-body strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.dir-promo-sub {
  font-size: 0.88rem;
  color: var(--dir-muted);
}

.dir-promo-cta {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dir-spice-deep, #c2410c);
}

.dir-btn-accent {
  background: var(--dir-spice-deep, #c2410c);
  color: #fff;
  border: none;
}

.dir-detail-lead {
  margin: 0.55rem 0 0;
  color: var(--dir-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 40rem;
}

.dir-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.dir-detail-fact {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 241, 0.95));
  border: 1px solid rgba(232, 221, 208, 0.9);
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.dir-detail-fact--link {
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.dir-detail-fact--link:hover {
  border-color: #f0b089;
  transform: translateY(-1px);
  color: inherit;
}

.dir-detail-fact-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(194, 65, 12, 0.1);
  color: var(--dir-spice);
}

.dir-detail-fact-icon--rating {
  background: rgba(226, 161, 0, 0.16);
  color: #ca8a04;
}

.dir-detail-fact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dir-muted);
  margin-bottom: 0.15rem;
}

.dir-detail-fact p {
  margin: 0;
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-word;
}

.dir-detail-fact-muted {
  font-weight: 500;
  color: var(--dir-muted);
}

.dir-detail-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: sticky;
  top: 4.5rem;
  z-index: 15;
  padding: 0.35rem;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dir-sand);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 8px 22px rgba(16, 42, 67, 0.06);
}

.dir-detail-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--dir-ink);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.dir-detail-jump a:hover {
  background: rgba(194, 65, 12, 0.1);
  color: var(--dir-spice-deep);
}

.dir-detail-block {
  scroll-margin-top: 6.5rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 221, 208, 0.85);
  border-radius: 22px;
}

.dir-detail-block-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dir-spice);
}

.dir-detail-block h2 {
  font-family: var(--dir-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 0.25rem;
}

.dir-detail-muted {
  color: var(--dir-muted);
  margin: 0;
}

.dir-detail-aside {
  position: sticky;
  top: 5.25rem;
  animation: dir-fade-up 0.7s ease 0.16s both;
}

.dir-detail-aside-card {
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(234, 88, 12, 0.14), transparent 55%),
    linear-gradient(165deg, #1a120b 0%, #2a1a12 55%, #3d2314 100%);
  color: #fff;
  border-radius: 24px;
  padding: 1.35rem 1.25rem 1.3rem;
  box-shadow: 0 22px 50px rgba(26, 18, 11, 0.28);
}

.dir-detail-aside-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdba74;
}

.dir-detail-aside-title {
  font-family: var(--dir-display);
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 0 0 0.35rem;
}

.dir-detail-aside-sub {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.dir-actions-aside {
  margin-top: 0;
  display: grid;
  gap: 0.55rem;
}

.dir-actions-aside .dir-btn {
  width: 100%;
  border-radius: 14px;
}

.dir-actions-aside .dir-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.dir-actions-aside .dir-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dir-actions-aside .dir-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dir-actions-aside .dir-listing-note {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dir-actions-aside .dir-listing-note i {
  color: #fdba74;
}

.dir-detail-aside-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dir-detail-aside-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.dir-detail-aside-links a:hover {
  color: #fff;
}

.dir-detail-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .dir-detail-shell {
    grid-template-columns: 1fr;
  }

  .dir-detail-aside {
    position: static;
  }

  .dir-detail-aside-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem 1.25rem;
    align-items: start;
  }

  .dir-detail-aside-links {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
  }
}

.dir-listing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--dir-ink);
  font-size: 0.92rem;
  line-height: 1.4;
}

.dir-listing-note i {
  color: #0f766e;
  margin-top: 0.1rem;
}

.dir-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.dir-section-tight {
  padding-top: 1.75rem;
}

.dir-map-section {
  margin-bottom: 1rem;
}

.dir-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  min-height: 46px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dir-btn:hover {
  transform: translateY(-1px);
}

.dir-btn-primary {
  background: linear-gradient(135deg, #f97316, var(--dir-spice-deep));
  color: #fff;
  border: 0;
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.25);
}

.dir-btn-secondary {
  background: var(--dir-ink);
  color: #fff;
}

.dir-btn-ghost {
  background: transparent;
  color: var(--dir-ink);
  border: 1px solid var(--dir-sand);
}

.dir-menu-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.95rem;
}

.dir-menu-preview-card,
.dir-menu-preview article {
  padding: 0;
  background: #fff;
  border: 1px solid var(--dir-sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dir-menu-preview-card:hover,
.dir-menu-preview article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(28, 25, 23, 0.12);
}

.dir-menu-preview-media {
  position: relative;
  background: #f3ebe3;
}

.dir-menu-preview-media img,
.dir-menu-preview img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}

.dir-menu-preview-placeholder {
  height: 130px;
  display: grid;
  place-items: center;
  color: #c4a484;
  font-size: 1.6rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(234, 88, 12, 0.12), transparent 55%),
    #f3ebe3;
}

.dir-menu-preview-price {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  background: rgba(26, 18, 11, 0.82);
  color: #fff;
  font-weight: 750;
  font-size: 0.85rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.dir-menu-preview-price .product-price-mrp,
.product-price-mrp {
  text-decoration: line-through;
  opacity: 0.75;
  font-weight: 550;
  font-size: 0.9em;
}

.dir-menu-preview-body {
  padding: 0.8rem 0.85rem 0.95rem;
}

.dir-menu-preview-body .dir-meta {
  margin-bottom: 0.25rem;
}

.dir-menu-preview-body strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
}

.dir-auth-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100dvh - 8rem);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.dir-auth-visual {
  position: relative;
  min-height: 320px;
  color: #fff;
  overflow: hidden;
  background: #1a120b;
}

.dir-auth-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26, 18, 11, 0.25) 0%, rgba(26, 18, 11, 0.78) 70%),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.dir-auth-visual-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 2.5rem;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.dir-auth-visual h2 {
  font-family: var(--dir-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.35rem 0 0.75rem;
  line-height: 1.1;
}

.dir-auth-visual p {
  margin: 0;
  opacity: 0.92;
  line-height: 1.5;
}

.dir-auth {
  max-width: 480px;
  width: 100%;
  margin: 0;
  padding: 2.5rem 1.75rem 3rem;
  align-self: center;
}

.dir-auth h1 {
  font-family: var(--dir-display);
  margin-bottom: 0.35rem;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
}

.dir-auth-panel,
.dir-auth .panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--dir-sand);
  border-radius: 20px;
  padding: 1.65rem;
  margin-top: 1.15rem;
  box-shadow: 0 18px 40px rgba(26, 18, 11, 0.07);
}

.dir-auth .form-control-lg {
  border-radius: 12px;
  border-color: #e2d6c8;
}

.dir-auth .form-control-lg:focus {
  border-color: var(--dir-accent);
  box-shadow: 0 0 0 0.2rem rgba(234, 88, 12, 0.15);
}

.dir-auth-form {
  display: grid;
  gap: 0.85rem;
}

.dir-auth-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.dir-auth-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.dir-auth-field input,
.dir-auth-field textarea,
.dir-auth-form .form-control,
.dir-auth-form .form-control-lg {
  width: 100%;
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 16px; /* prevents iOS zoom */
  background: #fffdf9;
  color: var(--dir-ink);
  min-height: 48px;
  box-sizing: border-box;
}

.dir-auth-field textarea {
  min-height: 72px;
  resize: vertical;
}

.dir-auth-field input:focus,
.dir-auth-field textarea:focus {
  outline: 2px solid rgba(234, 88, 12, 0.35);
  border-color: var(--dir-accent);
  background: #fff;
}

.dir-auth-field span.field-validation-error,
.dir-auth-field .text-danger,
.dir-auth-field > span {
  display: block;
  color: #b91c1c;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.dir-auth-errors {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.06);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin: 0;
  font-size: 0.92rem;
}

.dir-auth-errors:empty {
  display: none;
}

.dir-auth-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.dir-auth-check {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.dir-auth-submit {
  min-height: 48px;
  margin-top: 0.15rem;
  font-size: 1.05rem;
}

.dir-auth-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dir-sand);
}

.dir-auth-links a {
  color: var(--dir-spice-deep);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.dir-auth-links a:hover {
  text-decoration: underline;
}

.dir-auth-perk-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.dir-auth-perk-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.dir-auth-perk-list i {
  opacity: 0.95;
}

.dir-auth-shell--register .dir-auth,
.dir-auth-shell--admin .dir-auth,
.dir-auth-shell--staff .dir-auth {
  padding-top: 1.75rem;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.dir-flash {
  max-width: 1180px;
  margin: 0.75rem auto 0;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
}

.dir-flash-ok { background: #ecfdf5; color: #065f46; }
.dir-flash-err { background: #fef2f2; color: #991b1b; }

.dir-footer {
  margin-top: 0;
  border-top: 1px solid var(--dir-sand);
  background: linear-gradient(180deg, #fff 0%, #faf6f1 100%);
}

.dir-related-seo {
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(234, 88, 12, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.55), rgba(243, 235, 227, 0.7));
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}

.dir-related-seo-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.dir-related-seo-head {
  margin-bottom: 1.35rem;
  max-width: 42rem;
}

.dir-related-seo-head h2 {
  font-family: var(--dir-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.dir-related-seo-head .lead {
  margin: 0;
  color: var(--dir-muted);
  font-size: 0.95rem;
}

.dir-related-seo-rows {
  display: grid;
  gap: 1rem;
}

.dir-related-seo-row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.65rem 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.dir-related-seo-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.dir-related-seo-row h3 {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dir-spice);
  white-space: nowrap;
}

.dir-related-seo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.dir-related-seo-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  max-width: 100%;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 25, 23, 0.1);
  background: #fff;
  color: var(--dir-ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.88rem;
  line-height: 1.3;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.dir-related-seo-link:hover {
  border-color: rgba(234, 88, 12, 0.45);
  background: rgba(234, 88, 12, 0.08);
  color: var(--dir-spice-deep);
}

.dir-related-seo-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 16rem;
}

.dir-related-seo-meta {
  color: var(--dir-muted);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.dir-related-seo-link--all {
  border-color: rgba(194, 65, 12, 0.28);
  color: var(--dir-spice-deep);
  background: rgba(234, 88, 12, 0.06);
}

@media (max-width: 700px) {
  .dir-related-seo {
    padding: 2rem 0 1.5rem;
  }

  .dir-related-seo-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .dir-related-seo-row h3 {
    margin: 0;
  }
}

.dir-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2.75rem;
}

.dir-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
}

.dir-footer p {
  color: var(--dir-muted);
  max-width: 32rem;
}

.dir-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.dir-footer-links a {
  color: var(--dir-muted);
  font-weight: 600;
  text-decoration: none;
}

.dir-footer-links a:hover {
  color: var(--dir-spice);
}

@media (max-width: 800px) {
  .dir-nav-inner {
    flex-wrap: wrap;
    padding: 0.7rem 1rem;
  }

  .dir-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .dir-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.35rem 0 0.5rem;
  }

  .dir-nav-links.is-open {
    display: flex;
  }

  .dir-nav-links a,
  .dir-nav-links .dir-link-btn {
    padding: 0.7rem 0.35rem;
    border-bottom: 1px solid var(--dir-sand);
  }

  .dir-nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .dir-hero {
    min-height: min(72vh, 520px);
  }

  .dir-hero-inner {
    padding: 3.25rem 1rem 2rem;
  }

  .dir-hero .dir-brand-hero {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .dir-hero .dir-brand-hero .brand-logo {
    width: clamp(6.5rem, 34vw, 9rem);
    height: clamp(6.5rem, 34vw, 9rem);
  }

  .dir-brand-name {
    font-size: 1.05rem;
  }

  .dir-hero p {
    font-size: 1rem;
  }

  .dir-section {
    padding: 2rem 1rem;
  }

  .dir-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .dir-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

.dir-card-media {
    height: 150px;
  }

  .dir-card-logo {
    width: 58px;
    height: 58px;
    bottom: -1.2rem;
  }

  .dir-card-body {
    padding: 1.65rem 1rem 1rem;
  }

  .dir-page-head-inner {
    padding: 1.75rem 1rem 1.35rem;
  }

  .dir-results-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dir-actions-sticky {
    position: sticky;
    bottom: 0;
    z-index: 30;
    margin: 1rem -0.25rem 0;
    padding: 0.75rem 0.25rem calc(0.75rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(240, 244, 248, 0), rgba(240, 244, 248, 0.92) 28%, #f0f4f8 55%);
  }

  .dir-actions-sticky .dir-btn {
    flex: 1 1 calc(50% - 0.4rem);
  }

  .dir-detail-banner {
    min-height: clamp(240px, 58vw, 340px);
  }

  .dir-detail-banner-inner {
    padding: 1rem 1rem 2.1rem;
  }

  .dir-detail-banner-title h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .dir-detail-shell {
    margin-top: -1.5rem;
    padding: 0 1rem 6.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dir-detail-aside {
    display: none;
  }

  .dir-detail-aside-card {
    display: block;
  }

  .dir-detail-mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 253, 249, 0.94);
    border-top: 1px solid var(--dir-sand);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 28px rgba(16, 42, 67, 0.08);
  }

  .dir-detail-mobile-cta .dir-btn {
    border-radius: 14px;
    min-height: 48px;
  }

  .dir-detail-mobile-cta:has(> :only-child) {
    grid-template-columns: 1fr;
  }

  .dir-detail-identity {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .dir-detail-logo {
    width: 78px;
    height: 78px;
    margin-top: -3.1rem;
    border-radius: 18px;
  }

  .dir-detail-name-mobile {
    display: block;
  }

  .dir-detail-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .dir-detail-facts {
    grid-template-columns: 1fr;
  }

  .dir-detail-jump {
    top: 4.1rem;
    border-radius: 16px;
    width: 100%;
    justify-content: stretch;
  }

  .dir-detail-jump a {
    flex: 1 1 auto;
    justify-content: center;
  }

  .dir-detail-block {
    padding: 1.05rem 1rem 1.2rem;
    border-radius: 18px;
    scroll-margin-top: 7.5rem;
  }

  .dir-lightbox-prev,
  .dir-lightbox-next {
    width: 40px;
    height: 40px;
  }

  .dir-lightbox-figure img {
    max-height: min(68dvh, 720px);
  }

  .dir-menu-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .dir-menu-preview-media img,
  .dir-menu-preview img,
  .dir-menu-preview-placeholder {
    height: 96px;
  }

  .dir-flash {
    margin: 0.5rem 1rem 0;
  }
}

@media (max-width: 420px) {
  .dir-city-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dir-dist {
    font-size: 0.85rem;
  }
}

/* Customer My Orders */
.dir-order-list {
  display: grid;
  gap: 1rem;
}

.dir-order-card {
  background: #fff;
  border: 1px solid var(--dir-sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.05);
}

.dir-order-main {
  display: block;
  padding: 1.1rem 1.15rem 0.85rem;
  text-decoration: none;
  color: inherit;
}

.dir-order-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.dir-order-number {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dir-muted);
  text-transform: uppercase;
}

.dir-order-card h2 {
  margin: 0.2rem 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.dir-order-total {
  font-weight: 750;
  font-size: 1.15rem;
  white-space: nowrap;
  color: var(--dir-ink);
}

.dir-order-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.dir-order-hint {
  margin: 0.65rem 0 0;
  color: var(--dir-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.dir-order-otp {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #102a43;
  color: #fff;
  display: grid;
  gap: 0.15rem;
}

.dir-order-otp-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.dir-order-otp strong {
  font-size: 1.55rem;
  letter-spacing: 0.28rem;
}

.dir-order-otp .dir-meta {
  color: rgba(255, 255, 255, 0.72);
}

.dir-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.15rem 1.15rem;
}

.dir-order-actions .dir-btn {
  flex: 1 1 auto;
  min-width: 7.5rem;
}

@media (max-width: 800px) {
  .dir-order-actions .dir-btn {
    flex: 1 1 calc(50% - 0.35rem);
  }
}

/* FSSAI-style veg / non-veg / egg marker */
.diet-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid;
  border-radius: 2px;
  flex-shrink: 0;
  vertical-align: middle;
  box-sizing: border-box;
}

.diet-mark::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.diet-mark--veg {
  color: #15803d;
  border-color: #15803d;
}

.diet-mark--nonveg {
  color: #b91c1c;
  border-color: #b91c1c;
}

.diet-mark--egg {
  color: #ca8a04;
  border-color: #ca8a04;
}

.diet-mark-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dir-city-grid-lg {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.dir-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.dir-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--dir-sand);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(26, 18, 11, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dir-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 18, 11, 0.1);
}

.dir-blog-card img,
.dir-blog-card-ph {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #ffedd5, #fef3c7);
}

.dir-blog-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dir-blog-card-body p {
  margin: 0;
  color: var(--dir-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.dir-blog-article {
  max-width: 760px;
}

.dir-blog-cover {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.25rem;
}

.dir-blog-content {
  line-height: 1.7;
  font-size: 1.05rem;
}

.dir-blog-content p {
  margin: 0 0 1rem;
}

@media (max-width: 900px) {
  .dir-auth-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dir-auth-visual {
    min-height: 180px;
    max-height: none;
  }

  .dir-auth-visual-inner {
    padding: 1.5rem 1.15rem 1.35rem;
    justify-content: flex-end;
  }

  .dir-auth-visual h2 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    margin: 0.2rem 0 0.45rem;
  }

  .dir-auth-visual p {
    font-size: 0.95rem;
  }

  .dir-auth-perk-list {
    display: none; /* keep mobile hero short; form is primary */
  }

  .dir-auth {
    max-width: none;
    padding: 1.15rem 1rem calc(1.75rem + env(safe-area-inset-bottom));
    align-self: stretch;
  }

  .dir-auth h1 {
    font-size: 1.55rem;
  }

  .dir-auth .lead {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .dir-auth-panel,
  .dir-auth .panel {
    margin-top: 0.9rem;
    padding: 1.15rem 1rem 1.25rem;
    border-radius: 18px;
  }

  .dir-auth-grid2 {
    grid-template-columns: 1fr;
  }

  .dir-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dir-blog-grid {
    grid-template-columns: 1fr;
  }

  .dir-reg-layout {
    grid-template-columns: 1fr;
  }

  .dir-reg-benefits {
    order: 2;
  }

  .dir-reg-panel {
    order: 1;
  }
}

@media (max-width: 480px) {
  .dir-auth-visual {
    min-height: 150px;
  }

  .dir-nav-inner {
    padding: 0.65rem 0.85rem;
  }

  .dir-auth-submit {
    width: 100%;
  }
}

/* Restaurant listing request */
.dir-reg-head .lead {
  max-width: 40rem;
}

.dir-reg-section {
  padding-top: 0.5rem;
}

.dir-reg-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 1.75rem;
  align-items: start;
}

.dir-reg-benefits {
  padding: 0.25rem 0.25rem 1rem;
}

.dir-reg-benefits h2 {
  font-family: var(--dir-display);
  font-size: 1.35rem;
  margin: 0 0 1.1rem;
}

.dir-reg-benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.dir-reg-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.dir-reg-benefits li i {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 88, 12, 0.12);
  color: var(--dir-spice-deep);
  font-size: 1.15rem;
}

.dir-reg-benefits strong {
  display: block;
  margin-bottom: 0.15rem;
}

.dir-reg-benefits span {
  color: var(--dir-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.dir-reg-note {
  margin: 1.5rem 0 0;
  color: var(--dir-muted);
  font-size: 0.92rem;
}

.dir-reg-note a {
  color: var(--dir-spice-deep);
  font-weight: 600;
}

.dir-reg-panel {
  background: #fff;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
  padding: 1.5rem 1.4rem 1.6rem;
}

.dir-reg-panel h2 {
  font-family: var(--dir-display);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
}

.dir-reg-panel-lead {
  margin: 0 0 1.25rem;
  color: var(--dir-muted);
}

.dir-reg-form {
  display: grid;
  gap: 0.9rem;
}

.dir-reg-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.dir-reg-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.dir-reg-field input,
.dir-reg-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fffdf9;
  color: var(--dir-ink);
}

.dir-reg-field input:focus,
.dir-reg-field textarea:focus {
  outline: 2px solid rgba(234, 88, 12, 0.35);
  border-color: var(--dir-accent);
  background: #fff;
}

.dir-reg-field span {
  display: block;
  color: #b91c1c;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.dir-reg-errors {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.06);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin: 0;
}

.dir-reg-errors:empty {
  display: none;
}

.dir-reg-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
  min-height: 3rem;
  font-size: 1.05rem;
}

.dir-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.dir-reg-thanks {
  display: flex;
  justify-content: center;
  padding: 3rem 1.25rem 4rem;
}

.dir-reg-thanks-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 22px;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
  animation: dir-fade-up 0.55s ease both;
}

.dir-reg-thanks-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(21, 128, 61, 0.12);
  color: var(--dir-leaf);
  font-size: 1.75rem;
}

.dir-reg-thanks-card h1 {
  font-family: var(--dir-display);
  font-size: 1.85rem;
  margin: 0 0 0.65rem;
}

.dir-reg-thanks-card p {
  color: var(--dir-muted);
  margin: 0 0 1.35rem;
  line-height: 1.55;
}

.dir-reg-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (max-width: 720px) {
  .dir-reg-grid2 {
    grid-template-columns: 1fr;
  }
}

/* Global nav search + autocomplete */
.dir-nav-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: min(280px, 42vw);
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.dir-nav-search > i {
  color: var(--dir-muted);
  font-size: 0.95rem;
}

.dir-nav-search input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  color: var(--dir-ink);
}

.dir-suggest {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(28, 25, 23, 0.14);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}

.dir-suggest-item {
  display: grid !important;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  row-gap: 0.05rem;
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  cursor: pointer;
  font: inherit;
  padding: 0.65rem 0.8rem !important;
  color: var(--dir-ink) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}

.dir-suggest-item:hover,
.dir-suggest-item:focus {
  background: rgba(234, 88, 12, 0.06);
  outline: none;
}

.dir-suggest-label {
  grid-column: 1;
  grid-row: 1;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dir-suggest-type {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: end;
  margin-top: 0.15rem;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 650;
  line-height: 1.15;
  color: var(--dir-spice);
  background: rgba(234, 88, 12, 0.1);
  border-radius: 4px;
  padding: 0.08rem 0.28rem;
  max-width: 4.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dir-suggest-sub {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.75rem;
  color: var(--dir-muted);
}

.dir-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  color: var(--dir-ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.dir-chip span {
  color: var(--dir-muted);
  font-size: 0.75rem;
}

.dir-chip.is-active,
.dir-chip:hover {
  border-color: rgba(234, 88, 12, 0.45);
  background: rgba(234, 88, 12, 0.08);
  color: var(--dir-ink);
}

.dir-dish-page .dir-detail-back {
  color: var(--dir-ink);
  background: rgba(28, 25, 23, 0.04);
  border-color: rgba(28, 25, 23, 0.08);
  margin-bottom: 1.25rem;
}

.dir-dish-page .dir-detail-back a {
  color: var(--dir-spice);
  text-decoration: none;
  font-weight: 700;
}

.dir-dish-page .dir-detail-back a:hover {
  text-decoration: underline;
}

.dir-dish-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  gap: 1.25rem 1.75rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.dir-dish-head h1 {
  margin: 0;
  font-family: var(--dir-display);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.dir-dish-head .lead {
  margin: 0.55rem 0 0;
  color: var(--dir-muted);
  max-width: 38rem;
}

.dir-dish-city-filter {
  background: #fff;
  border: 1px solid var(--dir-sand);
  border-radius: 18px;
  padding: 0.95rem 1rem 1rem;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
}

.dir-dish-city-filter .dir-search-field input {
  background: var(--dir-paper);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  width: 100%;
  font: inherit;
  outline: none;
}

.dir-dish-city-filter .dir-search-field input:focus {
  background: #fff;
  border-color: #9fb3c8;
}

.dir-dish-city-hint {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--dir-muted);
  line-height: 1.4;
}

.dir-dish-city-hint code {
  font-size: 0.72rem;
  background: rgba(28, 25, 23, 0.05);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

.dir-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

@media (max-width: 800px) {
  .dir-dish-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dir-nav-search {
    order: 20;
    width: 100%;
    min-width: 0;
    margin: 0.35rem 0;
  }
}

/* ?? Public mobile bottom nav (app-like) ?? */
.pub-bottom-nav,
.pub-quick-sheet,
.pub-sheet-backdrop {
  display: none;
}

@media (max-width: 991.98px) {
  .has-pub-bottom-nav {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  .has-pub-bottom-nav .dir-footer {
    margin-bottom: 0.5rem;
  }

  .has-pub-bottom-nav .dir-detail-mobile-cta {
    display: none !important;
  }

  .has-pub-bottom-nav .pwa-install-banner {
    bottom: calc(0.75rem + 64px + env(safe-area-inset-bottom, 0px));
  }

  .pub-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    min-height: calc(64px + env(safe-area-inset-bottom, 0px));
    padding: 0.3rem 0.3rem calc(0.3rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 -8px 24px rgba(16, 42, 67, 0.08);
  }

  .pub-bottom-item {
    appearance: none;
    border: 0;
    background: transparent;
    color: #78716c;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.12rem;
    min-height: 48px;
    padding: 0.15rem;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 650;
    line-height: 1.1;
    -webkit-tap-highlight-color: transparent;
  }

  .pub-bottom-item i {
    font-size: 1.2rem;
    line-height: 1;
  }

  .pub-bottom-item span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pub-bottom-item.active {
    color: #0f766e;
  }

  .pub-bottom-item:active {
    transform: scale(0.96);
  }

  .pub-bottom-fab {
    appearance: none;
    border: 0;
    width: 54px;
    height: 54px;
    margin: -1.1rem auto 0;
    border-radius: 50%;
    background: #0f766e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35);
    -webkit-tap-highlight-color: transparent;
  }

  .pub-bottom-fab.is-open {
    background: #1c1917;
    transform: rotate(45deg);
  }

  .pub-bottom-fab--lead {
    background: #0d9488;
    box-shadow: 0 10px 24px rgba(13, 148, 136, 0.38);
  }

  .pub-bottom-fab--lead.is-open {
    background: #1c1917;
  }

  .pub-sheet-tile--wa i {
    color: #25d366;
  }

  .pub-sheet-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(28, 25, 23, 0.45);
    backdrop-filter: blur(2px);
  }

  .pub-sheet-backdrop[hidden] {
    display: none !important;
  }

  .pub-quick-sheet {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1055;
    max-height: min(78vh, 620px);
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -16px 40px rgba(28, 25, 23, 0.16);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transform: translateY(110%);
    transition: transform 0.28s ease;
  }

  .pub-quick-sheet[hidden] {
    display: none !important;
  }

  .pub-quick-sheet.is-open {
    transform: translateY(0);
  }

  .pub-sheet-handle {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(28, 25, 23, 0.18);
    margin: 0.55rem auto 0.15rem;
  }

  .pub-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 0.9rem 0.55rem;
  }

  .pub-sheet-head h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 750;
  }

  .pub-sheet-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #f5f5f4;
    color: #1c1917;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .pub-sheet-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.9rem 1rem;
  }

  .pub-sheet-section + .pub-sheet-section {
    margin-top: 0.85rem;
  }

  .pub-sheet-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #78716c;
    margin-bottom: 0.45rem;
  }

  .pub-sheet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .pub-sheet-tile,
  .pub-sheet-tile-form .pub-sheet-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 84px;
    padding: 0.65rem 0.35rem;
    border-radius: 16px;
    background: #f7f4ef;
    border: 1px solid rgba(28, 25, 23, 0.06);
    color: #1c1917;
    text-decoration: none;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.2;
    width: 100%;
    cursor: pointer;
  }

  .pub-sheet-tile-form {
    margin: 0;
  }

  .pub-sheet-tile i {
    font-size: 1.35rem;
    color: #0f766e;
  }

  .pub-sheet-tile:active {
    transform: scale(0.97);
    background: rgba(15, 118, 110, 0.1);
  }

  body.pub-sheet-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (min-width: 992px) {
  .pub-bottom-nav,
  .pub-quick-sheet,
  .pub-sheet-backdrop {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .pub-sheet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
