@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Eczar:wght@400;500;600;700;800&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap");

:root {
  --primary-color: #005043;
  --primary-color-light: #f8f1e3;
  --primary-color-dark: #003830;
  --text-dark: #2d2d2d;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1350px;
  --accent-color: #C8961F;
  --accent-color-light: #F3B62F;
  --bg-gradient: linear-gradient(135deg, #005043 0%, #003830 100%);
  --nav-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

  --clr-primary-400: 263 55% 52%;
  --clr-secondary-400: 217 19% 35%;
  --clr-secondary-500: 219 29% 14%;
  --clr-neutral-100: 0 10% 100%;
  --clr-neutral-200: 210 46% 95%;
  --clr-neutral-300: 0 0% 81%;

  --fw-400: 500;
  --fw-700: 600;

  --fs-300: 0.6875rem;
  --fs-400: 0.8125rem;
  --fs-500: 1.25rem;

  --card-height: 40vw;
  --card-margin: 4vw;
  --card-top-offset: 1em;
  --numcards: 4;
  --outline-width: 0px;

  --main-color: rgb(255, 213, 102);
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 4rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  color: #616161;
  line-height: 1.75rem;
  text-align: center;
}

.btn {
  padding: 0.8rem 2rem;
  outline: none;
  border: 1px solid var(--primary-color-light);
  font-weight: 600;
  white-space: nowrap;
  color: var(--primary-color-dark);
  border-radius: 50px;
  transition: 0.2s ease;
  cursor: pointer;
  color: #fff;
}

.btn:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
  font-weight: 700;
  border: none;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo a span {
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Sofia Sans", sans-serif;
  background-color: #fffbfbd5;
}

/* **************************** navbar ************************ */

.nav__container {
  position: fixed;
  top: 0;
  isolation: isolate;
  height: 120px;
  max-height: 120px;
  width: 100%;
  z-index: 9;
  background: var(--bg-gradient);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__header {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}
.nav__logo {
  width: auto;
}

.nav__logo a {
  color: var(--white);
  font-size: 1.8rem;
}

.logo__wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width:auto
}

.logo__wrapper span {
  width: 300px;
}

@media (max-width: 768px) {
  .logo__wrapper span {
    width: 95%;
    font-size: 3rem;
  }
}

.logo__wrapper .logo__title {
  font-size: 30px;
  letter-spacing: 0.5px;
  color: white;
  background-clip: text;
  font-family: "Unna", serif;
}

.logo__image {
  width: 190px;
  height: 100px;
  border-radius: 5px;
}

.nav__menu__btn {
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  margin-right: 0.2rem;
}

.nav__links {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color-light);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
  border-bottom: 2px solid var(--primary-color-dark);
}

.nav__links a {
  font-weight: 500;
  color: var(--white);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav__links a:hover:after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--primary-color);
}

.nav__links a.active {
  color: var(--primary-color);
  font-weight: bold;
}

.nav__btn {
  display: none;
}

.nav__btn-mobile {
  display: none;
}

@media (min-width: 768px) {
  .nav__links {
    z-index: auto;
  }
}

@media (max-width: 768px) {
  .nav__container {
    height: 85px;
    max-height: 120px;
  }

  .nav__header {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: var(--bg-gradient);
    height: 85px;
    backdrop-filter: blur(32px);
  }

  .nav__header .logo__wrapper img {
    width: 120px;
    height: 65px;
  }

  .nav__links.open {
    /* background-color: #1d1d1d; */
    box-shadow: rgba(87, 87, 94, 0.5) 0px 7px 29px 0px;
    background-color: rgba(21, 21, 21, 0.96); /* Fallback for Safari */
    backdrop-filter: blur(12px);
  }

  .nav__links.open li a {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
  }

  .nav__btn-mobile {
    display: block;
  }

  .nav__btn-mobile a {
    font-size: 1rem;
    color: #fff;
    background-color: var(--primary-color-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
  }

  .nav__logo .logo__title {
    font-weight: 700;
    font-size: 1rem;
  }
}

/* **************************** navbar ************************ */

/*-- -------------------------- -->
<---         Home Hero          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #home-hero {
    text-align: center;
    padding: clamp(12.5rem, 25.95vw, 18.75em) 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #home-hero .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #home-hero .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.48;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
  #home-hero .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #home-hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  #home-hero .cs-content {
    width: 100%;
    max-width: 42.375rem;
  }
  #home-hero .cs-topper {
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--secondary);
    display: inline-block;
    position: relative;
  }
  #home-hero .cs-title {
    font-size: clamp(2.4375rem, 6.4vw, 3.3125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 51.8125rem;
    color: #fff;
    position: relative;
  }

  #home-hero .cs-subtitle {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
  }

  #home-hero .cs-text {
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto 0;
    margin-bottom: 2rem;
    color: #f2f2f2;
  }
  #home-hero .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  #home-hero .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 12.5rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #home-hero .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #home-hero .cs-button-solid:hover:before {
    width: 100%;
  }
  #home-hero .cs-button1 {
    background-color: var(--primary-color-dark);
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

/*********************************  popular dishes section *********************************/

.special__container :is(.section__header, .section__description) {
  max-width: 600px;
  margin-inline: auto;
}

.special__container .section__sub__header {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.special__container .gluten-wrapper,
.special__container .vegan-wrapper {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
}

.special__container .gluten-wrapper img {
  width: 24px;
  height: auto;
}

.special__container .vegan-wrapper img {
  width: 24px;
}

.special__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
  padding: 0 1rem;
}

.special__card {
  padding: 1rem;
  text-align: center;
  border-radius: 2rem;
  transition: 0.3s;
}

.special__card .special-card-title {
  font-size: 1.2rem;
}

.special__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.special__card-link:hover .special-card-title {
  color: var(--primary-color-dark);
}

.special__card:hover {
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.special__card img {
  width: 350px; /* Fixed width */
  height: 250px; /* Fixed height */
  margin-inline: auto;
  margin-bottom: 1.3rem;
  border-radius: 1rem;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
  object-fit: cover; /* Ensures the image covers the area */
}
@media screen and (max-width: 768px) {
  .special__card img {
    width: 100%; /* Full width on mobile */
    max-width: 350px; /* Maximum width */
    height: auto; /* Maintain aspect ratio */
  }
}

.special__card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.special__card .card-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.special__card .card-title-wrapper .gluten {
  width: 24px;
  height: 24px;
  margin: 0;
}

.special__card .card-title-wrapper .vegan {
  width: 23px;
  height: 23px;
  margin: 0;
}

.special__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.75rem;
}

.special__ratings {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: goldenrod;
}

.special__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.special__footer .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

@media only screen and (min-width: 1000px) {
  .special__grid {
    padding: 0 4rem;
  }
}

@media only screen and (max-width: 768px) {
  .section__header {
    font-size: 1.6rem;
  }

  .special__card {
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
  }
}

/*********************************  popular dishes section *********************************/

/*********************************  explore dishes section *********************************/

.explore__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.explore__image img {
  max-width: 500px;
  margin-inline: auto;
  border-radius: 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.explore__content .section__description {
  margin-bottom: 2rem;
}

.explore__content .section__header span {
  color: var(--primary-color-dark);
}

.explore__btn {
  text-align: center;
}

.explore__btn a {
  color: #fff;
  background-color: var(--primary-color-dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.explore__btn a:hover {
  background-color: #7e7e7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.explore__btn a:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .explore__container {
    padding: 1rem 1rem 5rem 1rem;
  }
  .explore__image img {
    max-width: 370px;
    height: auto;
    margin-inline: auto;
  }
}

/*********************************  explore dishes section *********************************/

/*********************************  footer section *********************************/

.footer {
  background-color: #1f1f1f;
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo a span {
  color: #cfcfcf;
  font-size: 1rem;
}

.footer__col .section__description {
  text-align: left;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.footer__col .footer__logo__img {
  width: 190px;
  height: 100px;
  border-radius: 50%;
}

.footer__links {
  display: grid;
  gap: 0.75rem;
}

.footer__links a {
  color: #b9b9b9;
}

.footer__links li {
  color: #b9b9b9;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bar,
.footer__policy {
  padding: 1.5rem;
  font-size: 0.9rem;
  color: rgb(163, 163, 163);
  text-align: center;
  background-color: #2f2f2f;
}

.footer__policy {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 0;
}

.footer__policy a {
  color: #fff;
  transition: 0.2s ease;
}

.footer__policy a:hover {
  color: #c2c2c2;
}

.social-icons-wrapper {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  text-decoration: none;
  color: grey;
  transition: 0.5s;
  font-size: 1.8rem;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer__company {
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
  background-color: #2f2f2f;
}

.footer__company a {
  color: rgb(176, 176, 176);
}

.footer__company a span {
  color: var(--primary-color);
  transform: 0.2s ease;
}

.footer__company a span:hover {
  color: var(--primary-color-dark);
}

@media only screen and (max-width: 768px) {
  .footer__logo span {
    font-size: 1.2rem;
  }

  .footer__company {
    padding-bottom: 6.5rem;
  }
}

/*********************************  footer section *********************************/

@media (width < 776px) {
  .header__content h1 {
    margin-left: 0;
  }

  .header__content .section__description {
    margin-left: 0;
  }

  .header__btn {
    margin-left: 0;
  }
}

@media (width > 540px) {
  .special__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: 3fr 2fr;
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 0.5rem 1rem;
    max-width: 1500px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    color: var(--primary-color);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .nav__links a {
    color: #fff;
  }

  .nav__links a:hover {
    color: #fff;
  }

  .nav__btn {
    display: flex;
    flex: 1;
  }

  .nav__btn .btn {
    font-size: 1.5rem;
  }

  .header__container {
    grid-template-columns: 2fr 2fr;
    align-items: center;
  }

  .header__content h1,
  .header__content .section__description,
  .header__btn {
    text-align: left;
  }

  .header__content h1 {
    font-size: 3rem;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .special__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content .section__header {
    max-width: 500px;
  }

  .explore__content :is(.section__header, .section__description),
  .explore__btn {
    text-align: left;
  }

  .footer__container {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

@media (width > 1024px) {
  .special__grid {
    gap: 1rem;
  }

  .special__card {
    padding: 2rem;
    border-radius: 3rem;
  }
}

/*********************************  about section *********************************/

.about-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.about-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-title h1 {
  font-weight: 600;
  font-size: 32px;
}

.about-para p {
  font-size: calmp(0.875rem, 1.5vw, 1rem);
  text-align: justify;
  line-height: 1.6;
}

.about-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* min-height: 100vh; */
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  grid-gap: 25px;
  width: 100%;
}
.single-box {
  position: relative;
}
.single-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
}
.single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
  user-select: none;
}
.single-box a:hover img {
  transform: rotate(5deg) scale(1.4);
}

@media only screen and (max-width: 600px) {
  .about-para p {
    text-align: justify;
    line-height: 1.4;
    margin: 0 4%;
  }

  .about-gallery {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .img-area {
    padding: 0;
  }
  .wrapper {
    max-width: 100%;
    padding: 0;
  }

  .about-title h1 {
    font-size: 24px;
    text-align: center;
    margin: 0 4%;
  }
}

/*********************************  about section *********************************/

/*********************************  best dishes section *********************************/
.best-dishes {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2px;
  margin: 1rem auto;
}

.best-dishes-header h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
  border-radius: 2rem;
}

.card_image {
  position: relative;
  max-height: 250px;
}

.card_image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card_price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 45px;
  border-radius: 0.25rem;
  background: #000;
  opacity: 0.9;
  border: 2px solid var(--primary-color-dark);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.card_price span {
  font-size: 12px;
  margin-top: -2px;
}

.note {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 0.25rem;
  background-color: #fff;
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

@media screen and (max-width: 768px) {
  .card_image {
    position: relative;
    max-height: 250px;
  }

  .best-dishes {
    margin: 0 auto;
    padding: 1rem 1rem;
  }
}

@media only screen and (max-width: 769px) {
  .cards {
    gap: 20px;
  }
}

.card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  position: relative;
  padding: 16px 12px 32px 24px;
  margin: 16px 8px 8px 0;
  max-height: 290px;
  overflow-y: scroll;
}

.card_content::-webkit-scrollbar {
  width: 8px;
}

.card_content::-webkit-scrollbar-track {
  box-shadow: 0;
  border-radius: 0;
}

.card_content::-webkit-scrollbar-thumb {
  background: #e7e7e7;
  border-radius: 15px;
}

.card_title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.card_title::after {
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color-dark);
  content: "";
}

hr {
  margin: 24px auto;
  width: 50px;
  border-top: 2px solid var(--primary-color-dark);
}

.card_text p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
}

.card_text p:last-child {
  margin: 0;
}

/*********************************  best dishes section *********************************/

/*********************************  menu heading section *********************************/

.menu-heading {
  margin: auto;
  padding: 0 1rem;
}

.menu-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.menu-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.menu-btn-wrapper a {
  color: #fff;
  background-color: var(--primary-color-dark);
}

.menu-btn-wrapper a:hover {
  color: var(--primary-color-dark);
  background-color: #fff;
  border: 2px solid var(--primary-color-dark);
}

.menu-heading-wrapper .menu-title {
  font-size: 60px;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .menu-heading-wrapper .menu-title {
    font-size: 36px;
  }

  .menu-heading {
    margin: auto;
    padding: 0 1rem;
    padding-top: 6.5rem;
  }
}

/*********************************  menu heading section *********************************/

/***************************************  menu section ************************************/

.menu {
  margin: 0 auto;
}

.menu-container {
  gap: 30px;
  margin: 0 auto;
  max-width: 1300px;
  min-height: 600px;
  transition: min-height 0.5s ease;
}

.menu-buttons {
  display: flex;
  flex-wrap: wrap; /* Enable wrapping */
  justify-content: center;
  margin: 1.5rem 0;
  white-space: normal; /* Allow wrapping */
  gap: 10px; /* Add gap between buttons */
}

.menu-button {
  font-family: var(--Noto);
  font-size: 1.1rem;
  background: none;
  border: none;
  color: var(--lightgray);
  margin: 0 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-button::after {
  content: "";
  margin-top: 0.5rem;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color-dark);
  transition: width 0.4s ease-out;
}

.menu-button:hover::after {
  width: 100%;
}

.menu-button:hover {
  opacity: 0.8;
}

.active-button {
  color: var(--primary-color-dark);
  opacity: 0.8;
  font-weight: bold;
}

.active-button:after {
  content: "";
  margin: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color-dark);
}

.menu-items {
  margin: 2rem 0;
  transition: all 0.5s ease;
}

.menu-item {
  border-radius: 4px;
  overflow: hidden;
  background: var(--lightgray);
  color: var(--text-color);
  margin: 0.7rem 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  animation: appear 2s;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.item-details {
  padding: 1rem;
}

.item-price {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: rgb(37, 37, 37);
  opacity: 0.8;
}

.item-desc span {
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (min-width: 768px) {
  .menu-buttons {
    justify-content: center;
  }
}

@media only screen and (min-width: 600px) {
  .menu-item {
    display: grid;
    /* grid-template-columns: 25% auto; */
    align-items: center;
    padding: 1rem;
    column-gap: 1rem;
  }
  .item-details {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .menu-item {
    padding: 0rem; /* Reduce padding */
  }

  .item-details {
    padding: 0.5rem; /* Reduce padding */
  }

  .item-name {
    font-size: 1rem; /* Reduce font size */
  }

  .item-price {
    padding: 0.5rem 0;
    font-size: 0.9rem; /* Reduce font size */
  }

  .item-desc {
    font-size: 0.9rem; /* Reduce font size */
    line-height: 1.3; /* Reduce line height */
  }

  /* If you have images in your menu items, you might want to adjust their size too */
  .menu-item img {
    max-width: 80px; /* Reduce image size */
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .navigation-arrows .left-arrow,
  .navigation-arrows .right-arrow {
    padding: 0.1rem 0.5rem;
    color: var(--primary-color-dark);
    border: 2px solid var(--primary-color-dark);
    border-radius: 50%;
    font-size: 1.2rem;
  }

  .fixed-nav {
    position: fixed;
    top: 85px; /* height of the navbar */
    width: 100%;
    max-width: 100%;
    background-color: white;
    z-index: 4;
    left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .menu-buttons.fixed-nav {
    top: 82px;
    margin-top: 2.5px;
    padding-top: 12px;
    padding-bottom: 10px;
    background-color: #2d2d2d;
  }

  .menu-buttons.fixed-nav .menu-button {
    color: #fff;
  }

  .menu-buttons.fixed-nav .menu-button.active-button:after {
    margin-top: 3px;
    height: 3px;
  }
}

/* @media only screen and (min-width: 768px) {
  .menu-header p {
    width: 75%;
    margin: 0 auto;
  }
} */

@media only screen and (min-width: 992px) {
  /* .menu-header p {
    width: 55%;
  } */

  .menu-items {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}

/******************************************  menu section ****************************************/

/***********************************  testimonials section ***********************************/

#testimonial-section {
  padding: 8.5rem 1rem;
}

.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.flow > *:where(:not(:first-child)) {
  margin-top: var(--flow-spacer, 1em);
}

.bg-primary-400 {
  background: #005043;
}
.bg-secondary-400 {
  background: linear-gradient(to right, rgb(0, 141, 0), rgb(0, 119, 0));
}
.bg-secondary-500 {
  background: #8B1C3F;
}

.bg-neutral-100 {
  background: hsl(var(--clr-neutral-100));
}

.text-neutral-100 {
  color: hsl(var(--clr-neutral-100));
}
.text-secondary-400 {
  color: hsl(var(--clr-secondary-400));
}
.testimonial-heading {
  font-size: 2.5rem;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-columns: 1fr;
  grid-template-areas:
    "one"
    "two"
    "three"
    "four"
    "five";

  padding-block: 2rem;
  padding-bottom: 6rem;
  width: min(95%, 70rem);
  margin-inline: auto;
}

.testimonial {
  font-size: var(--fs-400);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 2.5rem 3.75rem 3rem -3rem hsl(var(--clr-secondary-400) / 0.25);
}

.testimonial:nth-child(1) {
  grid-area: one;
}
.testimonial:nth-child(2) {
  grid-area: two;
}
.testimonial:nth-child(3) {
  grid-area: three;
}
.testimonial:nth-child(4) {
  grid-area: four;
}
.testimonial:nth-child(5) {
  grid-area: five;
}

@media screen and (min-width: 33em) {
  .testimonial-grid {
    grid-template-areas:
      "one one"
      "two three"
      "five five"
      "four four";
  }
}

@media screen and (min-width: 38em) {
  .testimonial-grid {
    grid-template-areas:
      "one one"
      "two five"
      "three five"
      "four four";
  }
}

@media screen and (min-width: 54em) {
  .testimonial-grid {
    grid-template-areas:
      "one one two"
      "five five five"
      "three four four";
  }
}

@media screen and (min-width: 75em) {
  .testimonial-grid {
    grid-template-areas:
      "one one two five"
      "three four four five";
  }
}

@media screen and (max-width: 768px) {
  .testimonial-heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .testimonial-grid {
    padding: 5rem 1rem;
  }

  #testimonial-section {
    padding: 6.5rem 1rem;
  }
}

.testimonial.quote {
  background-image: url("./assets/testimonials/bg-pattern-quotation.svg");
  background-repeat: no-repeat;
  background-position: top right 10%;
}

.testimonial img {
  width: 1.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.testimonial .name {
  font-size: var(--fs-400);
  font-weight: var(--fw-400);
  line-height: 1;
}

.testimonial .position {
  font-size: var(--fs-300);
  opacity: 0.5;
}

.testimonial > p:first-of-type {
  font-size: var(--fs-500);
  line-height: 1.2;
}

.testimonial > p:last-of-type {
  opacity: 0.7;
}

/***********************************  testimonials section ***********************************/

/***********************************  gallery header section ***********************************/

@media only screen and (min-width: 0rem) {
  #gallery-header {
    /* centers button */
    text-align: center;
    /* 116px - 164px top */
    /* 60px - 100px  bottom */

    background-color: #fff6f6;
    overflow: hidden;
    position: relative;

    margin-top: 5.5rem;
    z-index: 1;
  }
  #gallery-header .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
  #gallery-header .cs-content {
    max-width: 39.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #gallery-header .cs-topper {
    font-size: 1rem;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #gallery-header .cs-title {
    /* 39px - 61px */
    font-size: clamp(1.8375rem, 5vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 23ch;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #gallery-header .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 33.1875rem;
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
    color: var(--bodyTextColor);
  }
  #gallery-header .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #1e1e1e;
    border: 2px solid var(--primary-color);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.45rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #gallery-header .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }

  #gallery-header .cs-button-solid:hover {
    color: #fff;
  }

  #gallery-header .cs-button-solid:hover:before {
    width: 100%;
    color: #fff;
  }
  #gallery-header .cs-picture {
    width: 100%;
    max-width: 35.625rem;
    height: clamp(25rem, 95vw, 44.5rem);
    border-radius: 0 clamp(6.25rem, 17vw, 12.5rem) 0
      clamp(6.25rem, 17vw, 12.5rem);
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    display: block;
    position: relative;
  }
  #gallery-header .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
  #gallery-header .cs-wave {
    width: 320%;
    height: auto;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    z-index: -1;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-header {
    text-align: left;
    background-color: #fff6f6;
  }

  .cs-content span:nth-child(1) {
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 0 35%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    width: 170px;
    animation: type 2s steps(40, end) forwards;
  }

  @keyframes type {
    0% {
      width: 0;
    }
    1%,
    99% {
      border-right: 2px solid #08b319;
    }
    100% {
      border-right: none;
    }
  }

  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }

  #gallery-header .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #gallery-header .cs-content {
    width: 40vw;
    flex: none;
    align-items: flex-start;
    order: 2;
  }
  #gallery-header .cs-title,
  #gallery-header .cs-text {
    text-align: left;
  }
  #gallery-header .cs-picture {
    height: clamp(38.9375rem, 60vw, 50.875rem);
  }
  #gallery-header .cs-wave {
    width: 100%;
    left: 0;
    transform: scaleX(-1);
  }
}

