:root {
  --primary-color: #db0007;
  --secondary-color: #1e293b;
  --accent-color: #db0007;
  --background-color: #f1f3f6;
  --surface-color: #f8fafc;
  --text-primary: #494040;
  --text-secondary: #000000;
  --text-muted: #000000;
  --border-color: #e2e8f0;
  --card-background: #fff;
  --header-background: #ffffff;
  --footer-background: #f1f3f6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --overlay-color: rgba(0, 0, 0, 0.6);
}
[data-theme="dark"] {
  --primary-color: #fd0000;
  --secondary-color: #f1f5f9;
  --accent-color: #ff0015;
  --background-color: #1d1b1b;
  --surface-color: #000000;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #000000;
  --card-background: #1c1816;
  --header-background: #1d1b1b;
  --footer-background: #1d1b1b;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --overlay-color: rgba(0, 0, 0, 0.8);
}
.text-muted {
  color: var(--text-muted) !important;
}
* {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
body {
  font-family: Poppins, sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}
@media (max-width: 767px) {
  html {
    scroll-behavior: smooth;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
  }
}
.announcement-bar {
  background: var(--primary-color);
  color: #fff;
  padding: 8px 0;
  text-align: center;
  font-size: 0.9rem;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 5px var(--shadow-color);
  height: 40px;
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.theme-toggle:hover {
  background-color: var(--surface-color);
  transform: translateY(-2px);
}
.navbar {
  background: var(--header-background) !important;
  box-shadow: 0 2px 15px var(--shadow-color);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  top: 40px;
}
.navbar-logo {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}
.nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  margin: 0 0.8rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}
.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}
.order-btn {
  background: var(--primary-color);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.6rem 1.6rem !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}
.order-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--primary-color);
}
.cart-badge {
  position: relative;
  top: -8px;
  right: -3px;
  font-size: 0.7rem;
  padding: 3px 6px;
  min-width: 18px;
  line-height: 1;
  display: none;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
}
.mobile-logo-header {
  position: static;
  top: 40px;
  margin-bottom: 0;
  width: 100%;
  background: var(--header-background);
  z-index: 1030;
  box-shadow: 0 2px 10px var(--shadow-color);
}
.mobile-logo-header .container {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile-logo {
  height: 70px;
  width: auto;
  max-width: min(220px, 80vw);
  object-fit: contain;
  transition: transform 0.3s ease;
}
.mobile-logo-header .mobile-logo {
  display: block !important;
  width: min(220px, 72vw) !important;
  height: 70px !important;
  max-width: 72vw !important;
  max-height: 70px !important;
  object-fit: contain !important;
}
.mobile-logo:hover {
  transform: scale(1.05);
}
.hero {
  background:
    linear-gradient(var(--overlay-color), var(--overlay-color)),
    url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizPs8FIAV1tjdjXmONdhw7hw6C9V1-rMQ4QfrOgbOF2VAANzdIWOrw6BxrfSI6rnRaiW0xcW0MXjQfJMPwUuXkUCvt3QshqHlYS2EHYWUGF5oeZB0FRKbs4RCaXZF2mfW1cKs3h_7Kxd7szL5gWigT7_ZNU7qaIn_-mPklyHJNKCrCHCoRf8w9ZMf7aSVC/s16000/hero%20image.jpeg);
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000004d;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto 2rem;
  animation: fadeInUp 1s ease;
  color: #fff;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  padding: 4rem 0;
}
#menu {
  position: relative;
  overflow: hidden;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 15px;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}
