/* ============================================================
   CUSTOM — Per-store overrides for Template TF
   Add store-specific tweaks here. Loaded last so it wins
   over theme.css and style.css.
   ============================================================ */

/* ------------------------------------------------------------
   Location box — map + address/contact panel
   Used at the foot of the long-tail service pages
   (tags/indian-food-delivery-niagara-falls.html).
   ------------------------------------------------------------ */

.location-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.location-box__map {
  position: relative;
  min-height: 440px;
  background: var(--sand);
}

.location-box__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-box__info {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.location-box__info h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: 0.1rem;
}

.location-detail h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.location-detail address,
.location-detail p {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.location-detail a {
  color: var(--chili-dark);
  font-weight: 700;
}

.location-detail a:hover {
  text-decoration: underline;
}

.location-detail ul li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.location-detail ul li:last-child {
  border-bottom: none;
}

.location-box__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

@media (max-width: 900px) {
  .location-box {
    grid-template-columns: 1fr;
  }

  .location-box__map {
    min-height: 300px;
  }

  .location-box__actions {
    justify-content: center;
  }
}

/* ------------------------------------------------------------
   Home page "Find us" band — wraps the .location-box above so it
   sits on the warm section background like the other home bands.
   ------------------------------------------------------------ */

.home-visit {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--sand);
}

.home-visit .sec-head {
  margin-bottom: 1.5rem;
}

.home-visit .location-box {
  margin-top: 0;
}

/* dish sub-headings inside the delivery menu cards */

.dish-group h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.dish-group h4:first-of-type {
  margin-top: 0.5rem;
}

.dish-group p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================
   DISH TAG PAGES — Indian Spice Route, Niagara Falls
   Scoped additions for /tags/dishes/*.html only. Everything
   else on those pages reuses style.css as-is.
   ============================================================ */

/* editorial copy reads left-aligned, matching the left-aligned
   section header the dish pages already use */
.dish-description-content .section__description {
  text-align: left;
  margin-inline: 0;
}

/* ---------- pairing cards (replaces the old ingredients grid) ---------- */
.dish-pairings {
  display: grid;
  gap: 1.4rem;
  margin: 1.25rem 0 0.5rem;
}

@media (min-width: 700px) {
  .dish-pairings {
    grid-template-columns: 1fr 1fr;
  }
}

.dish-pair-card {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.6rem;
}

.dish-pair-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
  margin-bottom: 0.9rem;
}

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

/* ---------- FAQ block ---------- */
.faq-container .section__header {
  margin-bottom: 0.5rem;
}

.faq-container .faq-question {
  font-size: 1.05rem;
}

/* ---------- visit / map box ---------- */
.dish-visit {
  padding-top: 0;
}

.dish-visit .section__header {
  text-align: left;
  margin-bottom: 1.25rem;
}

.dish-visit-box {
  display: grid;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 860px) {
  .dish-visit-box {
    grid-template-columns: 1.1fr 1fr;
  }
}

.dish-visit-map {
  position: relative;
  min-height: 300px;
  background: var(--sand);
}

@media (min-width: 860px) {
  .dish-visit-map {
    min-height: 420px;
  }
}

.dish-visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.dish-visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
}

.dish-visit-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.25;
  margin: 0;
}

.dish-visit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.dish-visit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.dish-visit-list .ic {
  flex: none;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--chili);
  font-size: 1.05rem;
}

.dish-visit-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.dish-visit-list a {
  color: var(--muted);
}

.dish-visit-list a:hover {
  color: var(--chili);
  text-decoration: underline;
}

.dish-visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.dish-visit-actions .btn,
.dish-visit-actions .btn-secondary {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.dish-visit-actions .btn-secondary {
  border: 1px solid var(--line);
}

@media (max-width: 480px) {
  .dish-visit-actions .btn,
  .dish-visit-actions .btn-secondary {
    width: 100%;
  }
}

/* ---------- hero action row ---------- */
.dish-hero .dish-price {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dish-hero .dish-price .btn-secondary {
  border: 1px solid var(--line);
}

.dish-hero .dish-rating .rating-count {
  margin-left: 0.5rem;
}

/* "Why guests love it" cards use h3 so the dish pages keep a clean
   h1 > h2 > h3 outline; inherit the existing reviewer-info styling */
.reviews-container .reviewer-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

/* ============================================================
   HOME FAQ — internal links out to the /tags pages
   The global reset (`a { color: inherit; text-decoration: none }`)
   makes links inside an FAQ answer disappear into the body copy,
   so every dish, neighbourhood and service link in the home FAQ
   gets the brand treatment here.
   ============================================================ */

.qa .qa-body a {
  color: var(--chili-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: color-mix(in srgb, var(--chili) 45%, transparent);
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.qa .qa-body a:hover,
.qa .qa-body a:focus-visible {
  color: var(--chili);
  text-decoration-color: currentColor;
}

/* the delivery-areas answer carries 17 neighbourhood links — flow them
   into columns instead of one long ladder */
.qa .qa-body ul.qa-links {
  columns: 2;
  column-gap: 1.6rem;
}

.qa .qa-body ul.qa-links li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

@media (max-width: 520px) {
  .qa .qa-body ul.qa-links {
    columns: 1;
  }
}