@media only screen and (max-width: 768px) {
  #gallery-header {
    margin-top: 3.5rem;
  }
}

/***********************************  gallery header section ***********************************/

/*********************************  dish menu gallery *********************************/

#menu-choice-gallery {
  padding: 8.5rem 1rem;
}

.dish-menu-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.dish-menu-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dish-menu-title h1 {
  font-weight: 600;
  font-size: 32px;
  display: flex;
  justify-content: center;
  text-shadow: 0px 3px 3px rgba(154, 154, 154, 0.9);
}

.dish-menu-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* min-height: 100vh; */
}

.dish-menu-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 360px;
  grid-auto-flow: dense;
  grid-gap: 25px;
  width: 100%;
}
.dish-menu-wrapper .single-box {
  position: relative;
}
.dish-menu-wrapper .single-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
}
.dish-menu-wrapper .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
  user-select: none;
  filter: brightness(70%);
}
.dish-menu-wrapper .single-box a:hover img {
  transform: rotate(5deg) scale(1.4);
  filter: brightness(90%);
}

.dish-category-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #212121;
  background-color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
  border: 2px solid #fff;
  padding: 4px 10px;
  border-radius: 8px;
}

.dish-category-name:hover {
  color: #fff;
  background-color: var(--primary-color-dark);
  border: 2px solid var(--primary-color-dark);
}

.dish-category-name a {
  text-decoration: none;
  color: #212121;
}

.dish-category-name:hover a {
  text-decoration: none;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .dish-menu-gallery {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .img-area {
    padding: 0;
  }
  .dish-menu-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .dish-menu-title h1 {
    font-size: 24px;
    text-align: center;
    margin: 0 4%;
  }

  .dish-menu-wrapper {
    grid-auto-rows: 290px;
  }

  #menu-choice-gallery {
    padding: 6.5rem 1rem;
  }
}

/*********************************  dish menu gallery *********************************/

/*********************************  dish category gallery *********************************/

#dish-card-gallery1,
#dish-card-gallery2,
#dish-card-gallery3,
#dish-card-gallery4,
#dish-card-gallery5,
#dish-card-gallery6 {
  padding: 8.5rem 1rem;
}

.dish-card-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.dish-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dish-category-title h2 {
  font-weight: 600;
  font-size: 32px;
  display: flex;
  justify-content: center;
  letter-spacing: 1px;
  text-shadow: 0px 2px 3px rgba(154, 154, 154, 0.9);
}

.dish-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* min-height: 100vh; */
}

.dish-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 360px;
  grid-auto-flow: dense;
  grid-gap: 45px;
  width: 100%;
}
.dish-wrapper .single-box {
  position: relative;
}
.dish-wrapper .single-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
}
.dish-wrapper .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
  user-select: none;
  filter: brightness(98%);
}
.dish-wrapper .single-box a:hover img {
  transform: rotate(5deg) scale(1.4);
}

.dish-card-name {
  /* position: absolute;
  bottom: 10px;
  left: 10px; */
  color: #212121;
  display: flex;
  justify-content: center;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
  margin-top: 4px;
}

@media only screen and (max-width: 600px) {
  .dish-gallery {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .img-area {
    padding: 0;
  }
  .dish-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .dish-category-title h2 {
    font-size: 24px;
    text-align: center;
    margin: 0 4%;
  }

  .dish-wrapper {
    grid-auto-rows: 290px;
  }

  #dish-card-gallery1,
  #dish-card-gallery2,
  #dish-card-gallery3,
  #dish-card-gallery4,
  #dish-card-gallery5,
  #dish-card-gallery6 {
    padding: 6.5rem 1rem;
  }
}

/*********************************  dish category gallery *********************************/

/* Gallery page */

/*********************************  privacy policy and terms of use styles *********************************/

.privacy-policy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}

.privacy-header-image {
  border-radius: 2rem;
}

.header__image .privacy__image {
  border-radius: 2rem;
  border: 2px solid #ffe8e8;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.privacy-main-desc {
  text-align: justify;
  font-weight: 100;
  color: #666666;
}

.privacy-content-lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.privacy-title {
  font-size: 2rem;
  font-weight: 600;
}

.privacy-desc {
  text-align: justify;
  font-weight: 400;
  color: #5a5a5a;
}

@media screen and (max-width: 768px) {
  .privacy-policy-content {
    padding: 1rem 2rem 4rem 2rem;
  }

  .privacy-title {
    font-size: 1.2rem;
  }

  .header__terms {
    padding: 5.5rem 1rem 1rem 1rem;
  }
}

/****************************  privacy policy and terms of use styles ******************************/

/* ****************** Contact us page ********************* */
.header__contact__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header__contact__content h1 {
  font-size: 3rem;
}

.header__contact__content .contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header__contact__content .contact-list li a {
  color: #18181b;
}