#menu .section-title {
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding: 0.35rem 1.4rem 1rem;
  color: #1c1816;
  text-transform: uppercase;
  letter-spacing: 0;
}
[data-theme="dark"] #menu .section-title {
  color: var(--text-primary);
}
#menu .section-title:before {
  content: "Fresh from Timmys";
  display: block;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.menu-card {
  background: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: center;
  padding: 0.85rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px var(--shadow-color);
}
[data-theme="dark"] .menu-card,
[data-theme="dark"] .grid-item {
  background: var(--card-background);
  border-color: var(--border-color);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .menu-card img,
[data-theme="dark"] .grid-item img {
  background-color: transparent;
  background-image: url("/Upload/items-Background-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}
.menu-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.menu-card:hover:before {
  transform: scaleX(1);
}
.menu-card > * {
  position: relative;
  z-index: 2;
}
.menu-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 0.8rem;
  padding: clamp(12px, 1.2vw, 18px);
  background-color: transparent;
  background-image: url("/Upload/items-Background-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 22px var(--shadow-color);
  transition: transform 0.5s ease;
  cursor: zoom-in;
  position: relative;
  z-index: 1;
}
.menu-card img:hover {
  transform: scale(1.05);
}
.menu-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-grow: 1;
}
.menu-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.menu-price {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 5;
  box-shadow: 0 4px 8px var(--shadow-color);
}
.variant-dropdown-container {
  margin: 0.5rem 1rem;
  position: relative;
}
.variant-select {
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  padding: 10px 40px 10px 15px;
  font-size: 0.9rem;
  width: 100%;
  background-color: var(--card-background);
  color: var(--text-primary);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c2410c' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12L8 12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}
.variant-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem #ea580c40;
  outline: none;
}
.dual-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}
.btn-primary,
.btn-order-now {
  border-radius: 50px !important;
  padding: 0.7rem 1rem !important;
  font-weight: 600 !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--primary-color);
}
.btn-order-now {
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #fff !important;
}
.btn-order-now:hover {
  background: #c2410c !important;
  border-color: #c2410c !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #ea580c4d;
}
.menu-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 0;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .menu-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid-item {
  background: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: center;
  padding: 0.85rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px var(--shadow-color);
}
.grid-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 1rem;
  padding: clamp(12px, 1.2vw, 18px);
  background-color: transparent;
  background-image: url("/Upload/items-Background-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 22px var(--shadow-color);
  transition: transform 0.5s ease;
}
.grid-item img:hover {
  transform: scale(1.05);
}
.grid-item h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-grow: 1;
}
.grid-item .item-price {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000e6;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.show {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  display: block;
  margin: auto;
  border-radius: 5px;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.show .lightbox-content {
  transform: scale(1);
}
.lightbox-close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.lightbox-close-btn:hover {
  color: var(--accent-color);
}
.deals-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding: 0;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .deals-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.deal-card {
  background: var(--card-background);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px var(--shadow-color);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--shadow-color);
}
.deal-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}
.deal-card img:hover {
  transform: scale(1.05);
}
.deal-card h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-grow: 1;
}
.deal-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.deal-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 5;
  box-shadow: 0 4px 8px var(--shadow-color);
}
.reviews-container {
  position: relative;
  padding: 0 50px;
}
.reviews-carousel {
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}
.review-card {
  background: var(--card-background);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 0 0 100%;
  margin: 0 10px;
  border: 1px solid var(--border-color);
}
@media (min-width: 992px) {
  .review-card {
    flex: 0 0 calc(31.333% - 20px);
  }
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--shadow-color);
}
.review-card blockquote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
  flex-grow: 1;
  position: relative;
  padding: 0 1.5rem;
}
.review-card blockquote:before,
.review-card blockquote:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}
.review-card blockquote:before {
  top: -0.5rem;
  left: 0;
}
.review-card blockquote:after {
  bottom: -2rem;
  right: 0;
}
.review-card cite {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-top: 0.5rem;
}
.stars i {
  color: var(--accent-color);
  margin: 0 2px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  background: var(--accent-color);
}
.carousel-btn.prev {
  left: 0;
}
.carousel-btn.next {
  right: 0;
}
.features-section {
  background: var(--surface-color);
  color: var(--text-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.features-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23db0007' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
}
.features-section i {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.features-section h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.features-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.site-footer {
  background: var(--footer-background);
  color: var(--text-secondary);
  padding: 4rem 0 1rem;
  font-size: 0.9rem;
  position: relative;
  margin-top: 80px;
}
.footer-brand-section {
  background: var(--card-background);
  color: var(--text-primary);
  padding: 2.5rem;
  border-radius: 15px;
  max-width: 90%;
  width: 900px;
  margin: -80px auto 3rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  position: relative;
  z-index: 10;
  text-align: center;
  transition: all 0.3s ease;
}
.footer-brand-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color);
}
.footer-brand-section .logo-img {
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.footer-brand-section:hover .logo-img {
  transform: scale(1.05);
}
.footer-brand-section .about-text {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}
.site-footer h5 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.site-footer h5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}
.site-footer p,
.site-footer li {
  margin-bottom: 0.6rem;
}
.site-footer ul {
  padding-left: 0;
  list-style: none;
}
.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer a:hover {
  color: var(--text-primary);
  text-decoration: underline;
  padding-left: 5px;
}
.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: underline;
}
.sticky-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: var(--header-background);
  box-shadow: 0 -5px 15px var(--shadow-color);
  z-index: 1000;
  display: none;
  justify-content: space-around;
  align-items: center;
}
.sticky-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 0.7rem;
  text-decoration: none;
  padding: 5px;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  border: none;
  background: none;
  position: relative;
  height: 100%;
  cursor: pointer;
}
.sticky-nav-item i {
  font-size: 1.4rem;
  margin-bottom: 3px;
  transition: all 0.3s ease;
}
.sticky-nav-item.active,
.sticky-nav-item:hover {
  color: var(--primary-color);
}
.sticky-nav-item:hover i {
  transform: translateY(-3px);
}
.sticky-nav-item .cart-badge {
  position: absolute;
  top: 5px;
  right: calc(50% - 22px);
  font-size: 0.65rem;
  padding: 2px 5px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  min-width: 16px;
  height: 16px;
  line-height: 1;
  display: none;
  box-sizing: border-box;
}
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px var(--shadow-color);
  background: var(--card-background);
  color: var(--text-primary);
}
.modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
}
.modal-body {
  padding: 1.5rem;
}
.modal-footer {
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
}
.modal-backdrop.show {
  opacity: 0.6 !important;
  background-color: #000 !important;
}
#cartItems .cart-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#cartItems .cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#cartItems h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.quantity-controls {
  gap: 5px;
}
.quantity-controls button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--surface-color);
  color: var(--text-primary);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background-color 0.2s ease;
}
.quantity-controls button:hover {
  background: var(--border-color);
}
.quantity-controls .btn-danger {
  background: #f8d7da;
  color: #721c24;
}
.quantity-controls .btn-danger:hover {
  background: #f5c6cb;
}
.form-label {
  margin-bottom: 0.3rem !important;
  font-weight: 500;
  font-size: 0.9rem;
}
#checkoutOrderSummary {
  max-height: 150px;
  overflow-y: auto;
}
.form-control {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.form-control:focus {
  background-color: var(--card-background);
  border-color: var(--primary-color);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem #db000740;
}
#pwa-install-popup {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%);
  background: var(--card-background);
  color: var(--text-primary);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-color);
  z-index: 1010;
  max-width: 90%;
  width: 350px;
  text-align: center;
  border: 1px solid var(--border-color);
  animation: slideInUp 0.5s ease;
}
#pwa-install-popup p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
#pwa-install-popup strong {
  color: var(--accent-color);
}
#install-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}
#install-btn:hover {
  background: #e03a4a;
}
#close-install-btn {
  background: var(--surface-color);
  color: var(--text-primary);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#close-install-btn:hover {
  background: var(--border-color);
}
.toast-notification {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%);
  padding: 12px 20px;
  border-radius: 5px;
  color: #fff;
  z-index: 10000;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.4s ease;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  animation: slideInUp 0.5s ease;
}
.toast-notification.show {
  opacity: 1;
  bottom: 100px;
}
.toast-notification.success {
  background-color: #16a34a;
}
.toast-notification.error {
  background-color: #dc3545;
}
.toast-notification.info {
  background-color: #2f3542e6;
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  .navbar {
    display: none !important;
  }
  .sticky-bottom-nav {
    display: flex !important;
  }
  body {
    padding-bottom: 65px !important;
  }
  .hero {
    min-height: calc(60vh - 40px);
  }
  section {
    padding: 2.5rem 0;
  }
  .section-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  .footer-brand-section {
    margin-top: -60px;
    padding: 1.5rem;
    width: 90%;
  }
  .site-footer {
    margin-top: 60px;
  }
  .menu-grid-container,
  .deals-grid-container {
    gap: 0.8rem;
  }
  .grid-item {
    padding: 0rem;
  }
  .grid-item h3 {
    font-size: 1.1rem;
  }
  .btn-grid-add,
  .btn-grid-order {
    font-size: 0.85rem !important;
    padding: 8px 14px !important;
  }
}
@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .menu-card .btn-primary,
  .menu-card .btn-order-now,
  .deal-card .btn-primary,
  .deal-card .btn-order-now {
    padding: 0.6rem 0.8rem !important;
    font-size: 0.85rem !important;
  }
  .menu-card .dual-buttons {
    gap: 8px;
    margin-left: 0.6rem;
    margin-right: 0.6rem;
    margin-bottom: 0.5rem;
  }
  .menu-card h4 {
    font-size: 1.1rem;
  }
  .menu-price,
  .deal-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.animate-fade-down {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.animate-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.animate-slide-left {
  opacity: 0;
  transform: translate(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.animate-slide-right {
  opacity: 0;
  transform: translate(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.animate-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}
.delay-500 {
  transition-delay: 0.5s;
}
.delay-600 {
  transition-delay: 0.6s;
}
.delay-700 {
  transition-delay: 0.7s;
}
.delay-800 {
  transition-delay: 0.8s;
}
#pwa-install-banner {
  display: none;
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  background: var(--card-background);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px var(--shadow-color);
  border-radius: 8px;
  padding: 12px 16px;
  z-index: 9999;
  max-width: 360px;
  font-family: sans-serif;
}
#pwa-install-banner p {
  margin: 0 0 8px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.35;
}
#pwa-install-banner button {
  margin-right: 8px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    opacity 0.12s ease;
}
#pwa-install-banner .install-btn {
  background: var(--accent-color);
  color: var(--accent-contrast, #ffffff);
  box-shadow: 0 6px 18px #0000001f;
}
#pwa-install-banner .install-btn:focus,
#pwa-install-banner .install-btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}
#pwa-install-banner .close-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 5px 10px;
}
#pwa-install-banner .close-btn:focus,
#pwa-install-banner .close-btn:hover {
  background: #ffffff05;
}
#pwa-install-banner button:focus {
  outline: 3px solid rgba(78, 168, 255, 0.18);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  #pwa-install-banner {
    bottom: 20px;
    top: auto;
    left: 50%;
    transform: translate(-50%);
    width: calc(100% - 40px);
    max-width: 520px;
  }
}
@media (min-width: 768px) {
  #pwa-install-banner {
    top: 20px;
  }
}
.pwa-feature-section {
  background: linear-gradient(
    135deg,
    var(--card-background) 0%,
    var(--surface-color) 100%
  );
  color: var(--text-primary);
}
.pwa-card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
  background: var(--card-background) !important;
  color: var(--text-primary);
  box-shadow: 0 12px 24px var(--shadow-color);
}
.pwa-card:hover {
  transform: translateY(-3px);
}
.app-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #ff475714, #ff475700 70%);
  z-index: 0;
}
.app-visual {
  max-width: 280px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 24px var(--shadow-color);
  background: var(--card-background);
  color: var(--text-primary);
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
#install-app-btn {
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  background: var(--accent-color);
  color: var(--accent-contrast, #fff);
}
#install-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #00000038;
}
@media (max-width: 768px) {
  .pwa-card {
    margin: 0 10px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .app-visual {
    max-width: 200px;
    margin-bottom: 1.5rem;
  }
  .feature-item {
    padding: 1rem !important;
  }
}
h4.h6.mb-0.fw-semibold {
  color: #000 !important;
}
