/* ===========================
   Foodies — Premium Warm Theme
   =========================== */

/* ---- Palette ---- */
:root {
  --primary: #d35400; /* burnt orange */
  --secondary: #6e3b16; /* deep cocoa */
  --accent: #f0a04b; /* golden highlight */
  --bg: #fff8f0; /* creamy background */
  --text: #2b1d12; /* dark chocolate */
}

.slct:focus {
  border: none;
  outline: 0;
  box-shadow: none;
  box-shadow: 0px 0px 5px 0px #e6c097;
}
.add-btn {
  background-color: #6e3b16cc;
}
.view-btn {
  background-color: #fff4e5;
}
.add-btn:hover {
  background-color: #6e3b16;
}
.view-btn:hover {
  background-color: #ffe7c7;
}
/* ---- Base ---- */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--text);

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
}

/* ---- Loader ---- */
#app-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loader-logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}
.loader-dots {
  margin-top: 10px;
  display: flex;
  gap: 6px;
}
.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  animation: bounce 1s infinite;
}
.loader-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* ---- Header ---- */
.app-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}
.brand-text {
  font-weight: 700;
  color: var(--text);
}

/* Hamburger (mobile only; hide on md+) */
.hamburger {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  position: relative;
  display: grid;
  place-items: center;
}
.hamburger span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  transform: translateY(-6px);
}
.hamburger span:nth-child(3) {
  transform: translateY(6px);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ---- Offcanvas (mobile menu) ---- */
/* DOM order should be: backdrop FIRST, then panel */
.offcanvas-wrap {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}
.offcanvas-wrap.show {
  display: block;
}
.offcanvas-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: 0.2s;
  z-index: 1;
  pointer-events: auto;
  /* leave panel area uncovered so clicks definitely hit the panel */
  width: calc(100% - min(84%, 360px));
  right: auto;
}
.offcanvas-wrap.show .offcanvas-backdrop {
  opacity: 1;
}

.offcanvas-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84%, 360px);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  padding: 20px;
  transform: translateX(100%);
  transition: 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
  z-index: 2;
  pointer-events: auto;
}
.offcanvas-wrap.show .offcanvas-panel {
  transform: none;
}

/* lock body scroll when open (add/remove via JS) */
body.nav-open {
  overflow: hidden;
}

/* Desktop: never show custom offcanvas */
@media (min-width: 768px) {
  .offcanvas-wrap {
    display: none !important;
  }
}

/* ---- Hero carousel (minimal premium) ---- */
.hero {
  background: var(--bg);
}
.hero .carousel-item {
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 6s ease;
}
.hero .carousel-item.active img {
  transform: scale(1.08);
}
@media (min-width: 768px) {
  .hero .carousel-item {
    height: 260px;
  }
}
@media (min-width: 992px) {
  .hero .carousel-item {
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .hero .carousel-item {
    height: 400px;
  }
}

/* ---- Pills (chips) ---- */
.pills {
  display: flex;
  gap: 0.6rem;
  overflow: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}
.pills::-webkit-scrollbar {
  display: none;
}
.pill {
  background: #fff;
  border: 1px solid #6e3b16;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #111;
  white-space: nowrap;
  transition: 0.2s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.pill i {
  margin-right: 0.35rem;
}
.pill.active,
.pill:hover {
  color: var(--primary);
  background: #fff3e8;
}

/* ---- Section title ---- */
.section-title {
  font-weight: 800;
  color: var(--secondary);
  margin: 18px 0 10px;
  letter-spacing: 1.2px;
  border: none;
  font-family: "Inter";
  font-size: 30px;
  padding: 20px 0px 20px 0px;
}

/* ---- Categories ---- */
.category-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: 0.25s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.category-card:hover {
  transform: translateY(-4px);
}
.category-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
}
.small-muted {
  color: #8c7a70;
  font-size: 0.9rem;
}

/* ---- Product card ---- */
.product-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}
.product-card:hover {
  transform: translateY(-3px);
}
.product-thumb {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.price {
  color: var(--primary);
  font-weight: 800;
}
.old-price {
  text-decoration: line-through;
  color: #8c7a70;
}

/* ---- Buttons ---- */
.btn-success {
  background: var(--secondary);
  border: none;
}
.btn-success:hover {
  background: #5b3312;
}
.btn-outline-secondary {
  color: var(--secondary) !important;
  background: #fff5e6 !important;
  border: none !important;
}
.btn-outline-secondary:hover {
  background: #ffe7c7 !important;
  color: var(--secondary) !important;
}
.btn-outline-success {
  color: var(--primary) !important;
  border: 1px solid var(--accent) !important;
  background: #fff !important;
}
.btn-outline-success:hover {
  background: #fff3e0 !important;
}
.btn-primary {
  background: var(--primary);
  border: none;
}
.btn-primary:hover {
  background: #b84700;
}

/* ---- Reviews ---- */
.review-card {
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fff6ea);
  border: none;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* ---- Services ---- */
.service-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

/* ---- Footer ---- */
.app-footer {
  background: #fff;
  border: none;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.05);
}
.footer-title {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-links li {
  margin-bottom: 0.35rem;
}
.footer-links a {
  color: #5b4a40;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--primary);
}

/* ---- Bottom App Nav (fixed) ---- */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border: none;
  padding: 0.35rem 0.25rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}