.header__contact__content .contact-list li a:hover {
  color: var(--primary-color-dark);
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 50%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and (max-width: 768px) {
  .header__contact__content h1 {
    font-size: 1.8rem;
  }
}
/* ****************** Contact us page ********************* */

/* additional media queries */

@media only screen and (min-width: 767px) and (max-width: 918px) {
  .nav__btn .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* floating order online */

.floating-btn-wrapper {
  display: none; /* Hidden by default */
}

@media screen and (max-width: 768px) {
  .floating-btn-wrapper {
    display: flex; /* Make it visible */
    position: fixed;
    bottom: 0;
    width: 100%;
    justify-content: center;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    /* background-color: rgba(255, 255, 255, 0.479); Optional: To make the button stand out */
    padding: 10px; /* Optional: Padding for better touch target */
    z-index: 2000;
  }

  .btn.order-float {
    background-color: var(--primary-color-dark);
    color: #fff; /* Text color */
    border: none;
    padding: 5px 10px; /* Button padding */
    text-decoration: none;
    border-radius: 1rem; /* Rounded corners */
    text-align: center; /* Center text */
    font-size: 16px; /* Font size */
    font-weight: 700;
  }
}

/* Add these styles at the end of your existing CSS */

@media (max-width: 768px) {
  .menu-buttons {
    display: none; /* Hide the original menu buttons on mobile */
  }

  .mobile-menu-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f8f8;
    position: sticky;
    top: 85px; /* Adjust based on your navbar height */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  #menu-search {
    flex-grow: 1;
    margin-right: 10px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropbtn {
    background-color: var(--primary-color-dark);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 350px; /* Set a fixed height */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* For Firefox */
  }

  /* Styles for WebKit browsers (Chrome, Safari, etc.) */
  .dropdown-content::-webkit-scrollbar {
    width: 8px;
  }

  .dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .dropdown-content a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-menu-controls {
    display: none; /* Hide on desktop */
  }
}

.selected-category {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 10px;
  color: rgb(255, 213, 102);
  display: none; /* Hide by default */
}

@media (max-width: 768px) {
  .selected-category {
    display: block; /* Show only on mobile */
  }
}

.category-header {
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.2rem;
  text-align: center;
  display: none; /* Hide by default */
}

@media (max-width: 768px) {
  .category-header {
    display: block; /* Show category headers on mobile */
  }
}

/* **************************** header section ************************ */

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
  margin-top: 6.5rem;
}

.header__image {
  position: relative;
}

.dish__card {
  position: absolute;
  bottom: -36px;
  right: -18px;
  width: 50%;
}

.dish__card2 {
  position: absolute;
  top: 10px;
  left: 45px;
  width: 30%;
}

.header__image img {
  max-width: 600px;
  margin-inline: auto;
}

.header__image .img2 {
  max-width: 600px;
  margin-inline: auto;
  border-radius: 1.2rem;
}

.header__content h1 {
  margin-bottom: 1rem;
  margin-left: 1rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 4.5rem;
  color: var(--text-dark);
  text-align: center;
  font-family: "Unna", serif;
}

.header__content h1 span {
  color: var(--primary-color);
  background: -webkit-linear-gradient(
    var(--primary-color),
    var(--primary-color-dark)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.header__content .section__description {
  margin-bottom: 2rem;
  margin-left: 1rem;
}

.header__btn {
  margin-left: 1rem;
  text-align: center;
}

.header__btn .btn {
  font-size: 1rem;
  border-radius: 22px;
  background-color: var(--primary-color-dark);
  color: #fff;
}

.header__btn .btn:hover {
  background-color: #fff;
  color: var(--primary-color-dark);
  border: 2px solid var(--primary-color-dark);
}

@media screen and (max-width: 768px) {
  .header__container {
    margin-top: 2rem;
  }

  .header__content h1 {
    font-size: 2rem;
    line-height: 2.45rem;
  }

  .header__content p {
    font-size: 1rem;
    line-height: 1.2;
  }

  .header__image img:nth-child(1) {
    max-width: 350px;
    margin-inline: auto;
  }

  .header__image #main__image {
    max-width: 300px;
    margin-inline: auto;
  }

  .section__description span {
    display: none;
  }

  .main-btn {
    display: none;
  }

  .dish__card2 {
    position: absolute;
    top: 6px;
    left: 15px;
    width: 50%;
  }
}

@media screen and (max-width: 380px) {
  .header__content h1 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
  }
}

/* ******************************* header section *************************** */

/*-- -------------------------- -->
<---         Why Choose         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #our-story-container {
    /* Centers Button */
    text-align: center;
    padding: var(--sectionPadding);
    /* prevents the arrow from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
  }
  #our-story-container .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #our-story-container .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #our-story-container .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #our-story-container .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #our-story-container .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #our-story-container .cs-text {
    max-width: 62.5rem;
  }
  #our-story-container .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #our-story-container .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #our-story-container .cs-button-solid:hover:before {
    width: 100%;
  }
  #our-story-container .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #our-story-container .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    /* 20px - 32px */
    padding: clamp(1.25rem, 2.3vw, 2rem);
    background-color: #fffdf9;
    border-radius: 1rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-column: span 6;
    position: relative;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
  #our-story-container .cs-icon {
    width: 3rem;
    height: auto;
    margin: 0 0 1.25rem 0;
    display: block;
  }
  #our-story-container .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #our-story-container .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1.1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
  #our-story-container .cs-floater {
    width: 21.9375rem;
    height: auto;
    display: none;
    position: absolute;
    top: -13.75rem;
    right: -3.75rem;
    transform: rotate(-66deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #our-story-container .cs-container {
    max-width: 80rem;
  }
  #our-story-container .cs-item {
    grid-column: span 2;
  }
  #our-story-container .cs-floater {
    display: block;
  }
}


/*-- -------------------------- -->
<---      Operating hours       -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #operating-hours {
    padding: clamp(1rem, 7.82vw, 6.25rem) 1rem;
  }
  #operating-hours .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    /* 32px - 88px top & bottom */
    /* 24px - 88px left & right */
    padding: clamp(2em, 6.3vw, 5.5em) clamp(1.5em, 5.7vw, 5.5em);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    position: relative;
    /* clips the corners for the border radius to show */
    overflow: hidden;
    z-index: 1;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #operating-hours .cs-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
  }
  #operating-hours .cs-background:before {
    /* black overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #operating-hours .cs-background:after {
    /* brown overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-color-light);
    opacity: 0.2;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #operating-hours .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #operating-hours .cs-left-section {
    max-width: 27.125rem;
  }
  #operating-hours .cs-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: clamp(1.25rem, 4.2vw, 3rem);
  }
  #operating-hours .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: auto;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary-color);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #operating-hours .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
    border-radius: 0.25rem;
  }
  #operating-hours .cs-button-solid:hover:before {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 0.25rem;
  }
  #operating-hours .cs-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* 12px - 20px */
    gap: clamp(0.75rem, 1.6vw, 1.25rem);
  }
  #operating-hours .cs-header {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.4vw, 1.5625rem);
    font-weight: bold;
    color: #fff;
    display: block;
  }
  #operating-hours .cs-p {
    /* 14px - 20px */
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    margin: 0;
    color: #fff;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #operating-hours .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
  #operating-hours .cs-left-section {
    flex: 0 0 auto;
    max-width: 35rem;
  }
  #operating-hours .cs-content {
    flex: 0 0 auto;
    max-width: 35rem;
    align-items: flex-end;
    text-align: right;
  }
  #operating-hours .cs-header {
    /* 20px - 25px */
    font-size: clamp(1.15rem, 2.4vw, 1.5625rem);
    font-weight: bold;
    color: #fff;
    display: block;
    margin: 0;
  }
  #operating-hours .cs-p {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Desktop - 1024px and up */
@media only screen and (min-width: 64rem) {
  #operating-hours .cs-container {
    max-width: 120rem;
    gap: 4rem;
  }
  #operating-hours .cs-left-section {
    max-width: 40rem;
  }
  #operating-hours .cs-content {
    max-width: 40rem;
  }
}


/*-- -------------------------- -->
<---      Buffet Section       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #buffet-section {
    background-color: var(--primary);
    margin: 1.5rem;
  }
  #buffet-section .cs-container {
    width: 100%;
    max-width: 80em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 7vw, 4rem);
  }
  #buffet-section .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    /* moved section padding to the .cs-content so we can have the cs-picture be full width on mobile without the padding preventing it from doing so */
    padding: var(--sectionPadding);
    padding-top: 0;
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }

  #buffet-section .cs-topper,
  #buffet-section .cs-title {
    color: var(--bodyTextColorWhite);
    font-size: 2rem;
  }
  #buffet-section .cs-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #buffet-section .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #buffet-section .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary-color);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #buffet-section .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #buffet-section .cs-button-solid:hover {
    color: #fff;
  }
  #buffet-section .cs-button-solid:hover:before {
    width: 100%;
  }
  #buffet-section .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    height: 18.75rem;
  }
  #buffet-section .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #buffet-section {
    /* we use margin here instead of padding because we want to create the space OUTSIDE the section.  The overflow on the section clips the boxes we made to make the slanted designs, so we need to push from the outside of the section with margin to create space between it and the next section.  If the section above this Stitch has a white background, add margin-top: 0. If it has a white section below it, add margin-bottom: 0. This will allow more proper spacing and not have too much empty space.  If both sections above and below this Stitch have white backgrounds, you can just remove this margin all together */
    margin: var(--sectionPadding);
    margin-left: 0;
    margin-right: 0;
    padding: var(--sectionPadding);
    background-color: transparent;
    /* clips the red box from overflowing the section */
    overflow: hidden;
  }
  #buffet-section .cs-container {
    flex-direction: row;
    position: relative;
    z-index: 1;
  }
  #buffet-section .cs-container:before {
    /* red box */
    content: "";
    width: 100vw;
    margin-right: -38%;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    top: -9.375rem;
    bottom: -9.375rem;
    right: 50%;
    z-index: -1;
  }
  #buffet-section .cs-content {
    width: 51%;
    /* reset the padding, add the section padding back to the section container */
    padding: 0;
  }
  #buffet-section .cs-picture {
    width: 47vw;
    max-width: 38.625rem;
    height: 33.5rem;
    /* 24px - 32px, added margin top and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it top and bottom. This maintains consistent spacing top and bottom */
    margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(1.5rem, 3vw, 2rem)
      clamp(1.5rem, 3vw, 2rem);
    position: relative;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
  #buffet-section .cs-picture:before {
    /* yellow box */
    content: "";
    width: 50%;
    background: var(--secondary);
    opacity: 1;
    display: block;
    position: absolute;
    /*24px - 32px, wrapped in calc function to multiple by negative 1 and get a negative clamp value */
    top: calc(clamp(1.5rem, 3vw, 2rem) * -1);
    bottom: calc(clamp(1.5rem, 3vw, 2rem) * -1);
    right: calc(clamp(1.5rem, 3vw, 2rem) * -1);
  }
}



/*-- -------------------------- -->
<---      Buffet Timings       -->
<--- -------------------------- -*/

.buffet-timings-highlight {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  padding: 0 1rem;
}

.timings-card {
  background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color) 100%);
  border: 3px solid var(--primary-color-dark);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.timings-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.timings-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.timings-content {
  position: relative;
  z-index: 1;
}

.days {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.time {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color-dark);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.description {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .buffet-timings-highlight {
    margin: 2rem 0;
    padding: 0 0.5rem;
  }
  
  .timings-card {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .timings-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .days {
    font-size: 1.2rem;
  }
  
  .time {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .description {
    font-size: 1rem;
  }
}

.header-timings {
  background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color) 100%);
  width: 420px;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  margin: 1.5rem auto; /* Center horizontally */
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block; /* Ensures margin auto works */
}

@media (max-width: 768px) {
  .header-timings {
    padding: 0.8rem 1.5rem;
    width: 350px;
    font-size: 1rem;
    margin: 1rem auto; /* Center horizontally */
    display: block;    /* Ensure margin auto works */
    text-align: center;
  }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #about-gallery-container {
    padding: clamp(1.75rem, 4.82vw, 0.25rem) 1rem;
  }
  #about-gallery-container .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #about-gallery-container .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
  }
  #about-gallery-container .cs-title {
    margin: 0;
  }
  #about-gallery-container .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.0625rem, 1fr));
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
  }
  #about-gallery-container .cs-image {
    /* 260px - 360px */
    min-height: clamp(16.25rem, 60vw, 20rem);
    border-radius: 1rem;
    /* clips the image corners */
    overflow: hidden;
    display: block;
    position: relative;
  }
  #about-gallery-container .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    transition: transform 0.9s;
  }

  #about-gallery-container .cs-image img:hover {
    transform: rotate(5deg) scale(1.4);
  }
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #about-services {
    padding: var(--sectionPadding);
  }
  #about-services .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #about-services .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #about-services .cs-title {
    max-width: 18ch;
  }
  #about-services .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  #about-services .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #fff;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #about-services .cs-icon-wrapper {
    width: 3.45rem;
    height: 3.45rem;
    margin: 0 0 1.5rem 0;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50%;
  }
  #about-services .cs-icon {
    width: 2.2rem;
    height: auto;
  }
  #about-services .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #about-services .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
}

