:root {
  --kt-navy: #172d45;
  --kt-navy-soft: #263f59;
  --kt-orange: #ec7046;
  --kt-orange-dark: #d95d35;
  --kt-cream: #fff7f1;
  --kt-surface: #ffffff;
  --kt-page: #fbfaf8;
  --kt-text: #26384a;
  --kt-muted: #6f7c8b;
  --kt-line: rgba(23, 45, 69, 0.1);
  --kt-shadow-sm: 0 8px 24px rgba(23, 45, 69, 0.07);
  --kt-shadow-md: 0 18px 45px rgba(23, 45, 69, 0.11);
}

.favorite-toggle {
  position: absolute;
  z-index: 8;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(23, 45, 69, .1);
  border-radius: 50%;
  color: #172d45;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 20px rgba(23, 45, 69, .14);
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.favorite-toggle:hover { transform: translateY(-2px); color: #e96f3f; }
.favorite-toggle.is-favorite { color: #fff; background: #e96f3f; }

.favorite-toggle--detail {
  position: static;
  width: auto;
  min-width: 46px;
  padding: 0 15px;
  border-radius: 999px;
  gap: 8px;
}

.kt-mobile-favorites {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #172d45;
  background: #fff3ed;
  font-weight: 700;
}

.kt-mobile-favorites span { margin-left: auto; }

.favorites-page { padding: 70px 0 90px; background: #f7f8fa; }
.favorites-page__head { max-width: 720px; margin: 0 auto 35px; text-align: center; }
.favorites-page__eyebrow { color: #e96f3f; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.favorites-page__head h1 { margin: 8px 0 10px; color: #172d45; }
.favorites-page__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.favorite-card { position: relative; overflow: hidden; border: 1px solid rgba(23,45,69,.08); border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(23,45,69,.07); }
.favorite-card__image { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #eef1f4; }
.favorite-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.favorite-card:hover .favorite-card__image img { transform: scale(1.035); }
.favorite-card__body { padding: 20px; }
.favorite-card__body > span { color: #718096; font-size: 13px; }
.favorite-card__body h2 { margin: 6px 0 14px; font-size: 20px; line-height: 1.3; }
.favorite-card__body strong { display: block; margin-bottom: 14px; color: #e96f3f; }
.favorite-card__link { color: #172d45; font-weight: 800; }
.favorites-page__empty { max-width: 620px; margin: 20px auto; padding: 48px 25px; border-radius: 20px; background: #fff; text-align: center; }
.favorites-page__empty > i { color: #e96f3f; font-size: 42px; }
.favorites-page__empty h2 { margin: 18px 0 8px; }

@media (max-width: 991px) {
  .favorites-page { padding: 38px 0 60px; }
  .favorites-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .favorites-page__grid { grid-template-columns: 1fr; }
  .favorite-toggle { width: 38px; height: 38px; }
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--kt-text);
  background: var(--kt-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

img {
  max-width: 100%;
}

a,
button {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tg-header-4-bootom {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(23, 45, 69, .055);
  backdrop-filter: blur(12px);
}

.header-sticky {
  box-shadow: 0 12px 34px rgba(23, 45, 69, .12) !important;
}

.kt-search-toggle {
  border-color: var(--kt-line) !important;
  box-shadow: 0 5px 16px rgba(23, 45, 69, .06);
}

.kt-search-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--kt-shadow-sm);
}

.home-slider {
  position: relative;
  overflow: hidden;
  background: var(--kt-navy);
}

.home-slider::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(12, 27, 42, .18));
}

.home-slider .glide__slide {
  overflow: hidden;
}

.home-slider .glide__slide img {
  transition: transform 7s ease;
}

.home-slider .glide__slide--active img {
  transform: scale(1.025);
}

.home-slider .glide__arrow {
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .4) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .88) !important;
  color: var(--kt-navy) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .16) !important;
  font-size: 28px;
}

.home-slider .glide__arrow:hover {
  background: #fff !important;
  transform: translateY(-50%) scale(1.05);
}

.home-intro {
  position: relative;
  z-index: 4;
  padding: 0 0 48px;
  background: linear-gradient(180deg, #fff 0%, var(--kt-page) 100%);
}

.home-intro-panel {
  position: relative;
  margin-top: -34px;
  padding: 34px 38px;
  border: 1px solid var(--kt-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--kt-shadow-md);
}

.home-intro-copy {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--kt-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-intro h1 {
  margin: 0 0 12px;
  color: var(--kt-navy);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.home-intro-copy p {
  margin: 0;
  color: var(--kt-muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-quick-link {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 15px 17px;
  border: 1px solid var(--kt-line);
  border-radius: 16px;
  background: #fff;
  color: var(--kt-navy);
  font-weight: 700;
}

.home-quick-link i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--kt-cream);
  color: var(--kt-orange);
  font-size: 18px;
}

.home-quick-link:hover {
  color: var(--kt-orange-dark);
  transform: translateY(-3px);
  box-shadow: var(--kt-shadow-sm);
}

.home-section,
.tg-home-featured,
.home-2026,
.tg-foods-area {
  position: relative;
}

.home-section:nth-of-type(even),
.tg-home-featured:nth-of-type(even) {
  background: #fff;
}

.home-section .tg-section-title,
.tg-home-featured .tg-section-title,
.home-2026 h2,
.tg-foods-area h2 {
  color: var(--kt-navy);
  letter-spacing: -.025em !important;
}

.tg-home-featured .tg-listing-card-item,
.home-2026 .tg-listing-card-item,
.tg-listing-card-item {
  border: 1px solid var(--kt-line) !important;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: var(--kt-shadow-sm) !important;
  transition: transform .24s ease, box-shadow .24s ease !important;
}

.tg-home-featured .tg-listing-card-item:hover,
.home-2026 .tg-listing-card-item:hover,
.tg-listing-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--kt-shadow-md) !important;
}

.tg-listing-card-thumb {
  overflow: hidden;
}

.tg-listing-card-thumb img {
  transition: transform .45s ease;
}

.tg-listing-card-item:hover .tg-listing-card-thumb img {
  transform: scale(1.035);
}

.tg-listing-avai-btn,
.tg-btn {
  border-radius: 12px !important;
}

.tg-foods-wrap .tg-foods-thumb {
  border-radius: 18px;
  box-shadow: var(--kt-shadow-sm);
}

.tg-foods-wrap .tg-foods-thumb img {
  transition: transform .4s ease;
}

.tg-foods-wrap:hover .tg-foods-thumb img {
  transform: scale(1.045);
}

.home-banner .box {
  border-color: var(--kt-line) !important;
  border-radius: 22px !important;
  box-shadow: var(--kt-shadow-md) !important;
}

.tg-breadcrumb-area {
  background-position: center;
}

.tg-breadcrumb-title {
  letter-spacing: -.025em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

input,
select,
textarea {
  border-radius: 11px;
}

footer .tg-footer-area,
.tg-footer-area {
  background-color: var(--kt-navy);
}

.tg-footer-widget a:hover {
  color: #fff !important;
  transform: translateX(2px);
}

@media (max-width: 1199px) {
  .home-slider .glide__arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 991px) {
  .home-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-intro-panel {
    padding: 30px 24px;
  }
}

@media (max-width: 575px) {
  .home-intro {
    padding-bottom: 28px;
  }

  .home-intro-panel {
    margin-top: -18px;
    padding: 26px 16px 18px;
    border-radius: 18px;
  }

  .home-intro-copy p {
    font-size: 15px;
  }

  .home-quick-links {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .home-quick-link {
    min-height: 94px;
    padding: 13px 8px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 13px;
  }

  .home-quick-link i {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .home-slider .glide__arrow {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