.bottom-nav a {
  color: #40342c;
  text-align: center;
  text-decoration: none;
  font-size: 0.8rem;
}
.bottom-nav a i {
  display: block;
  font-size: 1.25rem;
}
.bottom-nav .center-fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: -22px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(211, 84, 0, 0.35);
}

/* ---- Cart badge ---- */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.65rem;
  line-height: 1;
  padding: 3px 6px;
}
.cart-badge.pop {
  transform: scale(1.15);
  transition: transform 0.2s;
}

/* ---- Forms ---- */
.form-control {
  background: #fff;
  border: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}
.form-control:focus {
  border: none;
  outline: none;
  box-shadow: 0 8px 22px rgba(211, 84, 0, 0.15);
}
/* Owl dots & arrows to match theme */
#reviewsOwl .review-card {
  min-height: 110px;
} /* prevents 0-height flashes */
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #e6d5c6;
  opacity: 0.9;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary);
  transform: scale(1.15);
}
.owl-theme .owl-nav [class*="owl-"] {
  background: #fff;
  color: var(--secondary);
  border-radius: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  margin: 0 6px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fff3e0;
  color: var(--primary);
}

/* Fix Owl making avatars full-width */
.owl-carousel .owl-item img.review-avatar {
  width: 64px !important;
  height: 64px !important;
  object-fit: cover;
}

/* Keep review items tidy */
#reviewsOwl .item {
  padding: 4px;
}
#reviewsOwl .review-card {
  display: flex;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 16px;
  min-height: 110px; /* stable height */
}
#reviewsOwl .review-card p {
  margin-bottom: 0;
}
#reviewsOwl strong {
  color: var(--secondary);
}
.owl-nav {
  display: none;
}
/* ---------- Premium Reviews ---------- */
#reviewsOwl .item {
  padding: 6px;
}

.review-card {
  position: relative;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(211, 84, 0, 0.55), rgba(240, 160, 75, 0.35))
      border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 16px 16px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(0) scale(1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

/* soft glass sheen */
.review-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
      120px 60px at -20% -20%,
      rgba(240, 160, 75, 0.12),
      transparent 60%
    ),
    radial-gradient(
      160px 80px at 120% 0%,
      rgba(211, 84, 0, 0.12),
      transparent 60%
    );
  pointer-events: none;
}

/* floating big quote */
.review-quote {
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 84px;
  line-height: 0.7;
  color: rgba(211, 84, 0, 0.08);
  font-weight: 900;
  content: "";
}
.review-quote::before {
  content: "“";
}

/* hover micro-interaction */
.review-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 38px rgba(211, 84, 0, 0.18);
}

/* avatar fix against Owl's img rule */
.owl-carousel .owl-item img.review-avatar {
  width: 56px !important;
  height: 56px !important;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* name + stars */
.review-name {
  color: var(--secondary);
  display: block;
  line-height: 1.1;
}
.review-stars {
  color: #ffb703;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* text */
.review-text {
  color: #4e4138;
  font-size: 0.95rem;
}

/* little “verified” chip */
.review-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(240, 160, 75, 0.25),
    rgba(211, 84, 0, 0.25)
  );
  color: var(--secondary);
}

/* Owl UI theming */
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #e6d5c6;
  opacity: 0.9;
  transition: transform 0.2s;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary);
  transform: scale(1.2);
}
.owl-theme .owl-nav [class*="owl-"] {
  background: #fff;
  color: var(--secondary);
  border-radius: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  margin: 0 6px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fff3e0;
  color: var(--primary);
}

/* entrance animation per slide */
.review-appear {
  animation: reviewIn 0.5s ease both;
}
@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* === Premium Service Cards (Clean Version) === */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #f0e6dc; /* light warm border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Icon styling */
.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffebe0, #fff6f0); /* soft orange chip */
  font-size: 1.5rem;
  color: #b3541e; /* warm brown-orange */
  margin-bottom: 10px;
}

/* Title text */
.service-card .fw-semibold {
  color: #4a2e1f;
  font-weight: 600;
  margin-top: 8px;
}