@media only screen and (min-width: 48rem) {
  #about-services .cs-item {
    grid-column: span 4;
  }
}
/* New menu design for desktop */
@media only screen and (min-width: 768px) {
  .menu-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }

  .menu-buttons {
    flex-direction: column;
    width: 25%;
    position: sticky;
    top: 85px;
    margin: 0;
    padding: 1.4rem 0;
    gap: 5px;
    border-radius: 18px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
      rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  }

  .menu-button {
    font-size: 0.9rem;
    text-align: left;
    padding: 0.2rem 0.8rem;
    background-color: var(--lightgray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }

  .menu-items {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 1rem;
    margin: 0;
  }

  .menu-item {
    border-radius: 0.6rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    margin-top: 0;
  }
  .menu-item {
    transition: all 0.3s ease-in-out;
  }

  .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 15px 15px rgba(0, 0, 0, 0.15);
  }

  .item-price {
    color: #c19a2d;
  }

  @media only screen and (min-width: 992px) {
    .menu-items {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media only screen and (min-width: 1200px) {
    .menu-buttons {
      width: 30%;
    }

    .menu-button {
      width: 95%;
    }
  }
}

/* .menu-item .item-details .item-desc span{
  color: #08b319;
} */

.app-download-popup {
  display: none; /* Hidden by default for all devices */
}

.popup-content {
  background-color: white;
  padding: 1rem;
  border-radius: 20px 20px 0 0; /* Rounded corners only on top */
  max-width: 90%;
  width: 500px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 0; /* Ensure it sits at the bottom */
}

.popup-download-content {
  background: linear-gradient(135deg, #fff6e5 0%, #fff9f0 100%);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 0.8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.popup-download-content .offer-title {
  font-size: 1.8rem;
  color: var(--primary-color-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.popup-download-content .offer-description {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.popup-download-content .coupon-code {
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.popup-download-content .offer-validity {
  font-size: 1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.popup-download-content .offer-cta {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.4;
}

.popup-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color-light),
    var(--primary-color-dark)
  );
}

.popup-logo-text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.popup-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  background: var(--text-dark);
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-popup:hover {
  background-color: var(--primary-color-light);
  color: var(--text-dark);
}

.popup-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 2rem;
  padding: 0 1rem;
  line-height: 1.4;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-top: 3px;
}

.button-text .small-text {
  font-size: 0.7rem;
}

.button-text .large-text {
  font-size: 1rem;
}

.app-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  /* Add fixed height */
  height: 55px;
  /* Prevent content from wrapping */
  white-space: nowrap;
}

.app-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #3a3a3a 0%, #232323 100%);
}

.app-button img {
  height: 35px;
  width: auto;
}

@media (max-width: 768px) {
  .popup-content {
    max-width: 100%;
    /* margin-inline: 10px; */
    width: 100%;
    padding: 0rem 0.8rem;
    border: none;
  }
  .app-download-popup {
    display: flex; /* Show only on mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 9999;
    align-items: flex-end; /* Align to bottom for mobile */
  }

  .popup-content h3 {
    font-size: 1.2rem;
  }

  .popup-logo-text {
    margin-bottom: 1.2rem;
  }

  .app-button img {
    height: 30px;
  }

  .button-text {
    margin-top: 1px;
  }

  .button-text .small-text {
    font-size: 0.65rem;
  }

  .button-text .large-text {
    font-size: 0.9rem;
  }

  .popup-download-content {
    padding: 1.2rem;
  }

  .app-buttons {
    /* Change from column to row */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .app-button {
    /* Make buttons smaller */
    height: 40px;
    width: auto;
    padding: 6px 12px;
  }

  .app-button img {
    height: 24px;
  }

  .button-text {
    margin-top: 0;
  }

  .button-text .small-text {
    font-size: 0.55rem;
  }

  .button-text .large-text {
    font-size: 0.75rem;
  }

  .popup-download-content {
    padding: 1.2rem;
  }

  .popup-download-content .offer-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .popup-download-content .offer-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .popup-download-content .coupon-code {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .popup-download-content .offer-validity {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .popup-download-content .offer-cta {
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) {
  .popup-content {
    border-radius: 20px;
  }
  .app-download-popup {
    display: none !important; /* Force hide on desktop */
  }
}

#app-download-section {
  /* display: none; */
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fff6e5 0%, #fff9f0 100%);
}

#app-download-section .cs-container {
  max-width: var(--max-width);
  margin: auto;
}

#app-download-section .download-content {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-color-dark);
}

#app-download-section .offer-cta {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

#app-download-section .app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: nowrap;
}

#app-download-section .app-button {
  height: 55px;
  padding: 10px 20px;
}

#app-download-section .app-button img {
  height: 35px;
}

#app-download-section .button-text {
  margin-top: 3px;
}

#app-download-section .button-text .small-text {
  font-size: 0.7rem;
}

#app-download-section .button-text .large-text {
  font-size: 1rem;
}

#app-download-section {
  display: none; /* Hide by default */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #app-download-section {
    display: block;
    padding: 2rem 1rem;
  }

  #app-download-section .download-content {
    padding: 1.5rem;
  }

  #app-download-section .app-buttons {
    /* Change from column to row */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  #app-download-section .app-button {
    flex: 1;
    /* Make buttons smaller */
    height: 40px;
    padding: 6px 12px;
    /* Ensure text stays on one line */
    white-space: nowrap;
    min-width: 135px;
  }

  #app-download-section .app-button img {
    height: 24px;
  }

  #app-download-section .button-text {
    margin-top: 0;
  }

  #app-download-section .button-text .small-text {
    font-size: 0.55rem;
  }

  #app-download-section .button-text .large-text {
    font-size: 0.75rem;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  #app-download-section .download-content {
    max-width: 90%;
  }
}
/* Add at the end of your CSS file */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  position: relative;
  max-width: 600px;
  width: 90%;
  margin: 50px auto;
  background-color: rgba(255, 255, 255, 0.185);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  opacity: 0;
  animation: slideIn 0.5s ease-out forwards;
}

.popup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: #be5555;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-popup:hover {
  background-color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .popup-content {
    width: 85%;
    margin: 150px auto;
  }
}

.canadian-logo-mobile {
  display: block;
  position: absolute;
  top: 14%;
  left: 20px;
  z-index: 2;
  padding: 10px;
  animation: slideInLeft 0.5s ease-out;
}

.canadian-logo-mobile img {
  width: 45%;
  height: auto;
  transition: transform 0.3s ease;
  /* Add white shadow around the logo */
  filter: drop-shadow(0px 0px 3px rgb(255, 255, 255))
         drop-shadow(0px 0px 5px rgb(255, 255, 255))
         drop-shadow(0px 0px 7px rgb(255, 255, 255))
         drop-shadow(0px 0px 9px rgba(255, 255, 255, 0.4));
}

.canadian-logo-mobile img:hover {
  transform: scale(1.1);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.reservation-hero-section2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("assets/backgrounds/3.webp");
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 140px 20px 60px 20px;
  height: 80vh;
  position: relative;
  z-index: 1;
}


.reservation-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("assets/banner/3.webp");
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 140px 20px 60px 20px;
  height: 80vh;
  position: relative;
  z-index: 1;
}

.reservation-hero-content2,
.reservation-section-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 90%;
}

.reservation-hero-content2 h1,
.reservation-section-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.reservation-hero-content2 p,
.reservation-section-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Allows wrapping on small screens */
}

.cta-button2 {
  display: inline-block;
  padding: 12px 20px;
  font-size: 1rem;
  color: white;
  background-color: #ff6600;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.cta-button2:hover {
  background-color: #e55b00;
}

@media (max-width: 768px) {
 
  .reservation-hero-content2 h1 ,
  .reservation-section-content h1 {
    font-size: 1.5rem;
  }

  .reservation-hero-content2 p,
  .reservation-section-content p {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-button2 {
    width: 100%;
    text-align: center;
  }
}

.menu-hero-content2, .reservation-hero-content2 , .reservation-section-content {
  max-width: 600px;
  z-index: 2;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button2 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: var(--primary-color-dark);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button2:hover {
  background: var(--primary-color);
  color: white;
}

.menu-hero-image2 {
  margin-top: 20px;
  z-index: 2;
}

.menu-hero-image2 img {
  width: 600px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .menu-hero-section2,
  .reservation-hero-section2,
  .reservation-section {
      flex-direction: row;
      text-align: left;
      padding: 80px 40px;
  }
  .menu-hero-content2 ,
  .reservation-hero-content2,
  .reservation-section-content {
      max-width: 50%;
  }
  .menu-hero-image2 {
      margin-left: 40px;
  }
}

/* ============================================ */
/*              REWARDS BANNER                  */
/* ============================================ */
.rewards-banner {
  background: linear-gradient(135deg, #2d1f0e 0%, #3e2a10 50%, #2d1f0e 100%);
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.rewards-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(200, 164, 86, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(200, 164, 86, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.rewards-banner__container {
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.rewards-banner__content {
  max-width: 700px;
  margin: 0 auto;
}

.rewards-banner__badge {
  display: inline-block;
  background: var(--primary-color);
  color: #1a1108;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-family: "Sofia Sans", sans-serif;
}

.rewards-banner__content .section__header {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: #f5e6c8;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.rewards-banner__content .section__description {
  color: rgba(245, 230, 200, 0.75);
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.rewards-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--primary-color);
  color: #1a1108;
  font-weight: 700;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  font-family: "Sofia Sans", sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(200, 164, 86, 0.3);
}

.rewards-banner__btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 164, 86, 0.4);
}

/* Visit Us / Map section */
#visit-us {
  padding: clamp(3rem, 6vw, 4rem) 1rem;
}
#visit-us .visit-us__title {
  text-align: center;
  margin-bottom: 2rem;
}
.visit-us__box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}
.visit-us__map {
  position: relative;
  min-height: 380px;
}
.visit-us__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.visit-us__info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.visit-us__info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 0.35rem 0;
}
.visit-us__info p,
.visit-us__info ul {
  margin: 0;
  color: #18181b;
  font-size: 1rem;
  line-height: 1.55;
}
.visit-us__info ul {
  list-style: none;
  padding: 0;
}
.visit-us__info a {
  color: #18181b;
  text-decoration: none;
}
.visit-us__info a:hover {
  text-decoration: underline;
}
.visit-us__buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .visit-us__box {
    grid-template-columns: 1fr;
  }
  .visit-us__map {
    min-height: 280px;
  }
  .visit-us__buttons {
    justify-content: center;
  }
}

/* ===========================================================
 * FAQ Accordion (shared component — used on home FAQ and tags pages)
 * Tag pages also include this CSS inline; those inline rules win
 * via cascade order, so this is the fallback for pages without
 * their own inline FAQ styles.
 * =========================================================== */
.faq__item {
  margin: 0 auto 1rem auto;
  max-width: 900px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 0.25rem;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.85rem 0;
  gap: 1rem;
}

.faq__question h3,
.faq__question h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.faq__icon {
  font-size: 1.25rem;
  color: var(--primary-color-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 2400px;
  padding-bottom: 1rem;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.75rem 0;
}

.faq__answer ul,
.faq__answer ol,
.faq__dish-list {
  margin: 0.5rem 0 0 0;
  padding-left: 1.5rem;
  color: var(--text-light);
}

.faq__answer li,
.faq__dish-list li {
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.faq__answer a,
.faq__dish-list a {
  color: var(--primary-color-dark);
  text-decoration: none;
  font-weight: 600;
}

.faq__answer a:hover,
.faq__dish-list a:hover {
  text-decoration: underline;
}


/* =====================================================================
   ============= REDESIGN STYLES (merged from separate files) ===========
   ===================================================================== */

/* ---------- nav-redesign ---------- */
/* =====================================================================
   Taste of Sri Lanka — site-wide nav + floating Order button
   Scoped under .tsl-nav so legacy pages keep their existing layout
   while gaining the redesigned navigation bar.
   ===================================================================== */

.tsl-nav {
  --curry:     #005043;
  --curry-deep:#003830;
  --chili:     #8B1A2B;
  --saffron:   #F3B62F;
  --coconut:   #FAF3E7;
  --charcoal:  #1A140E;
  --line:      rgba(26, 20, 14, 0.12);
  --display:   "Eczar", "Playfair Display", Georgia, serif;
  --body-font: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter:    clamp(1.25rem, 3vw, 2.5rem);
  --max-w:     1280px;
}

/* Reserve top space because legacy .nav__container is position:fixed
   on some pages — overriding to sticky here so content flows below it. */

/* ---------- Container / bar ---------- */
.tsl-nav .nav__container {
  position: sticky !important;
  top: 0 !important;
  height: auto !important;
  max-height: none !important;
  width: 100%;
  z-index: 60 !important;
  background: var(--curry) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 4px 20px -12px rgba(0, 0, 0, .35) !important;
  isolation: auto;
}

.tsl-nav #nav__anchor {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: .85rem var(--gutter) !important;
  gap: 1rem;
  flex-wrap: nowrap;
  position: static !important;
  background: transparent !important;
}

.tsl-nav .nav__header {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

.tsl-nav .nav__logo { width: auto !important; }
.tsl-nav .nav__logo a { color: var(--coconut) !important; font-size: 1rem !important; }
.tsl-nav .logo__wrapper {
  display: inline-flex !important;
  align-items: center !important;
  gap: .65rem !important;
  width: auto !important;
}
.tsl-nav .logo__wrapper span { width: auto !important; }
.tsl-nav .logo__image {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--saffron) !important;
}
.tsl-nav .logo__title {
  font-family: var(--display) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: .12em !important;
  color: var(--coconut) !important;
  text-transform: uppercase !important;
  background-clip: unset !important;
  text-shadow: none !important;
}

/* ---------- Desktop nav links ---------- */
.tsl-nav .nav__links {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  transform: none !important;
  flex-direction: row !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border-bottom: 0 !important;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-right: 1.5rem;
  list-style: none;
}
.tsl-nav .nav__links li {
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
}
.tsl-nav .nav__links li a {
  color: var(--coconut) !important;
  text-shadow: none !important;
  font-family: var(--body-font);
  font-weight: 600 !important;
  font-size: .95rem !important;
  padding: .5rem 0 !important;
  position: relative;
  transition: color .2s ease;
  text-decoration: none;
}
.tsl-nav .nav__links li a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background-color: var(--saffron) !important;
  transition: width .25s ease, left .25s ease;
}
.tsl-nav .nav__links li a:hover,
.tsl-nav .nav__links li a.active {
  color: var(--saffron) !important;
  font-weight: 600 !important;
}
.tsl-nav .nav__links li a:hover::after,
.tsl-nav .nav__links li a.active::after { width: 100%; left: 0; }
.tsl-nav .nav__links .nav__btn-mobile { display: none !important; }

/* ---------- Hamburger + desktop CTA button ---------- */
.tsl-nav .nav__menu__btn {
  display: none !important;
  font-size: 1.7rem !important;
  color: var(--coconut) !important;
  cursor: pointer;
  margin-right: 0 !important;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
}

.tsl-nav .nav__btn {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center;
}
.tsl-nav .nav__btn .btn,
.tsl-nav .nav__btn-mobile .btn {
  background: var(--chili) !important;
  color: var(--coconut) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: .75rem 1.4rem !important;
  font-family: var(--body-font) !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 8px 18px -8px rgba(139, 26, 43, .55) !important;
  transition: transform .2s ease, background .25s ease !important;
  white-space: nowrap;
  text-shadow: none !important;
  text-decoration: none;
}
.tsl-nav .nav__btn .btn:hover {
  background: #6B1421 !important;
  transform: translateY(-1px);
}