/* Description text */
.service-card .small-muted {
  color: #7a6a5a;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(179, 84, 30, 0.15);
  border-color: #e2c4b3; /* warm highlight border */
}

/* ===== Premium Header Glass ===== */
.app-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}

/* subtle bottom hairline with gradient */
.app-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(211, 84, 0, 0.28),
    transparent
  );
  pointer-events: none;
}

/* brand */
.brand-text {
  color: var(--text);
  letter-spacing: 0.2px;
}

/* nav underline animation */
.main-nav .nav-link {
  position: relative;
  padding: 0.2rem 0;
  color: #4a3a32;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.95;
}
.main-nav .nav-link:hover {
  color: var(--secondary);
}
.main-nav .nav-link:hover::after {
  transform: scaleX(0.9);
} /* hover preview */

.main-nav .nav-link.active {
  color: var(--secondary);
  font-weight: 600;
}
.main-nav .nav-link.active::after {
  transform: scaleX(1); /* full underline for active page */
}

/* hamburger polish */
.hamburger {
  border-radius: 10px;
  transition: background 0.2s ease;
}
.hamburger:hover {
  background: #fff4ea;
}
.hamburger span {
  background: #2b1d12;
}

/* offcanvas header strip */
.offcanvas-panel {
  border-left: 1px solid #f0e6dc;
}
.offcanvas-panel .btn-close {
  filter: none;
}
.list-group-item {
  border: none;
  padding: 0.75rem 0;
}
.list-group-item i {
  color: var(--secondary);
}

/* cart badge refinement */
.cart-badge {
  background: var(--primary);
  box-shadow: 0 0 0 2px #fff;
}

/* Bottom nav: show active with underline + color */
.bottom-nav a {
  position: relative;
}
.bottom-nav a.active,
.bottom-nav a:focus {
  color: var(--primary);
}
.bottom-nav a.active::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -2px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Mobile offcanvas – clean, reliable */
.offcanvas-wrap {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}
.offcanvas-wrap.show {
  display: block;
}

/* Full-screen backdrop */
.offcanvas-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: auto; /* clickable to close */
}
.offcanvas-wrap.show .offcanvas-backdrop {
  opacity: 1;
}

/* Slide-in panel */
.offcanvas-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px); /* nice width on phones */
  max-width: 100vw;
  height: 100dvh; /* stable on iOS/Android */
  background: #fff;
  border-left: 1px solid #f0e6dc;
  box-shadow: -10px 0 28px rgba(0, 0, 0, 0.12);
  padding: 20px 16px calc(16px + env(safe-area-inset-bottom, 0));
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.6, 0.2, 1);
  z-index: 2;
  pointer-events: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.offcanvas-wrap.show .offcanvas-panel {
  transform: translateX(0);
}

/* Lock page & hide background controls when menu open */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}
body.nav-open .carousel-control-prev,
body.nav-open .carousel-control-next {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* On ultra-narrow devices, let panel take full width */
@media (max-width: 360px) {
  .offcanvas-panel {
    width: 100vw;
  }
}
/* ===== NAV LINK PREMIUM BORDER ===== */
.nav-link,
.offcanvas-panel .list-group-item {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
  background: none;
}

/* Create the bottom border using ::after */
.nav-link::after,
.offcanvas-panel .list-group-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(
    90deg,
    #ff7e29,
    #d43f00
  ); /* Orange → Reddish Brown */
  transition: width 0.3s ease;
}

/* Hover & focus state */
.nav-link:hover::after,
.nav-link:focus::after,
.offcanvas-panel .list-group-item:hover::after,
.offcanvas-panel .list-group-item:focus::after {
  width: 100%;
}

/* Active page state */
.nav-link.active::after,
.offcanvas-panel .list-group-item.active::after {
  width: 100%;
}

/* Active link color */
.nav-link.active,
.offcanvas-panel .list-group-item.active {
  font-weight: 600;
}
.nav-link.active,
.offcanvas-panel .list-group-item.active {
  font-weight: 600;
  color: black;
  background: none;
} /* ===== FOOTER ===== */

/* Equal width for each section on large screens */
.app-footer .row > div {
  display: flex;
  flex-direction: column;
}

/* Footer titles */
.footer-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Footer links */
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  text-decoration: none;
  color: inherit;
}
.footer-links a:hover {
  color: #d43f00;
}

/* Footer bottom styling */
.footer-bottom {
  gap: 0.5rem;
}

/* Mobile: stack and center */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-bottom span {
    display: block;
  }
}
/* Sticky header fix: don't cap page height */
html,
body {
  height: auto !important; /* remove the fixed 100% height */
}
body {
  min-height: 100%; /* optional; ensures full-page background */
}