/* ---------- Mobile drawer (≤900px) ---------- */
@media (max-width: 900px) {
  .tsl-nav .nav__menu__btn {
    display: block !important;
    margin-left: auto !important;          /* push to right edge */
  }
  .tsl-nav .nav__btn { display: none !important; }

  .tsl-nav .nav__header {
    flex: 1 1 auto !important;
    width: 100% !important;
    justify-content: space-between !important;
  }

  .tsl-nav .nav__links {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--coconut) !important;
    flex-direction: column !important;
    align-items: center !important;        /* center each link */
    justify-content: flex-start !important;
    text-align: center !important;
    gap: 0 !important;
    padding: 0 var(--gutter) !important;
    margin-right: 0 !important;
    transform: scaleY(0) !important;
    transform-origin: top !important;
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: 0 12px 24px -16px rgba(26, 20, 14, .25);
    flex: 0 0 auto;
  }
  .tsl-nav .nav__links.open {
    transform: scaleY(1) !important;
    opacity: 1;
    padding: 1rem var(--gutter) !important;
  }
  .tsl-nav .nav__links li {
    width: 100% !important;
    padding: .6rem 0 !important;
    border-bottom: 1px solid var(--line) !important;
    text-align: center !important;
  }
  .tsl-nav .nav__links li:last-child {
    border-bottom: 0 !important;
    padding-top: .85rem !important;
  }
  .tsl-nav .nav__links li a {
    display: inline-block !important;
    width: auto !important;
    font-size: 1rem !important;
    color: var(--charcoal) !important;
    text-align: center !important;
  }
  .tsl-nav .nav__links li a::after { display: none; }
  .tsl-nav .nav__links .nav__btn-mobile { display: block !important; }
  .tsl-nav .nav__links .nav__btn-mobile .btn {
    display: inline-block !important;
    min-width: 220px;
    text-align: center !important;
    background: var(--chili) !important;
    color: var(--coconut) !important;
    padding: .9rem 1.4rem !important;
    font-size: .9rem !important;
  }
}

/* ---------- Floating Order Online button (consistent on every page) ---------- */
.tsl-nav .floating-btn-wrapper {
  position: fixed !important;
  bottom: 1.25rem !important;
  right: 1.25rem !important;
  z-index: 80 !important;
  left: auto !important;
  top: auto !important;
}
.tsl-nav .order-float {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  background: var(--curry) !important;
  color: var(--coconut) !important;
  padding: .95rem 1.5rem !important;
  border-radius: 999px !important;
  border: 2px solid var(--saffron) !important;
  font-family: var(--body-font) !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-size: .85rem !important;
  box-shadow: 0 18px 40px -16px rgba(0, 80, 67, .6) !important;
  text-decoration: none !important;
  text-shadow: none !important;
  animation: tsl-floatPulse 3s ease-in-out infinite;
}
@keyframes tsl-floatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 18px 40px -16px rgba(0, 80, 67, .6); }
  50%      { transform: translateY(-3px); box-shadow: 0 22px 48px -16px rgba(0, 80, 67, .75); }
}
.tsl-nav .order-float::before {
  content: "🌶";
  font-size: 1.05rem;
  filter: saturate(1.4);
}
@media (max-width: 760px) {
  .tsl-nav .order-float { padding: .85rem 1.25rem !important; font-size: .8rem !important; }
  .tsl-nav .floating-btn-wrapper { bottom: 1rem !important; right: 1rem !important; }
}
@media (prefers-reduced-motion: reduce) {
  .tsl-nav .order-float { animation: none; }
}


/* ---------- footer-redesign ---------- */
/* =====================================================================
   Taste of Sri Lanka — site-wide footer
   Scoped under .tsl-footer. Styles BOTH:
     - the new index.html structure (.brand / h5 / .footer-bottom / .footer-credit / .socials)
     - the legacy structure on other pages (.footer__col / .footer__heading / .footer__links / .footer__policy / .footer__bar / .footer__company / .social-icons-wrapper)
   so every page renders the same modern footer without HTML rewrites.
   ===================================================================== */

.tsl-footer {
  --curry:     #005043;
  --chili:     #8B1A2B;
  --saffron:   #F3B62F;
  --coconut:   #FAF3E7;
  --charcoal:  #1A140E;
  --display:   "Eczar", "Playfair Display", Georgia, serif;
  --body-font: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter:    clamp(1.25rem, 3vw, 2.5rem);
  --max-w:     1280px;
}

/* ---------- Footer shell ---------- */
.tsl-footer .footer {
  background: var(--charcoal) !important;
  color: rgba(250, 243, 231, .8) !important;
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 0 !important;
  font-family: var(--body-font) !important;
  position: relative;
  margin-top: 0;
}

/* ---------- 4-column grid (works for both old & new) ---------- */
.tsl-footer .footer .footer__container {
  max-width: var(--max-w) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap: 2rem !important;
}
.tsl-footer .footer .footer__col {
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* ---------- Brand column (first column on legacy pages) ---------- */
.tsl-footer .footer .footer__col:first-child .footer__logo__img,
.tsl-footer .footer .brand img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  box-shadow: 0 0 0 2px var(--saffron) !important;
  margin-bottom: 1rem !important;
  display: block !important;
}
.tsl-footer .footer .footer__col .logo.footer__logo,
.tsl-footer .footer .brand h4 {
  font-family: var(--display) !important;
  font-size: 1.45rem !important;
  color: var(--saffron) !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  margin: 0 0 .65rem 0 !important;
  background: transparent !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}
.tsl-footer .footer .footer__col .logo.footer__logo a {
  color: var(--saffron) !important;
  font-family: var(--display) !important;
  font-weight: 700 !important;
  font-size: 1.45rem !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: transparent !important;
}
.tsl-footer .footer .footer__col .section__description,
.tsl-footer .footer .brand p {
  color: rgba(250, 243, 231, .65) !important;
  font-size: .92rem !important;
  line-height: 1.6 !important;
  max-width: 36ch !important;
  text-align: left !important;
  margin: 0 !important;
}

/* ---------- Column headings (h4 legacy / h5 new) ---------- */
.tsl-footer .footer .footer__heading,
.tsl-footer .footer h4,
.tsl-footer .footer h5 {
  font-family: var(--display) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  color: var(--saffron) !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  margin: 0 0 1rem 0 !important;
  padding: 0 0 .5rem 0 !important;
  border-bottom: 1px solid rgba(243, 182, 47, .3) !important;
  text-align: left !important;
  line-height: 1.2 !important;
}
/* Brand h4 keeps its bigger size set above */
.tsl-footer .footer .brand h4 {
  font-size: 1.45rem !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ---------- Column lists ---------- */
.tsl-footer .footer .footer__links,
.tsl-footer .footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.tsl-footer .footer .footer__links li,
.tsl-footer .footer ul li {
  font-size: .9rem !important;
  margin-bottom: .55rem !important;
  line-height: 1.5 !important;
  color: rgba(250, 243, 231, .8) !important;
}
.tsl-footer .footer .footer__links li a,
.tsl-footer .footer ul li a {
  color: rgba(250, 243, 231, .8) !important;
  text-decoration: none !important;
  transition: color .25s ease;
  background: transparent !important;
}
.tsl-footer .footer .footer__links li a:hover,
.tsl-footer .footer ul li a:hover {
  color: var(--saffron) !important;
}

/* ---------- Social icons (legacy + new) ---------- */
.tsl-footer .footer .social-icons-wrapper,
.tsl-footer .footer .socials {
  display: flex !important;
  gap: .65rem !important;
  margin-top: 1rem !important;
  list-style: none !important;
  padding: 0 !important;
}
.tsl-footer .footer .social-icons {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1rem !important;
}
.tsl-footer .footer .social-icons a,
.tsl-footer .footer .socials a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(250, 243, 231, .08) !important;
  display: grid !important;
  place-items: center !important;
  color: var(--coconut) !important;
  transition: background .25s, transform .25s, color .25s !important;
  font-size: 1rem !important;
}
.tsl-footer .footer .social-icons a:hover,
.tsl-footer .footer .socials a:hover {
  background: var(--saffron) !important;
  color: var(--curry) !important;
  transform: translateY(-2px);
}

/* ---------- Bottom rows: policy + copyright + credit ---------- */
.tsl-footer .footer .footer__policy,
.tsl-footer .footer .footer-bottom .policy,
.tsl-footer .footer .footer-bottom {
  max-width: var(--max-w) !important;
  margin: 2.5rem auto 0 !important;
  padding: 1.4rem 0 !important;
  border-top: 1px solid rgba(250, 243, 231, .1) !important;
  font-size: .82rem !important;
  color: rgba(250, 243, 231, .6) !important;
}
.tsl-footer .footer .footer__policy {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.25rem !important;
  justify-content: flex-start !important;
  align-items: center !important;
}
.tsl-footer .footer .footer__policy a {
  color: rgba(250, 243, 231, .65) !important;
  text-decoration: none !important;
  transition: color .25s ease;
}
.tsl-footer .footer .footer__policy a:hover { color: var(--saffron) !important; }

.tsl-footer .footer .footer__bar {
  max-width: var(--max-w) !important;
  margin: 0 auto !important;
  padding: .9rem 0 !important;
  font-size: .82rem !important;
  color: rgba(250, 243, 231, .55) !important;
  text-align: left !important;
  border-top: 1px solid rgba(250, 243, 231, .06) !important;
}

.tsl-footer .footer .footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  border-top: 1px solid rgba(250, 243, 231, .1) !important;
}
.tsl-footer .footer .footer-bottom .policy {
  border-top: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.25rem !important;
}
.tsl-footer .footer .footer-bottom a {
  color: rgba(250, 243, 231, .65) !important;
  text-decoration: none !important;
}
.tsl-footer .footer .footer-bottom a:hover { color: var(--saffron) !important; }

/* iOrders credit */
.tsl-footer .footer .footer__company,
.tsl-footer .footer .footer-credit {
  text-align: center !important;
  padding: .9rem 0 !important;
  font-size: .78rem !important;
  color: rgba(250, 243, 231, .4) !important;
  border-top: 1px solid rgba(250, 243, 231, .06) !important;
  background: transparent !important;
}
.tsl-footer .footer .footer__company a,
.tsl-footer .footer .footer-credit a {
  color: rgba(250, 243, 231, .55) !important;
  text-decoration: none !important;
  transition: color .25s ease;
}
.tsl-footer .footer .footer__company a:hover,
.tsl-footer .footer .footer-credit a:hover { color: var(--saffron) !important; }
.tsl-footer .footer .footer__company a span { color: var(--saffron) !important; font-weight: 600 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .tsl-footer .footer .footer__container {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  .tsl-footer .footer .footer__container {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }
  .tsl-footer .footer .footer-bottom { flex-direction: column; align-items: flex-start; }
  .tsl-footer .footer .footer__bar { text-align: center !important; }
}


/* ---------- index-redesign ---------- */
/* =====================================================================
   Taste of Sri Lanka — index.html redesign
   "Spice-Market Editorial" — warm, tactile, magazine-confident.
   Scoped under .tsl-redesign so legacy pages remain untouched.
   ===================================================================== */

/* ---------- Design tokens ---------- */
.tsl-redesign {
  /* Spice palette */
  --curry:     #005043;
  --curry-deep:#003830;
  --chili:     #8B1A2B;
  --chili-soft:#A8324A;
  --saffron:   #F3B62F;
  --saffron-soft:#F7D070;
  --palm:      #2F4A3A;
  --palm-deep: #1F3327;
  --cinnamon:  #005043;
  --coconut:   #FAF3E7;
  --coconut-warm:#F2E6CC;
  --charcoal:  #1A140E;
  --gold:      #C8961F;
  --line:      rgba(26, 20, 14, 0.12);

  /* Type */
  --display: "Eczar", "Playfair Display", Georgia, serif;
  --body:    "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(4rem, 9vw, 7rem);
  --gutter:    clamp(1.25rem, 3vw, 2.5rem);
  --max-w:     1280px;

  /* Shadow */
  --shadow-warm: 0 24px 60px -28px rgba(0, 56, 48, .4);
  --shadow-soft: 0 12px 32px -16px rgba(26, 20, 14, .25);

  background: var(--coconut);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle paper-grain overlay across the whole page */
.tsl-redesign::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Hide legacy duplicates if they slip in ---------- */
.tsl-redesign br { display: none; }
.tsl-redesign img { display: block; max-width: 100%; height: auto; }
.tsl-redesign a  { color: inherit; text-decoration: none; }
.tsl-redesign ul { list-style: none; padding: 0; margin: 0; }

/* Hidden SVG sprite host */
.tsl-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Re-usable type ==================================== */
.tsl-redesign .eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--chili);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.tsl-redesign .eyebrow::before,
.tsl-redesign .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.tsl-redesign .eyebrow.center { justify-content: center; }
.tsl-redesign .eyebrow.no-rule::before,
.tsl-redesign .eyebrow.no-rule::after { display: none; }

.tsl-redesign h1, .tsl-redesign h2, .tsl-redesign h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--charcoal);
  line-height: 1.05;
}

.tsl-redesign h2.section-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  text-align: center;
  margin: .75rem auto 1rem;
  max-width: 24ch;
  letter-spacing: -.015em;
}
.tsl-redesign h2.section-title em {
  font-style: italic;
  color: var(--curry);
  font-family: var(--display);
}

.tsl-redesign .lede {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
  color: rgba(26, 20, 14, .72);
  font-size: 1.05rem;
}

/* Buttons ==================================== */
.tsl-redesign .tsl-btn {
  --bg: var(--curry);
  --fg: var(--coconut);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 10px 24px -10px rgba(0, 80, 67, .55);
  position: relative;
  cursor: pointer;
}
.tsl-redesign .tsl-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(0, 80, 67, .6); }
.tsl-redesign .tsl-btn .arrow { transition: transform .3s ease; }
.tsl-redesign .tsl-btn:hover .arrow { transform: translateX(4px); }

.tsl-redesign .tsl-btn--ghost {
  --bg: transparent;
  --fg: #ffffff;
  border-color: rgba(255, 255, 255, .65);
  box-shadow: none;
}
.tsl-redesign .tsl-btn--ghost:hover {
  --bg: rgba(255, 255, 255, .15);
  --fg: #ffffff;
  border-color: #ffffff;
}

.tsl-redesign .tsl-btn--saffron {
  --bg: var(--saffron);
  --fg: var(--curry-deep);
  box-shadow: 0 10px 24px -10px rgba(243, 182, 47, .6);
}
.tsl-redesign .tsl-btn--saffron:hover {
  --bg: var(--saffron-soft);
}

/* ============================================================
   HEADER / NAV  (aggressive overrides — legacy style.css has
   .nav__container fixed/120px-tall and .nav__links pinned off-screen
   by default. Need !important to win the cascade reliably.)
   ============================================================ */
.tsl-redesign .nav__container {
  position: sticky !important;
  top: 0 !important;
  height: auto !important;
  max-height: none !important;
  width: 100%;
  z-index: 60 !important;
  background: var(--curry) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 4px 20px -12px rgba(0, 0, 0, .35) !important;
  isolation: auto;
}
.tsl-redesign #nav__anchor {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: .85rem var(--gutter) !important;
  gap: 1rem;
  flex-wrap: nowrap;
  position: static !important;
  background: transparent !important;
}
.tsl-redesign .nav__header {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}
.tsl-redesign .nav__logo { width: auto !important; }
.tsl-redesign .nav__logo a { color: var(--coconut) !important; font-size: 1rem !important; }
.tsl-redesign .logo__wrapper {
  display: inline-flex !important;
  align-items: center !important;
  gap: .65rem !important;
  width: auto !important;
}
.tsl-redesign .logo__wrapper span { width: auto !important; }
.tsl-redesign .logo__image {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--saffron) !important;
}
.tsl-redesign .logo__title {
  font-family: var(--display) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: .12em !important;
  color: var(--coconut) !important;
  text-transform: uppercase !important;
  background-clip: unset !important;
  text-shadow: none !important;
}

/* Desktop nav: links inline, no transform/absolute */
.tsl-redesign .nav__links {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  transform: none !important;
  flex-direction: row !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border-bottom: 0 !important;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-right: 1.5rem;
}
.tsl-redesign .nav__links li {
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
}
.tsl-redesign .nav__links li a {
  color: var(--coconut) !important;
  text-shadow: none !important;
  font-family: var(--body);
  font-weight: 600 !important;
  font-size: .95rem !important;
  padding: .5rem 0 !important;
  position: relative;
  transition: color .2s ease;
}
.tsl-redesign .nav__links li a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background-color: var(--saffron) !important;
  transition: width .25s ease, left .25s ease;
}
.tsl-redesign .nav__links li a:hover,
.tsl-redesign .nav__links li a.active {
  color: var(--saffron) !important;
  font-weight: 600 !important;
}
.tsl-redesign .nav__links li a:hover::after,
.tsl-redesign .nav__links li a.active::after { width: 100%; left: 0; }
.tsl-redesign .nav__links .nav__btn-mobile { display: none !important; }

.tsl-redesign .nav__menu__btn {
  display: none !important;
  font-size: 1.7rem !important;
  color: var(--coconut) !important;
  cursor: pointer;
  margin-right: 0 !important;
  flex: 0 0 auto;
}

.tsl-redesign .nav__btn {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center;
}
.tsl-redesign .nav__btn .btn,
.tsl-redesign .nav__btn-mobile .btn {
  background: var(--chili) !important;
  color: var(--coconut) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: .75rem 1.4rem !important;
  font-family: var(--body) !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 8px 18px -8px rgba(139, 26, 43, .55) !important;
  transition: transform .2s ease, background .25s ease !important;
  white-space: nowrap;
  text-shadow: none !important;
}
.tsl-redesign .nav__btn .btn:hover {
  background: #6B1421 !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.tsl-redesign #home-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.tsl-redesign #home-hero > picture { display: none; } /* hide legacy bg img */
/* Full-section YouTube video background */
.tsl-redesign .hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.tsl-redesign .hero-video-cover {
  position: absolute;
  inset: 0;
  background: #111;
  z-index: 10;
  pointer-events: none;
  animation: heroCoverFade .6s ease 2s forwards;
}
@keyframes heroCoverFade {
  to { opacity: 0; }
}
.tsl-redesign .hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Video is a YouTube Short (9:16 portrait). Match that ratio so YouTube
     fills the iframe without pillarboxing. min constraints cover whichever
     section dimension is the tighter bound. */
  aspect-ratio: 9 / 16;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}
/* Dark overlay for text readability */
.tsl-redesign #home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}
.tsl-redesign .hero-batik {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><g fill='none' stroke='%23ffffff' stroke-width='1.2'><circle cx='110' cy='110' r='90'/><circle cx='110' cy='110' r='65'/><circle cx='110' cy='110' r='40'/><path d='M20 110 Q110 30 200 110 Q110 190 20 110Z'/></g></svg>");
  background-size: 320px;
}

.tsl-redesign .hero-grid {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.tsl-redesign .hero-copy { padding-right: 1rem; }
.tsl-redesign .hero-copy h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 1rem 0 1.25rem;
  color: #ffffff;
}
.tsl-redesign .hero-copy h1 .accent {
  color: var(--saffron);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
/* .tsl-redesign .hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.05em;
  height: .25em;
  background: var(--saffron);
  z-index: -1;
  opacity: .55;
  transform: skewX(-8deg);
} */
.tsl-redesign .hero-copy p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  max-width: 48ch;
  margin-bottom: 2rem;
}
.tsl-redesign .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}
.tsl-redesign .hero-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-left: .25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  border-bottom: 1px dashed rgba(255, 255, 255, .5);
  padding: .35rem 0;
}
.tsl-redesign .hero-call:hover { color: var(--saffron); border-bottom-color: var(--saffron); }
/* Hero eyebrow override for dark background */
.tsl-redesign .hero-copy .eyebrow { color: var(--saffron); }

.tsl-redesign .hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  justify-self: end;
  width: 100%;
}
.tsl-redesign .hero-art .ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--saffron) 0%, var(--saffron-soft) 70%, transparent 71%);
  opacity: .35;
  filter: blur(6px);
}
.tsl-redesign .hero-art .photo {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 6px solid var(--coconut);
}
.tsl-redesign .hero-art .photo img,
.tsl-redesign .hero-art .photo video {
  width: 100%; height: 100%; object-fit: cover;
}

.tsl-redesign .hero-art .stamp {
  position: absolute;
  top: -4%;
  right: -2%;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--palm);
  color: var(--coconut);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: .92rem;
  text-align: center;
  line-height: 1.2;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transform: rotate(-8deg);
  border: 2px dashed var(--saffron);
}
.tsl-redesign .hero-art .stamp strong {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--saffron);
  margin: .15rem 0;
  letter-spacing: -.02em;
}
.tsl-redesign .hero-art .spice {
  position: absolute;
  width: 56px; height: 56px;
  color: var(--curry);
  opacity: .65;
}
.tsl-redesign .hero-art .spice.s1 { top: 8%; left: -6%; transform: rotate(-22deg); animation: floatY 5s ease-in-out infinite; }
.tsl-redesign .hero-art .spice.s2 { bottom: 6%; right: 4%;  transform: rotate(18deg);  animation: floatY 6s ease-in-out infinite reverse; color: var(--palm); width: 64px; height: 64px; }
.tsl-redesign .hero-art .spice.s3 { bottom: 18%; left: 0%;  transform: rotate(8deg);   animation: floatY 7s ease-in-out infinite; color: var(--saffron); }

@keyframes floatY {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -10px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.tsl-redesign .trust {
  background: var(--curry);
  color: var(--coconut);
  padding: 1.4rem var(--gutter);
  position: relative;
  z-index: 2;
}
.tsl-redesign .trust-row {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.tsl-redesign .trust-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .25rem 0;
  border-right: 1px solid rgba(250, 243, 231, .18);
}
.tsl-redesign .trust-item:last-child { border-right: 0; }
.tsl-redesign .trust-icon {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  color: var(--saffron);
}
.tsl-redesign .trust-text { display: flex; flex-direction: column; }
.tsl-redesign .trust-text strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.tsl-redesign .trust-text span {
  font-size: .82rem;
  opacity: .8;
  letter-spacing: .02em;
}

/* ============================================================
   EXPLORE OUR MENU — category grid
   ============================================================ */
.tsl-redesign .menu-section {
  padding: var(--section-y) var(--gutter);
  position: relative;
  z-index: 2;
}
.tsl-redesign .menu-section .head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.tsl-redesign .cat-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
.tsl-redesign .cat-card {
  background: var(--coconut);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.tsl-redesign .cat-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 70px; height: 70px;
  background: radial-gradient(circle at 100% 0%, rgba(243,182,47,.18), transparent 70%);
  pointer-events: none;
}
.tsl-redesign .cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  border-color: var(--saffron);
}
.tsl-redesign .cat-medallion {
  position: relative;
  width: 138px; height: 138px;
  margin: 0 auto 1rem;
}
.tsl-redesign .cat-medallion::before,
.tsl-redesign .cat-medallion::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--curry);
}
.tsl-redesign .cat-medallion::after {
  inset: -8px;
  border-style: dashed;
  border-color: var(--saffron);
  opacity: .8;
  transition: transform .8s ease;
}
.tsl-redesign .cat-card:hover .cat-medallion::after { transform: rotate(45deg); }
.tsl-redesign .cat-medallion img {
  position: absolute; inset: 6px;
  width: calc(100% - 12px); height: calc(100% - 12px);
  border-radius: 50%;
  object-fit: cover;
}
.tsl-redesign .cat-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: .35rem 0 .35rem;
  color: var(--charcoal);
}
.tsl-redesign .cat-card p {
  font-size: .82rem;
  color: rgba(26, 20, 14, .6);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.tsl-redesign .cat-link {
  font-weight: 700;
  font-size: .82rem;
  color: var(--chili);
  text-transform: uppercase;
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.tsl-redesign .cat-link::after {
  content: "→";
  transition: transform .25s ease;
}
.tsl-redesign .cat-card:hover .cat-link::after { transform: translateX(5px); }

/* ============================================================
   TONAL SPLIT — Sri Lankan Soul Meets Winnipeg Hospitality
   ============================================================ */
.tsl-redesign .split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.tsl-redesign .split .panel {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.tsl-redesign .split .panel.left {
  background: var(--palm);
  color: var(--coconut);
}
.tsl-redesign .split .panel.right {
  background: var(--curry);
  color: var(--coconut);
  text-align: left;
}
.tsl-redesign .split .panel h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--coconut);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 600;
}
.tsl-redesign .split .panel.left h2 { color: var(--saffron); font-style: normal; }
.tsl-redesign .split .panel p {
  max-width: 38ch;
  color: rgba(250, 243, 231, .85);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
}
.tsl-redesign .split .panel .underline-link {
  align-self: flex-start;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--saffron);
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 4px;
}
.tsl-redesign .split .panel .underline-link:hover { color: var(--coconut); border-color: var(--coconut); }
.tsl-redesign .split .seam-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 4 / 5;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .55);
  border: 6px solid var(--coconut);
  z-index: 2;
}
.tsl-redesign .split .seam-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============================================================
   POPULAR DISHES — editorial numbered row
   ============================================================ */
.tsl-redesign .popular {
  padding: var(--section-y) var(--gutter);
  background: var(--coconut-warm);
  position: relative;
  z-index: 2;
}
.tsl-redesign .popular::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'><g fill='none' stroke='%238E2A1F' stroke-width='1' opacity='.18'><path d='M0 160 Q80 80 160 160 T320 160'/><path d='M0 200 Q80 120 160 200 T320 200'/></g></svg>");
  background-size: 600px;
  opacity: .25;
  pointer-events: none;
}
.tsl-redesign .popular .head { position: relative; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.tsl-redesign .dish-row {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.tsl-redesign .dish-card {
  position: relative;
  background: var(--coconut);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tsl-redesign .dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
}
.tsl-redesign .dish-num {
  position: absolute;
  top: .35rem;
  right: .9rem;
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--saffron);
  opacity: .92;
  z-index: 2;
  text-shadow: 0 2px 0 rgba(0, 56, 48, .15), 0 0 24px rgba(250, 243, 231, .85);
  pointer-events: none;
}
.tsl-redesign .dish-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.tsl-redesign .dish-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.tsl-redesign .dish-card:hover .dish-img img { transform: scale(1.06); }
.tsl-redesign .dish-body { padding: 1.1rem 1.2rem 1.3rem; }
.tsl-redesign .dish-tags {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-bottom: .55rem;
}
.tsl-redesign .tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: var(--coconut-warm);
  color: var(--cinnamon);
}
.tsl-redesign .tag.bestseller { background: var(--saffron); color: var(--curry-deep); }
.tsl-redesign .tag.vegan      { background: var(--palm);    color: var(--coconut); }
.tsl-redesign .tag.spicy      { background: var(--chili);   color: var(--coconut); }
.tsl-redesign .dish-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  margin: .2rem 0 .35rem;
  color: var(--charcoal);
  line-height: 1.2;
}
.tsl-redesign .dish-card p {
  color: rgba(26, 20, 14, .65);
  font-size: .9rem;
  margin-bottom: .9rem;
}
.tsl-redesign .heat {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cinnamon);
  margin-bottom: .5rem;
}
.tsl-redesign .heat .pips { display: inline-flex; gap: 2px; }
.tsl-redesign .heat svg { width: 14px; height: 14px; color: var(--chili); opacity: .25; }
.tsl-redesign .heat svg.on { opacity: 1; }
.tsl-redesign .dish-order {
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--chili);
}
.tsl-redesign .dish-order::after { content: " →"; transition: padding .25s ease; }
.tsl-redesign .dish-card:hover .dish-order::after { padding-left: 4px; }