/* keep sticky header */
.app-header {
  position: sticky;
  top: 0;
  z-index: 1200;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

/* ===== HERO (Owl) ===== */
.hero-owl .owl-stage-outer {
  border-radius: 24px;
  overflow: hidden; /* clip edges during slide */
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.hero-owl .owl-stage {
  display: flex;
  will-change: transform;
}

.hero-owl .owl-item {
  margin: 0 !important;
  padding: 0 !important;
}
.srch {
  border: 1px solid #6e3b16;
}

.hero-owl .item img {
  display: block;
  width: 101.5%; /* overscan to hide seam */
  margin-left: -0.75%;
  height: clamp(220px, 32vw, 460px); /* responsive height */
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.hero-owl .owl-item.active .item img {
  transform: scale(1.06);
}

/* Hero dots/arrows – NAMESPACED so reviews CSS is untouched */
.hero-owl.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #e6d5c6;
  opacity: 0.9;
  transition: transform 0.2s;
}
.hero-owl.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary);
  transform: scale(1.2);
}
.hero-owl.owl-theme .owl-nav [class*="owl-"] {
  background: #fff;
  color: var(--secondary);
  border-radius: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  margin: 0 6px;
}
.hero-owl.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fff3e0;
  color: var(--primary);
}
/* Ensure quantity input is readable on all screens */
.cart-qty {
  min-width: 48px; /* enough for 2–3 digits */
  text-align: center;
}

/* Optional: make +/- buttons stay visible */
.input-group .btn {
  flex: 0 0 auto;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; /* makes main take up available space */
}
.video-hero {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 29%;
  width: 100%;
  height: 107%;
  /* object-fit: cover; */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(186 149 58 / 59%), rgb(22 21 19 / 20%));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #6e3b16;
}
.tt {
  color: #6e3b16 !important;
}
.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.section-title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  text-align: center !important;
  text-transform: capitalize !important;
}

.hero-text p {
  font-size: 1rem;
  opacity: 0.85;
}

.hero-breadcrumb {
  margin-top: 10px;
  font-size: 0.9rem;
}

.hero-breadcrumb a {
  color: #ffcc99;
  text-decoration: none;
}

.hero-breadcrumb span {
  color: #ddd;
}

@media (max-width: 768px) {
  .video-hero {
    height: 180px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
}

/* Inputs: clean + modern */
.input-flat {
  border-radius: 14px;
  border-color: #e9e9e9;
}
.input-flat:focus {
  border-color: #d6d6d6;
  box-shadow: 0 0 0 0.25rem rgba(219, 125, 49, 0.12);
}

/* Subtle card shadow */
.shadow-sm {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

/* Glass panel over the map */
.contact-glass {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: auto;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 340px;
}
@media (max-width: 991.98px) {
  .contact-glass {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }
}
/* Glass effect for form card */
.glass-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.55);
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: none;
}

/* Inputs clean + modern */
.input-flat {
  border-radius: 14px;
  border-color: #e9e9e9;
  background-color: rgba(255, 255, 255, 0.8);
}
.input-flat:focus {
  border-color: #d6d6d6;
  box-shadow: 0 0 0 0.25rem rgba(219, 125, 49, 0.12);
}

/* Map glass info */
.contact-glass {
  position: absolute;
  right: 16px;
  bottom: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.55);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 340px;
}
@media (max-width: 991.98px) {
  .contact-glass {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }
}

.glass-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pill-input {
  border: 1.5px solid rgba(219, 125, 49, 0.45);
  background: transparent;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.pill-input:focus {
  border-color: var(--brand, #db7d31);
  box-shadow: 0 0 0 0.2rem rgba(219, 125, 49, 0.15);
  background: rgba(255, 255, 255, 0.35);
}
.eye {
  position: absolute !important;
  top: 50% !important;
  right: 1.75rem !important;
}
.toggle-eye {
  position: absolute;
  right: 1.8rem !important;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
/* keep icon centered on the input, unaffected by feedback text */
.input-wrap {
  position: relative;
}
.toggle-eye {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

/* show feedback under the input without changing input height */
.field-feedback {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  white-space: nowrap;
}

/* Optional: widen pill inputs slightly on small screens */
@media (max-width: 420px) {
  .pill-input {
    padding-left: 1.25rem;
    padding-right: 2.25rem;
  }
  .heroCarousel {
    height: 200px !important;
  }
  .ctg-pls {
    justify-content: left !important;
  }
  .section-title {
    font-family: "Quicksand", sans-serif !important;
    font-weight: 500;
    font-style: normal;
    font-size: 35px;
    text-align: center !important;
    text-transform: capitalize !important;
  }
  .map {
    height: 350px !important;
  }
}
@media (max-width: 1350px) {
  .close-btn {
    top: 10px !important;
  }
}

.loader-overlay.is-hidden {
  pointer-events: none;
}