.tsl-redesign .popular .more-row {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   TESTIMONIALS — What Winnipeg Says
   ============================================================ */
.tsl-redesign .testimonials {
  padding: var(--section-y) var(--gutter);
  position: relative;
  z-index: 2;
}
.tsl-redesign .testimonials .head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.tsl-redesign .quote-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tsl-redesign .quote-card {
  background: var(--coconut);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  box-shadow: var(--shadow-soft);
}
.tsl-redesign .quote-card::before {
  content: "\201C";
  position: absolute;
  top: -1.4rem;
  left: 1.1rem;
  font-family: var(--display);
  font-size: 6rem;
  color: var(--saffron);
  line-height: 1;
}
.tsl-redesign .quote-card blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--charcoal);
}
.tsl-redesign .quote-card .who {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: auto;
}
.tsl-redesign .quote-card .who .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--curry);
  color: var(--saffron);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}
.tsl-redesign .quote-card .who strong { color: var(--curry); font-weight: 700; }
.tsl-redesign .quote-card .who span { display: block; font-size: .8rem; color: rgba(26, 20, 14, .6); }
.tsl-redesign .stars { color: var(--saffron); letter-spacing: .15em; font-size: .9rem; }

/* ============================================================
   CATERING BANNER
   ============================================================ */
.tsl-redesign .catering {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  color: var(--coconut);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.tsl-redesign .catering::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/banner/4.webp");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.tsl-redesign .catering::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,14,.55) 0%, rgba(0,56,48,.78) 60%, rgba(26,20,14,.85) 100%);
  z-index: -1;
}
.tsl-redesign .catering .eyebrow { color: var(--saffron); }
.tsl-redesign .catering h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  color: var(--coconut);
  max-width: 22ch;
  margin: .85rem auto 1rem;
  line-height: 1.1;
}
.tsl-redesign .catering p {
  max-width: 56ch;
  margin: 0 auto 1.8rem;
  color: rgba(250, 243, 231, .85);
  font-size: 1.05rem;
}
.tsl-redesign .catering .cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}

/* ============================================================
   VISIT US — map + contact card
   ============================================================ */
.tsl-redesign .visit {
  padding: var(--section-y) var(--gutter);
  position: relative;
  z-index: 2;
}
.tsl-redesign .visit .head { text-align: center; margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.tsl-redesign .visit-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.tsl-redesign .visit-map {
  border-radius: 22px;
  overflow: hidden;
  border: 6px solid var(--palm);
  box-shadow: var(--shadow-warm);
  min-height: 460px;
}
.tsl-redesign .visit-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.tsl-redesign .visit-card {
  background: var(--coconut);
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}
.tsl-redesign .visit-card .row { display: flex; gap: .9rem; align-items: flex-start; }
.tsl-redesign .visit-card .row .icon {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--curry-deep);
}
.tsl-redesign .visit-card .row h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--curry);
  margin-bottom: .1rem;
}
.tsl-redesign .visit-card .row p,
.tsl-redesign .visit-card .row a,
.tsl-redesign .visit-card .row li {
  color: rgba(26, 20, 14, .8);
  font-size: .95rem;
  line-height: 1.5;
}
.tsl-redesign .visit-card .hours-list { display: grid; gap: .15rem; }
.tsl-redesign .visit-card .hours-list li { display: flex; justify-content: space-between; gap: 1rem; max-width: 280px; }
.tsl-redesign .visit-card .hours-list li span:first-child { color: var(--cinnamon); font-weight: 600; }
.tsl-redesign .open-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--palm);
  color: var(--coconut);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
  margin-left: .55rem;
  vertical-align: middle;
}
.tsl-redesign .open-pill::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(243,182,47,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
.tsl-redesign .open-pill.closed { background: var(--cinnamon); }
.tsl-redesign .open-pill.closed::before { background: var(--coconut-warm); animation: none; box-shadow: none; }
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .55; }
}
.tsl-redesign .visit-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: auto;
  padding-top: .6rem;
  border-top: 1px dashed var(--line);
}

/* ============================================================
   FAQ — 2x2 themed grid
   ============================================================ */
.tsl-redesign .faq {
  padding: var(--section-y) var(--gutter);
  background: var(--coconut-warm);
  position: relative;
  z-index: 2;
}
.tsl-redesign .faq .head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.tsl-redesign .faq-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.tsl-redesign .faq-block {
  background: var(--coconut);
  border-radius: 20px;
  padding: 1.5rem 1.5rem .5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.tsl-redesign .faq-block > h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--curry);
  margin-bottom: 1rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--saffron);
  display: flex; align-items: center; gap: .55rem;
  letter-spacing: -.005em;
}
.tsl-redesign .faq-block > h3 svg { width: 22px; height: 22px; color: var(--chili); }
.tsl-redesign .faq-q {
  border-bottom: 1px solid var(--line);
}
.tsl-redesign .faq-q:last-child { border-bottom: 0; }
.tsl-redesign .faq-q summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: .98rem;
  color: var(--charcoal);
  padding: .9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tsl-redesign .faq-q summary::-webkit-details-marker { display: none; }
.tsl-redesign .faq-q summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--chili);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.tsl-redesign .faq-q[open] summary::after { transform: rotate(45deg); }
.tsl-redesign .faq-q .answer {
  font-size: .92rem;
  color: rgba(26, 20, 14, .72);
  padding: 0 0 1rem;
  line-height: 1.6;
}
.tsl-redesign .faq-q .answer a { color: var(--curry); border-bottom: 1px dotted var(--curry); }

/* ============================================================
   READY-TO-ORDER CTA BAND
   ============================================================ */
.tsl-redesign .cta-band {
  background: var(--curry);
  color: var(--coconut);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tsl-redesign .cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(243,182,47,.18), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(0,80,67,.35), transparent 40%);
  z-index: -1;
}
.tsl-redesign .cta-band h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  color: var(--coconut);
  max-width: 22ch;
  margin: .65rem auto 1rem;
  line-height: 1.1;
}
.tsl-redesign .cta-band h2 .hl { color: var(--saffron); font-style: normal; font-weight: 700; }
.tsl-redesign .cta-band p {
  color: rgba(250, 243, 231, .8);
  max-width: 50ch;
  margin: 0 auto 1.8rem;
}
.tsl-redesign .cta-band .cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  align-items: center;
}
.tsl-redesign .cta-band .phone-text {
  font-weight: 700;
  letter-spacing: .04em;
  border-bottom: 1px dashed var(--coconut);
  padding-bottom: 2px;
}
.tsl-redesign .cta-band .eyebrow { color: var(--saffron); }
.tsl-redesign .cta-band .eyebrow::before,
.tsl-redesign .cta-band .eyebrow::after { background: var(--saffron); }

/* ============================================================
   FOOTER
   ============================================================ */
.tsl-redesign .footer {
  background: var(--charcoal);
  color: rgba(250, 243, 231, .8);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 0;
  position: relative;
  z-index: 2;
}
.tsl-redesign .footer__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 0;
}
.tsl-redesign .footer .brand img {
  width: 64px; height: 64px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--saffron);
  margin-bottom: 1rem;
}
.tsl-redesign .footer .brand h4 {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.tsl-redesign .footer .brand p {
  font-size: .92rem;
  line-height: 1.6;
  max-width: 36ch;
  color: rgba(250, 243, 231, .65);
}
.tsl-redesign .footer h5 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--saffron);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(243,182,47,.3);
}
.tsl-redesign .footer ul li {
  font-size: .9rem;
  margin-bottom: .55rem;
  line-height: 1.5;
}
.tsl-redesign .footer a:hover { color: var(--saffron); }
.tsl-redesign .footer .socials {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
}
.tsl-redesign .footer .socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(250, 243, 231, .08);
  display: grid; place-items: center;
  color: var(--coconut);
  transition: background .25s, transform .25s;
}
.tsl-redesign .footer .socials a:hover {
  background: var(--saffron);
  color: var(--curry-deep);
  transform: translateY(-2px);
}
.tsl-redesign .footer-bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  border-top: 1px solid rgba(250, 243, 231, .1);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(250, 243, 231, .55);
}
.tsl-redesign .footer-bottom .policy { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.tsl-redesign .footer-bottom a:hover { color: var(--saffron); }
.tsl-redesign .footer-credit { padding: .9rem 0; text-align: center; font-size: .78rem; color: rgba(250, 243, 231, .4); border-top: 1px solid rgba(250, 243, 231, .06); }
.tsl-redesign .footer-credit a:hover { color: var(--saffron); }

/* ============================================================
   FLOATING ORDER BUTTON
   ============================================================ */
.tsl-redesign .floating-btn-wrapper { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 80; }

/* Hidden until hero scrolls out of view */
.floating-btn-wrapper {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(1rem) !important;
  transition: opacity .35s ease, transform .35s ease !important;
}
.floating-btn-wrapper.is-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.tsl-redesign .order-float {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--curry);
  color: var(--coconut) !important;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--saffron);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  box-shadow: 0 18px 40px -16px rgba(0, 80, 67, .6);
  animation: floatPulse 3s ease-in-out infinite;
}
@keyframes floatPulse {
  0%,100% { transform: translateY(0); box-shadow: 0 18px 40px -16px rgba(0, 80, 67, .6); }
  50%     { transform: translateY(-3px); box-shadow: 0 22px 48px -16px rgba(0, 80, 67, .75); }
}
.tsl-redesign .order-float::before {
  content: "🌶";
  font-size: 1.05rem;
  filter: saturate(1.4);
}

/* ============================================================
   SCROLL-IN ANIMATION (CSS-only via IntersectionObserver toggle)
   ============================================================ */
.tsl-redesign .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.tsl-redesign .reveal.in { opacity: 1; transform: none; }
.tsl-redesign .reveal.delay-1 { transition-delay: .12s; }
.tsl-redesign .reveal.delay-2 { transition-delay: .24s; }
.tsl-redesign .reveal.delay-3 { transition-delay: .36s; }
.tsl-redesign .reveal.delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .tsl-redesign *, .tsl-redesign *::before, .tsl-redesign *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
  .tsl-redesign .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .tsl-redesign .hero-grid { grid-template-columns: 1fr; }
  .tsl-redesign .hero-art { justify-self: center; max-width: 420px; }
  .tsl-redesign .hero-copy { text-align: center; padding-right: 0; }
  .tsl-redesign .hero-copy p { margin-left: auto; margin-right: auto; }
  .tsl-redesign .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .tsl-redesign .dish-row { grid-template-columns: repeat(2, 1fr); }
  .tsl-redesign .quote-grid { grid-template-columns: 1fr; }
  .tsl-redesign .visit-grid { grid-template-columns: 1fr; }
  .tsl-redesign .footer__container { grid-template-columns: 1fr 1fr; }
  .tsl-redesign .split { grid-template-columns: 1fr; min-height: 0; }
  .tsl-redesign .split .seam-photo { display: none; }
}

/* ---- Tablet/mobile nav: hamburger + drawer below 900px ---- */
@media (max-width: 900px) {
  .tsl-redesign .nav__menu__btn {
    display: block !important;
    margin-left: auto !important;        /* push to right edge */
  }
  .tsl-redesign .nav__btn { display: none !important; }

  /* nav__header expands to fill the row and separates logo + hamburger */
  .tsl-redesign .nav__header {
    flex: 1 1 auto !important;
    width: 100% !important;
    justify-content: space-between !important;
  }

  .tsl-redesign .nav__links {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--coconut) !important;
    flex-direction: column !important;
    align-items: center !important;       /* center each link row */
    justify-content: flex-start !important;
    text-align: center !important;
    gap: 0 !important;
    padding: 0 var(--gutter) !important;
    margin-right: 0 !important;
    transform: scaleY(0) !important;
    transform-origin: top !important;
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: 0 12px 24px -16px rgba(26, 20, 14, .25);
    flex: 0 0 auto;
  }
  .tsl-redesign .nav__links.open {
    transform: scaleY(1) !important;
    opacity: 1;
    padding: 1rem var(--gutter) !important;
  }
  .tsl-redesign .nav__links li {
    width: 100% !important;
    padding: .6rem 0 !important;
    border-bottom: 1px solid var(--line) !important;
    text-align: center !important;
  }
  .tsl-redesign .nav__links li:last-child {
    border-bottom: 0 !important;
    padding-top: .85rem !important;
  }
  .tsl-redesign .nav__links li a {
    display: inline-block !important;     /* let text center */
    width: auto !important;
    font-size: 1rem !important;
    color: var(--charcoal) !important;
    text-align: center !important;
  }
  .tsl-redesign .nav__links li a::after { display: none; }
  .tsl-redesign .nav__links .nav__btn-mobile { display: block !important; }
  .tsl-redesign .nav__links .nav__btn-mobile .btn {
    display: inline-block !important;
    min-width: 220px;
    text-align: center !important;
    background: var(--chili) !important;
    color: var(--coconut) !important;
    padding: .9rem 1.4rem !important;
    font-size: .9rem !important;
  }
}

@media (max-width: 760px) {
  .tsl-redesign .hero-art .stamp { width: 100px; height: 100px; font-size: .78rem; }
  .tsl-redesign .hero-art .stamp strong { font-size: 1.3rem; }

  /* Stack CTA buttons vertically and center them */
  .tsl-redesign .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    width: 100%;
  }
  .tsl-redesign .hero-cta .tsl-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .tsl-redesign .hero-call {
    margin-left: 0;
    justify-content: center;
  }

  .tsl-redesign .trust-row { grid-template-columns: 1fr; gap: .8rem; }
  .tsl-redesign .trust-item { border-right: 0; border-bottom: 1px solid rgba(250,243,231,.18); padding-bottom: .8rem; }
  .tsl-redesign .trust-item:last-child { border-bottom: 0; padding-bottom: 0; }

  .tsl-redesign .dish-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: .25rem .25rem 1.25rem;
    margin: 0 -.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tsl-redesign .dish-row::-webkit-scrollbar { display: none; }
  .tsl-redesign .dish-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

  .tsl-redesign .faq-grid { grid-template-columns: 1fr; }
  .tsl-redesign .footer__container { grid-template-columns: 1fr; }
  .tsl-redesign .footer-bottom { flex-direction: column; align-items: flex-start; }

  .tsl-redesign .order-float { padding: .85rem 1.25rem; font-size: .8rem; }
  .tsl-redesign .floating-btn-wrapper { bottom: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
  .tsl-redesign .cat-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .tsl-redesign .cat-medallion { width: 110px; height: 110px; }
  .tsl-redesign .visit-map, .tsl-redesign .visit-map iframe { min-height: 360px; }
}

/* ============================================================
   FAQ — tag-chip grid (links to tag pages)
   Used for dish lists and delivery-area lists in FAQ answers.
   ============================================================ */
.tsl-redesign .faq-q .answer .tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .85rem;
}
.tsl-redesign .faq-q .answer .tag-chip {
  display: inline-flex;
  align-items: center;
  padding: .4rem .8rem;
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .015em;
  background: var(--coconut-warm);
  color: var(--cinnamon);
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease;
  white-space: nowrap;
  line-height: 1.2;
}
/* Override the dotted-underline FAQ-answer-link rule for chips */
.tsl-redesign .faq-q .answer a.tag-chip {
  border-bottom: 1px solid transparent;
}
.tsl-redesign .faq-q .answer .tag-chip:hover,
.tsl-redesign .faq-q .answer .tag-chip:focus-visible {
  background: var(--saffron);
  color: var(--curry-deep);
  border-color: var(--curry);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(0, 80, 67, .45);
  outline: none;
}
.tsl-redesign .faq-q .answer .tag-chip::after {
  content: "→";
  display: inline-block;
  margin-left: .4rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
  font-weight: 700;
}
.tsl-redesign .faq-q .answer .tag-chip:hover::after,
.tsl-redesign .faq-q .answer .tag-chip:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .tsl-redesign .faq-q .answer .tag-chip { font-size: .76rem; padding: .35rem .65rem; }
  .tsl-redesign .faq-q .answer .tag-grid { gap: .3rem; }
}

/* ============================================================
   RESERVATION (reservation.html) — Zoho iframe wrapper + fallback note
   ============================================================ */
.tsl-redesign .reserve-frame {
  max-width: 880px;
  margin: 0 auto;
  background: var(--coconut);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(.5rem, 1.2vw, 1rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.tsl-redesign .reserve-frame::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 90px; height: 90px;
  background: radial-gradient(circle at 100% 0%, rgba(243,182,47,.18), transparent 70%);
  pointer-events: none;
  border-radius: 22px;
}
.tsl-redesign .reserve-frame iframe {
  width: 100% !important;
  height: 1400px;
  min-height: 1100px;
  border: 0 !important;
  display: block;
  border-radius: 14px;
  background: var(--coconut);
}

.tsl-redesign .reserve-note {
  max-width: 560px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: .9rem;
  color: rgba(26, 20, 14, .65);
  line-height: 1.6;
}
.tsl-redesign .reserve-note a {
  color: var(--curry);
  font-weight: 700;
  border-bottom: 1px dotted var(--curry);
}
.tsl-redesign .reserve-note a:hover {
  color: var(--chili);
  border-bottom-color: var(--chili);
}

@media (max-width: 600px) {
  .tsl-redesign .reserve-frame { padding: .35rem; border-radius: 16px; }
  .tsl-redesign .reserve-frame iframe { height: 1500px; min-height: 1200px; border-radius: 12px; }
}

/* =====================================================================
   MULTI-LOCATION COMPONENTS
   Location picker modal, multi-location footer, locations hub and
   per-location menu hero. Styled on the tsl-redesign spice palette.
   ===================================================================== */

/* ---------- Spice tokens at root scope ----------
   The tsl-redesign block scopes these to a body class. The location picker
   is appended to <body> on every page including legacy ones, so the tokens
   need a root-level fallback. .tsl-redesign still overrides them. */
:root {
  --curry:        #005043;
  --curry-deep:   #003830;
  --chili:        #8B1A2B;
  --saffron:      #F3B62F;
  --saffron-soft: #F7D070;
  --coconut:      #FAF3E7;
  --coconut-warm: #F2E6CC;
  --charcoal:     #1A140E;
  --gold:         #C8961F;
  --line:         rgba(26, 20, 14, 0.12);
  --display-font: "Eczar", "Playfair Display", Georgia, serif;
  --body-font:    "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Location picker modal ---------- */
.location-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 56, 48, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.location-modal-overlay.is-open { display: flex; }

.location-modal {
  position: relative;
  width: min(1040px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--coconut);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 40px 90px -30px rgba(0, 40, 34, .7);
}

.location-modal-close {
  position: absolute;
  top: .85rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 20, 14, .07);
  color: var(--charcoal);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease;
}

.location-modal-close:hover { background: rgba(26, 20, 14, .14); }
.location-modal-close:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; }

.location-modal-header { text-align: center; margin-bottom: 1.75rem; }

.location-modal-title {
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 3.6vw, 2.15rem);
  line-height: 1.15;
  color: var(--curry);
  margin: 0 0 .4rem;
}

.location-modal-sub {
  margin: 0;
  color: rgba(26, 20, 14, .68);
  font-size: .95rem;
}

.location-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.1rem;
}

.location-modal-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.3rem 1.35rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.location-modal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -24px rgba(0, 56, 48, .5);
}

.location-modal-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.location-modal-tag {
  display: inline-block;
  background: var(--curry);
  color: var(--saffron);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .34em .72em;
  border-radius: 999px;
}

.location-modal-status {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .6em;
  border-radius: 999px;
}

.location-modal-status.is-open   { background: rgba(0, 80, 67, .12);  color: var(--curry); }
.location-modal-status.is-closed { background: rgba(139, 26, 43, .1); color: var(--chili); }

.location-modal-name {
  font-family: var(--display-font);
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0;
}

.location-modal-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(26, 20, 14, .78);
}

.location-modal-detail-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  line-height: 1.45;
}

.location-modal-detail-item i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }
.location-modal-detail-item a { color: inherit; text-decoration: none; }
.location-modal-detail-item a:hover { color: var(--curry); text-decoration: underline; }

.location-modal-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
  padding-top: .35rem;
}

.location-modal-btn-primary,
.location-modal-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .68rem 1rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.location-modal-btn-primary {
  background: var(--curry);
  color: var(--saffron);
  border: 1px solid var(--curry);
}

.location-modal-btn-primary:hover { background: var(--curry-deep); border-color: var(--curry-deep); }

.location-modal-btn-secondary {
  background: transparent;
  color: var(--curry);
  border: 1px solid rgba(0, 80, 67, .35);
}

.location-modal-btn-secondary:hover { background: rgba(0, 80, 67, .07); border-color: var(--curry); }

.location-modal-btn-primary:focus-visible,
.location-modal-btn-secondary:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; }

/* ---------- Multi-location footer ---------- */
.tsl-footer .footer .footer__container--multi,
.tsl-redesign .footer__container--multi {
  display: grid !important;
  grid-template-columns: 1.15fr 2.4fr .8fr !important;
  gap: 2.5rem !important;
  align-items: start !important;
}

.footer__locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer__location h5,
.footer__quick h5 {
  font-family: var(--display-font);
  font-size: 1rem;
  color: var(--saffron);
  margin: 0 0 .7rem;
  letter-spacing: .01em;
}

.footer__location ul,
.footer__quick ul {
  list-style: none;
  margin: 0 0 .85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .38rem;
  font-size: .85rem;
  line-height: 1.5;
}

.footer__location ul a,
.footer__quick ul a {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease;
}

.footer__location ul a:hover,
.footer__quick ul a:hover { color: var(--saffron); }

.footer__loc-btn {
  display: block;
  text-align: center;
  padding: .5rem .8rem;
  margin-bottom: .45rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--saffron);
  color: var(--curry-deep);
  border: 1px solid var(--saffron);
  transition: background .18s ease, color .18s ease;
}

.footer__loc-btn:hover { background: var(--saffron-soft); border-color: var(--saffron-soft); }

.footer__loc-btn--ghost {
  background: transparent;
  color: inherit;
  border-color: rgba(255, 255, 255, .28);
}

.footer__loc-btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

@media (max-width: 1100px) {
  .tsl-footer .footer .footer__container--multi,
  .tsl-redesign .footer__container--multi {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer__locations { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .tsl-footer .footer .footer__container--multi,
  .tsl-redesign .footer__container--multi {
    grid-template-columns: 1fr !important;
  }
  .footer__locations { grid-template-columns: 1fr; }
}

/* ---------- Locations hub ---------- */
.locations-hub {
  padding: var(--section-y, 5rem) var(--gutter, 1.5rem);
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
}

.locations-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.locations-jump a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 80, 67, .3);
  color: var(--curry);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.locations-jump a:hover { background: var(--curry); color: var(--saffron); border-color: var(--curry); }

.locations-grid-full {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-card-full {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px -34px rgba(0, 56, 48, .55);
  scroll-margin-top: 110px;
}

.location-card-image { position: relative; min-height: 320px; }

.location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--curry);
  color: var(--saffron);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4em .85em;
  border-radius: 999px;
}

.location-card-content {
  padding: clamp(1.4rem, 3vw, 2.15rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.location-card-content h2,
.location-card-content h3 {
  font-family: var(--display-font);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.2;
  color: var(--curry);
  margin: 0;
}

.location-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

.location-tags span {
  background: rgba(200, 150, 31, .16);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .7em;
  border-radius: 999px;
}

.location-details { display: flex; flex-direction: column; gap: .85rem; }

.location-info-item { display: flex; align-items: flex-start; gap: .7rem; }
.location-info-item i { color: var(--gold); margin-top: .2rem; flex-shrink: 0; }

.location-info-item strong {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(26, 20, 14, .55);
  margin-bottom: .15rem;
}

.location-info-item p,
.location-info-item a { margin: 0; font-size: .92rem; color: var(--charcoal); text-decoration: none; }
.location-info-item a:hover { color: var(--curry); text-decoration: underline; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem .9rem;
  font-size: .88rem;
  color: rgba(26, 20, 14, .8);
}

.hours-grid span:nth-child(odd) { font-weight: 700; color: var(--charcoal); }

.location-actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: auto; }

.location-actions a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.location-actions .btn-primary { background: var(--curry); color: var(--saffron); border: 1px solid var(--curry); }
.location-actions .btn-primary:hover { background: var(--curry-deep); border-color: var(--curry-deep); }

.location-actions .btn-secondary { background: transparent; color: var(--curry); border: 1px solid rgba(0, 80, 67, .32); }
.location-actions .btn-secondary:hover { background: rgba(0, 80, 67, .07); border-color: var(--curry); }

.location-actions a:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; }

.location-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.location-map iframe { display: block; width: 100%; height: 240px; border: 0; }

@media (max-width: 900px) {
  .location-card-full { grid-template-columns: 1fr; }
  .location-card-image { min-height: 220px; }
}

/* ---------- Per-location menu hero ---------- */
.location-menu-hero {
  position: relative;
  padding: clamp(6.5rem, 13vw, 9rem) var(--gutter, 1.5rem) clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--curry) 0%, var(--curry-deep) 100%);
  color: var(--coconut);
  text-align: center;
  overflow: hidden;
}

.location-menu-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.location-menu-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(243, 182, 47, .16);
  color: var(--saffron);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45em .95em;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.location-menu-hero-title {
  font-family: var(--display-font);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.08;
  margin: 0 0 .75rem;
  color: var(--coconut);
}

.location-menu-hero-title em { font-style: italic; color: var(--saffron); }

.location-menu-hero-subtitle {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(250, 243, 231, .82);
  margin: 0 auto 1.6rem;
  max-width: 56ch;
}

.location-menu-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.6rem;
}

.location-menu-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .78rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.location-menu-hero-btn.primary { background: var(--saffron); color: var(--curry-deep); border: 1px solid var(--saffron); }
.location-menu-hero-btn.primary:hover { background: var(--saffron-soft); border-color: var(--saffron-soft); }

.location-menu-hero-btn.secondary { background: transparent; color: var(--coconut); border: 1px solid rgba(250, 243, 231, .4); }
.location-menu-hero-btn.secondary:hover { background: rgba(250, 243, 231, .12); border-color: var(--coconut); }

.location-menu-hero-btn:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }

.location-menu-hero-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 1.8rem;
  font-size: .88rem;
  color: rgba(250, 243, 231, .78);
}

.location-menu-hero-info-item { display: inline-flex; align-items: center; gap: .45rem; }
.location-menu-hero-info-item i { color: var(--saffron); }
.location-menu-hero-info-item a { color: inherit; text-decoration: none; }
.location-menu-hero-info-item a:hover { color: var(--saffron); }

/* Switcher shown on every per-location menu page */
.menu-location-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  padding: 1.5rem var(--gutter, 1.5rem) 0;
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
}

.menu-location-switch a {
  padding: .5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 80, 67, .28);
  color: var(--curry);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.menu-location-switch a:hover { background: rgba(0, 80, 67, .08); }
.menu-location-switch a[aria-current="page"] { background: var(--curry); color: var(--saffron); border-color: var(--curry); }

@media (prefers-reduced-motion: reduce) {
  .location-modal-card,
  .location-modal-btn-primary,
  .location-modal-btn-secondary,
  .location-actions a,
  .footer__loc-btn { transition: none; }
}

/* ---------- Scroll-reveal safety net ----------
   .tsl-redesign .reveal starts at opacity:0 and depends on components.js adding
   .in. If scripting is unavailable the content must still be readable rather
   than rendering as a blank page. */
@media (scripting: none) {
  .tsl-redesign .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
