:root {
  --primary: #5D4037;
  --secondary: #C8A55A;
  --hovered: #B88A2F;
  --dark: #1E1B1B;
  --green: #2d6a4f;
  --cream: #fff8f0;
  --cream2: #fef0dc;
  --light: #f9f5f0;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: #444;
  background: var(--light);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", serif;
  color: var(--dark);
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.bg-primary {
  background: var(--primary) !important;
}
.bg-secondary {
  background: var(--secondary) !important;
}
/* ===================== TOP BAR ===================== */
#topbar {
  background: #111;
  padding: 8px 0;
  font-size: 0.82rem;
}
#topbar span {
  color: #aaa;
  margin-right: 16px;
}
#topbar span i {
  color: var(--secondary);
  margin-right: 5px;
}
#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}
#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}
.ttag {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===================== NAVBAR ===================== */
#nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.35);
}
.bname {
  font-family: "Poppins", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}
.bname span {
  color: var(--primary);
}
.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
}
.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 400;
  color: #333 !important;
  padding: 26px 13px !important;
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}
/* FIX 1 â€” Search btn in navbar */
#navSearchBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
#navSearchBtn:hover {
  background: rgba(232, 40, 26, 0.08);
  color: var(--primary);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.3);
  margin-left: 6px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 40, 26, 0.4);
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0;
}
.slbl {
  font-family: "Poppins", cursive;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stitle {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}
.stitle span {
  color: var(--secondary);
}
.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
}
.sline.lft {
  margin-left: 0;
}
.sdesc {
  color: #1E1B1BCC;
  font-size: 18px;
  line-height: 1.6;
}
.btn-red {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 40, 26, 0.45);
  color: #fff;
}

/* ===================== HERO ===================== */
#hero {
  background: url("../img/banner-img.jpg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Poppins", serif;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
}
.hs {
  position: absolute;
  border-radius: 50%;
}
.hs1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 40, 26, 0.07), transparent 70%);
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}
.hs2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(246, 166, 35, 0.09),
    transparent 70%
  );
  bottom: -50px;
  left: 8%;
  animation: fsh 10s ease-in-out infinite reverse;
}
@keyframes fsh {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-28px);
  }
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
}
.hbadge .hbi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}
.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
}
.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.htitle .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(232, 40, 26, 0.14);
  border-radius: 4px;
  z-index: -1;
}
.hdesc {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 30px;
}
/* FIX 2 â€” Video play button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-play .pico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}
.btn-play:hover .pico {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.btn-play:hover {
  color: var(--primary);
}
.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hstat .snum {
  font-family: "Poppins", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hstat .snum em {
  color: var(--primary);
  font-style: normal;
}
.hstat small {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sdiv {
  width: 1px;
  background: #ddd;
  height: 38px;
  align-self: center;
}
.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff8f0, #ffe5c8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(232, 40, 26, 0.14);
}
.hcircle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.fcard {
  position: absolute;
  background: #fff;
  border-radius: 11px;
  padding: 10px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 9px;
}
.fcard.fc1 {
  top: 55px;
  left: -15px;
  animation: fltc 4s ease-in-out infinite;
}
.fcard.fc2 {
  bottom: 75px;
  right: -25px;
  animation: fltc 4s ease-in-out infinite 1.5s;
}
.fcard.fc3 {
  top: 38%;
  right: -45px;
  animation: fltc 4s ease-in-out infinite 0.8s;
}
@keyframes fltc {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fcoi {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.fcoi.r {
  background: rgba(232, 40, 26, 0.11);
  color: var(--primary);
}
.fcoi.y {
  background: rgba(246, 166, 35, 0.14);
  color: var(--secondary);
}
.fcoi.g {
  background: rgba(45, 106, 79, 0.11);
  color: var(--green);
}
.fcnum {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.fcsm {
  font-size: 0.66rem;
  color: #999;
}

/* ===================== MARQUEE ===================== */
.mqsec {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
}
.mqtrack {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  animation: mqrun 22s linear infinite;
}
.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}
.mqitem i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.55rem;
}
@keyframes mqrun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== CATEGORY ===================== */
#category {
  background: var(--cream);
}
.catcard {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}
.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(232, 40, 26, 0.14);
  border-color: var(--primary);
}
.catimg {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  transition: 0.4s;
}
.catcard:hover .catimg {
  transform: scale(1.1) rotate(-4deg);
}
.catnm {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.catct {
  font-size: 0.73rem;
  color: #bbb;
}

/* ===================== ABOUT ===================== */
#about{
  background: #F4F0EA;
}
.astack {
  position: relative;
}
.about2{
  background: url("../img/abt-bg.webp");
  position: relative;
}
.about2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f1e9d5eb;
}

.amain img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.asm {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}
.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aexp {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.4);
}
.aexp .anum {
  font-family: "Poppins", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.aexp small {
  font-size: 0.7rem;
  opacity: 0.9;
}
.fti {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}
.ftico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: 0.3s;
}
.ftico.r {
  background: rgba(232, 40, 26, 0.1);
  color: var(--primary);
}
.ftico.y {
  background: rgba(246, 166, 35, 0.11);
  color: var(--secondary);
}
.ftico.g {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}
.fti:hover .ftico {
  transform: scale(1.1);
}
.fti h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
}
.fti p {
  font-size: 0.8rem;
  color: #1e1b1bad;
  margin: 0;
  line-height: 1.6;
}

/* ===================== MENU ===================== */
/* #menu {
  background: #fff;
} */
/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid var(--hovered);
  background: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
}
.filtbtn.active,
.filtbtn:hover {
  background: var(--secondary);
  border-color: transparent;
  color: var(--dark);
  box-shadow: 0 5px 18px rgba(232, 40, 26, 0.24);
}
.mwrap {
  transition: 0.35s;
}
.mwrap.gone {
  display: none !important;
}
.mcard {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
  border: 1px solid var(--secondary);
  box-shadow: 0px 7px 29px 0px #64646F33;
  padding: 25px;

}
.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}
.mimg {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  border-radius: 18px;
}
/* .mcard:hover .mimg img {
  transform: scale(1.09);
} */
.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}
.mbdg.new {
  background: var(--green);
}
.mbdg.hot {
  background: var(--secondary);
  color: var(--dark);
}
/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}
.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}
.mbody {
  padding-top: 18px;
}
.mcat {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary);
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.mtit {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary);
}
.mdesc {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 13px;
  line-height: 1.5;
}
.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mprice {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Poppins", serif;
}
.mprice small {
      font-size: 14px;
    font-weight: 600;
    color: #9b9b9b;
    text-decoration: line-through;
    margin-left: 5px;
}
.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}
/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(232, 40, 26, 0.28);
}
.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== CART SIDEBAR ===================== */
.cart-sidebar-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cart-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 14, 10, 0.48);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1040;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 470px);
  height: 100vh;
  background: #f8f1e7;
  box-shadow: -16px 0 40px rgba(48, 31, 18, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}
.cart-sidebar-toggle:checked ~ .cart-sidebar {
  transform: translateX(0);
}
.cart-sidebar-toggle:checked ~ .cart-sidebar-backdrop {
  opacity: 1;
  visibility: visible;
}
.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, #6b4334, #4d2c22);
}
.cart-sidebar__title {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-sidebar__title i {
  color: var(--secondary);
  font-size: 1.25rem;
}
.cart-sidebar__close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  margin: 0;
}
.cart-sidebar__close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}
.cart-sidebar__body {
  flex: 1;
  padding: 24px 28px;
  overflow-y: auto;
}
.cart-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-sidebar__empty {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(30, 27, 27, 0.62);
  font-size: 1rem;
  line-height: 1.7;
  padding: 40px 12px;
}
.cart-sidebar__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9efd9 0%, #f5ead5 100%);
  border: 1px solid rgba(214, 167, 74, 0.45);
  box-shadow: 0 8px 24px rgba(81, 52, 34, 0.1);
}
.cart-sidebar__thumb {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
}
.cart-sidebar__meta {
  min-width: 0;
}
.cart-sidebar__name {
  margin: 0 0 2px;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
}
.cart-sidebar__price {
  margin: 0;
  color: rgba(30, 27, 27, 0.72);
  font-size: 0.95rem;
}
.cart-sidebar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-sidebar__qty-btn,
.cart-sidebar__remove {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #6f4b3f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cart-sidebar__qty-btn:hover,
.cart-sidebar__remove:hover {
  transform: translateY(-1px);
  background: #5b392d;
}
.cart-sidebar__qty {
  min-width: 14px;
  text-align: center;
  color: var(--dark);
  font-weight: 700;
}
.cart-sidebar__footer {
  padding: 18px 28px 28px;
  background: #fff;
  border-top: 1px solid rgba(111, 75, 63, 0.16);
}
.cart-sidebar__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.cart-sidebar__total span {
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
}
.cart-sidebar__total strong {
  color: var(--secondary);
  font-size: 2rem;
  font-weight: 800;
}
.cart-sidebar__checkout {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: #21150d;
  font-size: 1rem;
  font-weight: 800;
}
.cart-sidebar__checkout:hover {
  color: #21150d;
  transform: translateY(-2px);
  background: var(--hovered);
}

/* ===================== CHECKOUT ===================== */
.checkout-section {
  background: linear-gradient(180deg, #fcf7ef 0%, #f7efdf 100%);
  padding: 140px 0 110px;
}
.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.checkout-back-link:hover {
  color: #b98622;
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 356px;
  gap: 20px;
  align-items: start;
}
.checkout-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(123, 84, 58, 0.18);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(66, 42, 22, 0.1);
  overflow: hidden;
}
.checkout-card--form {
  padding: 26px 22px 22px;
}
.checkout-card--summary {
  padding: 26px 0 0;
}
.checkout-card__head {
  padding: 0 22px 18px;
}
.checkout-card--form .checkout-card__head {
  padding-left: 0;
  padding-right: 0;
}
.checkout-card__title {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  color: #5e4338;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-card__title i {
  color: #6c473c;
  font-size: 1.2rem;
}
.checkout-card__text {
  margin: 0;
  color: rgba(30, 27, 27, 0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-form__grid {
  display: grid;
  gap: 14px;
}
.checkout-form__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checkout-field label {
  display: block;
  margin-bottom: 8px;
  color: #34251e;
  font-size: 0.86rem;
  font-weight: 500;
}
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(108, 78, 57, 0.26);
  border-radius: 16px;
  background: #f7f7f7;
  padding: 14px 18px;
  color: #31221a;
  font-size: 0.92rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.checkout-field textarea {
  min-height: 76px;
  resize: vertical;
}
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  border-color: rgba(214, 167, 74, 0.7);
  box-shadow: 0 0 0 4px rgba(214, 167, 74, 0.14);
}
.checkout-field__icon {
  position: relative;
}
.checkout-field__icon input {
  padding-right: 46px;
}
.checkout-field__icon input[type="month"] {
  position: relative;
  z-index: 1;
}
.checkout-field__icon input[type="month"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.checkout-field__icon i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e231d;
  font-size: 0.9rem;
  pointer-events: none;
}
.checkout-payment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.checkout-payment__option {
  cursor: pointer;
}
.checkout-payment__option input {
  display: none;
}
.checkout-payment__option span {
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(108, 78, 57, 0.26);
  background: #f7f7f7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #3a2b23;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}
.checkout-payment__option span i {
  color: #c99634;
}
.checkout-payment__option--active span,
.checkout-payment__option input:checked + span {
  background: #fff4df;
  border-color: rgba(214, 167, 74, 0.88);
  box-shadow: inset 0 0 0 1px rgba(214, 167, 74, 0.2);
}
.checkout-card-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 320px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, margin 0.35s ease;
}
.checkout-form:has(#paymentCash:checked) .checkout-card-fields {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  margin-top: -4px;
  pointer-events: none;
}
.checkout-summary {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.checkout-summary__item {
  margin: 0 22px 14px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(214, 167, 74, 0.42);
  background: linear-gradient(180deg, #f9efd9 0%, #f7eddd 100%);
  box-shadow: 0 10px 22px rgba(89, 59, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.checkout-summary__item strong {
  color: #1f1712;
  font-size: 1.9rem;
  font-weight: 700;
}
.checkout-summary__item-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.checkout-summary__thumb {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}
.checkout-summary__meta h3 {
  margin: 0 0 2px;
  color: #5a4036;
  font-size: 1.08rem;
  font-weight: 700;
}
.checkout-summary__meta p {
  margin: 0;
  color: rgba(30, 27, 27, 0.7);
  font-size: 0.85rem;
}
.checkout-summary__totals {
  margin: 0 22px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #faf4e9 0%, #f7efdf 100%);
}
.checkout-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(30, 27, 27, 0.7);
  font-size: 0.95rem;
  padding: 9px 0;
}
.checkout-summary__row strong {
  color: #1e1b1b;
  font-size: 1rem;
  font-weight: 700;
}
.checkout-summary__row--total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(103, 75, 57, 0.22);
}
.checkout-summary__row--total span {
  color: #111;
  font-size: 1.55rem;
  font-weight: 800;
}
.checkout-summary__row--total strong {
  color: var(--secondary);
  font-size: 2rem;
  font-weight: 800;
}
.checkout-summary__button {
  margin: 16px 22px;
  min-height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: #23170d;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}
.checkout-summary__button:hover {
  color: #23170d;
  transform: translateY(-2px);
  background: var(--hovered);
}
.checkout-summary__trust {
  margin-top: auto;
  padding: 16px 22px 18px;
  border-top: 1px solid rgba(108, 78, 57, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #30231c;
  font-size: 0.96rem;
}
.checkout-summary__trust i {
  color: #d6a74a;
}
.order-success-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.order-success-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(25, 17, 12, 0.48);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1080;
}
.order-success-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1090;
}
.order-success-modal__card {
  width: min(100%, 340px);
  background: #fff;
  border-radius: 34px;
  padding: 22px 22px 28px;
  box-shadow: 0 24px 56px rgba(47, 31, 20, 0.22);
  text-align: center;
  transform: translateY(22px) scale(0.96);
  transition: transform 0.35s ease;
}
.order-success-modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
}
.order-success-modal__title {
  margin: 0 0 6px;
  color: #111;
  font-size: 1.1rem;
  font-weight: 800;
}
.order-success-modal__text {
  margin: 0 0 16px;
  color: rgba(30, 27, 27, 0.7);
  font-size: 0.82rem;
}
.order-success-modal__code {
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbf1de 0%, #f7ecd6 100%);
  color: var(--secondary);
  font-size: 0.98rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.order-success-modal__details {
  text-align: left;
  background: linear-gradient(180deg, #fbf1de 0%, #f8edd8 100%);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.order-success-modal__details p {
  margin: 0 0 4px;
  color: #2b1e17;
  font-size: 0.92rem;
  line-height: 1.55;
}
.order-success-modal__details p:last-child {
  margin-bottom: 0;
}
.order-success-modal__details strong {
  font-weight: 800;
}
.order-success-modal__button {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: #23170d;
  font-size: 0.98rem;
  font-weight: 800;
}
.order-success-modal__button:hover {
  color: #23170d;
  transform: translateY(-2px);
  background: var(--hovered);
}
.order-success-toggle:checked ~ .order-success-backdrop {
  opacity: 1;
  visibility: visible;
}
.order-success-toggle:checked ~ .order-success-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.order-success-toggle:checked ~ .order-success-modal .order-success-modal__card {
  transform: translateY(0) scale(1);
}

/* ===================== CONTACT PAGE ===================== */
.contact-page-section {
  background: linear-gradient(180deg, #f7f0e2 0%, #efe5d3 100%);
  padding: 104px 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.98fr 1fr;
  gap: 0;
  margin-bottom: 100px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(107, 73, 56, 0.08);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 60px rgba(78, 53, 36, 0.16);
}
.contact-page-card {
  padding: 40px 38px;
}
.contact-page-card--info {
  background: #5D4037;
  color: #fff7ed;
}
.contact-page-card--form {
  background: rgba(255, 255, 255, 0.98);
}
.contact-page-card__head {
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}
.contact-page-card--form .contact-page-card__head {
  border-bottom-color: rgba(103, 75, 57, 0.22);
}
.contact-page-card__title {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 2.05rem;
  line-height: 1.15;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-page-card--form .contact-page-card__title {
  color: #6b4a3b;
}
.contact-page-card__title i {
  color: currentColor;
  font-size: 1.35rem;
}
.contact-page-card__text {
  margin: 0;
  color: rgba(255, 244, 234, 0.88);
  font-size: 1.05rem;
  line-height: 1.6;
}
.contact-page-card--form .contact-page-card__text {
  color: rgba(78, 58, 47, 0.8);
}
.contact-page-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-page-info {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 20px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}
.contact-page-info__icon {
  width: 50px;
    min-height: 50px;
    border-radius: 15px;
    background: var(--secondary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    height: 100%;
}
.contact-page-info__body h3 {
  margin: 0 0 6px;
  color: var(--secondary);
  font-size: 1.05rem;
  font-weight: 700;
}
.contact-page-info__body p {
  margin: 0;
  color: rgba(255, 241, 232, 0.8);
  font-size: 0.98rem;
  line-height: 1.6;
}
.contact-page-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page-hours__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.contact-page-hours__row span,
.contact-page-hours__row strong {
  font-size: 0.95rem;
  color: rgba(255, 241, 232, 0.82);
  font-weight: 500;
}
.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-page-form__grid {
  display: grid;
  gap: 16px;
}
.contact-page-form__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-page-field label {
  display: block;
  margin-bottom: 6px;
  color: #231912;
  font-size: 1rem;
  font-weight: 500;
}
.contact-page-field input,
.contact-page-field select,
.contact-page-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(152, 118, 89, 0.45);
  border-radius: 18px;
  background: linear-gradient(180deg, #faf4e7 0%, #f7efde 100%) !important;
  padding: 14px 18px;
  color: #31221a;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-page-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #231912 50%), linear-gradient(135deg, #231912 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(50% - 3px), calc(100% - 18px) calc(50% - 3px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 52px;
}
.contact-page-field textarea {
  min-height: 102px;
  resize: vertical;
}
.contact-page-field input:focus,
.contact-page-field select:focus,
.contact-page-field textarea:focus {
  border-color: rgba(214, 167, 74, 0.7);
  box-shadow: 0 0 0 4px rgba(214, 167, 74, 0.14);
}
.contact-page-button {
  width: 100%;
  min-height: 66px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--secondary);
  color: #23170d;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-page-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 145, 49, 0.24);
  background: var(--hovered);
}
.contact-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  border: 3px solid #5D403780;
  background: #fff;
  box-shadow: 0 20px 46px rgba(66, 42, 22, 0.12);
}
.contact-map-card__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  max-width: 330px;
  padding: 18px 72px 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(58, 40, 27, 0.16);
}
.contact-map-card__badge h3 {
  margin: 0 0 6px;
  color: #3b2b21;
  font-size: 1.7rem;
  font-weight: 600;
}
.contact-map-card__badge p {
  margin: 0;
  color: rgba(59, 43, 33, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}
.contact-map-card__actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
}
.contact-map-card__actions span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f0ec;
  color: #3d5bb4;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(126, 111, 96, 0.14);
}
.contact-map-card__thumb {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: 102px;
  height: 102px;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(54, 37, 24, 0.22);
  background:
    linear-gradient(rgba(78, 49, 28, 0.14), rgba(78, 49, 28, 0.14)),
    url(../img/map.jpg) center / cover no-repeat;
}

.contact-map-card__thumb-pin {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #c52f1f;
  font-size: 1.9rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}
.contact-map-card iframe {
  width: 100%;
  height: 610px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(0.95) brightness(1.03);
}

/* ===================== FRANCHISE PAGE ===================== */
.franchise-page-section {
  background: linear-gradient(180deg, #fbf5eb 0%, #f4ecde 100%);
  padding: 92px 0 110px;
}
.franchise-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(138, 109, 84, 0.34);
  border-radius: 34px;
  box-shadow: 0 18px 44px rgba(73, 48, 31, 0.12);
  padding: 45px 28px 36px;
}
.franchise-card + .franchise-card {
  margin-top: 34px;
}
.franchise-card__intro {
  padding-bottom: 20px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(125, 95, 72, 0.24);
}
.franchise-card__title,
.franchise-form-title {
  margin: 0 0 12px;
  color: #66493d;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.12;
  font-weight: 800;
}
.franchise-card__title span {
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.franchise-form-title {
  font-size: clamp(1.85rem, 3.3vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 12px;
}
.franchise-form-title i {
  color: #6c4a3b;
  font-size: 1.2rem;
}
.franchise-card__copy {
  margin: 0;
  color: rgba(66, 47, 36, 0.8);
  font-size: 18px;
  line-height: 1.75;
}
.franchise-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}
.franchise-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  border: 1px solid rgba(170, 134, 99, 0.4);
  background: linear-gradient(180deg, #fffdfa 0%, #faf4eb 100%);
  padding: 23px;
}
.franchise-benefit__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #6a4638;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.franchise-benefit h3 {
  margin: 0 0 3px;
  color: #68493c;
  font-size: 20px;
  font-weight: 700;
}
.franchise-benefit p {
  margin: 0;
  color: rgba(88, 66, 53, 0.74);
  font-size: 0.95rem;
}
.franchise-investment {
  border-radius: 26px;
  border: 1px solid rgba(172, 138, 104, 0.38);
  background: linear-gradient(180deg, #fffefa 0%, #fbf5ec 100%);
  padding: 22px 20px 10px;
}
.franchise-investment__title {
  margin: 0 0 14px;
  color: #17130f;
  font-size: 1.9rem;
  font-weight: 800;
}
.franchise-investment__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(137, 108, 85, 0.34);
}
.franchise-investment__row:last-child {
  border-bottom: 0;
}
.franchise-investment__row span {
  color: rgba(75, 56, 44, 0.86);
  font-size: 1rem;
}
.franchise-investment__row strong {
  color: #694a3c;
  font-size: 1rem;
  font-weight: 700;
}
.franchise-card--form {
  padding-bottom: 38px;
}
.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.franchise-form__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.franchise-form__section-title {
  margin: 0;
  color: #68493c;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.franchise-form__section-title i {
  color: #6c4a3b;
  font-size: 1.1rem;
}
.franchise-form__grid {
  display: grid;
  gap: 16px;
}
.franchise-form__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.franchise-form__field label {
  display: block;
  margin-bottom: 10px;
  color: #231912;
  font-size: 0.96rem;
  font-weight: 500;
}
.franchise-form__field input,
.franchise-form__field select,
.franchise-form__field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(152, 118, 89, 0.45);
  border-radius: 18px;
  background: linear-gradient(180deg, #faf4e7 0%, #f7efde 100%);
  padding: 16px 18px;
  color: #31221a;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.franchise-form__field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #231912 50%),
    linear-gradient(135deg, #231912 50%, transparent 50%),
    linear-gradient(180deg, #faf4e7 0%, #f7efde 100%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px),
    0 0;
  background-size: 7px 7px, 7px 7px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 52px;
}
.franchise-form__field textarea {
  min-height: 120px;
  resize: vertical;
}
.franchise-form__field input:focus,
.franchise-form__field select:focus,
.franchise-form__field textarea:focus {
  border-color: rgba(214, 167, 74, 0.7);
  box-shadow: 0 0 0 4px rgba(214, 167, 74, 0.14);
}
.franchise-form__actions {
  padding-top: 8px;
}
.franchise-submit-btn {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  background: var(--secondary);
  color: #17130f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.franchise-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 145, 49, 0.24);
  background: var(--hovered);
}
.franchise-form__note {
  margin: 14px 0 0;
  color: rgba(74, 57, 46, 0.76);
  text-align: center;
  font-size: 0.94rem;
}

/* ===================== SPECIAL OFFER ===================== */
#special {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  position: relative;
  overflow: hidden;
}
.spbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 40px 40px;
}
.sptag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.sptitle {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.sptitle span {
  color: var(--secondary);
}
.spdesc {
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0;
  font-size: 0.93rem;
  line-height: 1.8;
}
.cdwrap {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}
.cditem {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  padding: 13px 18px;
  min-width: 72px;
}
.cdnum {
  font-family: "Poppins", serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.cdlbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3px;
  display: block;
}
.spimgw {
  position: relative;
  text-align: center;
}
.spglow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(246, 166, 35, 0.24),
    transparent 70%
  );
}
.spimgw img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 28px 56px rgba(246, 166, 35, 0.28));
  animation: fltimg 5s ease-in-out infinite;
}
@keyframes fltimg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-17px);
  }
}
.sppbdg {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.5);
  animation: plsbdg 2.5s ease-in-out infinite;
}
@keyframes plsbdg {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 34px rgba(232, 40, 26, 0.7);
  }
}
.sppbdg .old {
  font-size: 0.68rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.sppbdg .np {
  font-size: 1.25rem;
  font-weight: 900;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: var(--light);
}
.ggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 215px);
  gap: 13px;
}
.gitem {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gitem:first-child {
  grid-row: span 2;
}
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gitem:hover img {
  transform: scale(1.08);
}
.gover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gitem:hover .gover {
  opacity: 1;
}
.gover span {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}
.gover i {
  color: var(--secondary);
  margin-right: 5px;
}

/* ===================== HISTORY â€” FIX 8 ===================== */
#history {
  background: var(--cream);
}
.timeline {
  position: relative;
  padding: 18px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  top: 0;
  bottom: 0;
}
/* Grid: left-col | dot-col | right-col */
.tli {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  margin-bottom: 50px;
  align-items: start;
}
.tl-left {
  padding-right: 32px;
  text-align: right;
}
.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.tl-right {
  padding-left: 32px;
  text-align: left;
}
/* ODD â†’ show LEFT text, hide RIGHT */
.tli:nth-child(odd) .tl-right {
  visibility: hidden;
}
/* EVEN â†’ hide LEFT, show RIGHT */
.tli:nth-child(even) .tl-left {
  visibility: hidden;
}
.tldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.3);
  flex-shrink: 0;
}
.tlyear {
  font-family: "Dancing Script", cursive;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.tl-left h5,
.tl-right h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Poppins", serif;
  color: var(--dark);
}
.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr;
    gap: 0;
  }
  .tl-left {
    display: none;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px;
    text-align: left;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(even) .tl-left {
    display: none;
  }
  .tli:nth-child(odd) .tl-right {
    visibility: visible !important;
  }
}

/* ===================== CHEFS ===================== */
#chefs {
  background: #fff;
}
.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.chcard:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}
.chimg {
  position: relative;
  overflow: hidden;
  height: 268px;
  background: var(--cream2);
}
.chimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}
.chcard:hover .chimg img {
  transform: scale(1.05);
}
.chsoc {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  transition: 0.4s;
  padding: 10px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.chcard:hover .chsoc {
  bottom: 0;
}
.chsoc a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: 0.3s;
}
.chsoc a:hover {
  background: var(--primary);
}
.chbody {
  padding: 18px;
  text-align: center;
}
.chnm {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.chrole {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.chexp {
  font-size: 0.76rem;
  color: #bbb;
  margin-top: 5px;
}

/* ===================== HOURS ===================== */
#hours {
  background: linear-gradient(135deg, var(--green), #1a4a35);
  position: relative;
  overflow: hidden;
}
.hrsbg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 28px 28px;
}
.hrscard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
}
.hrsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.hrsrow:last-child {
  border: none;
}
.hrsday {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}
.hrstime {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hdot.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}
.hdot.off {
  background: #ff6b6b;
}
.hrscta {
  background: var(--primary);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(232, 40, 26, 0.4);
}
.hrscta h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}
.hrscta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  margin: 9px 0 18px;
}
.btnw {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-block;
  transition: 0.3s;
}
.btnw:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

/* ===================== TESTIMONIALS ===================== */

.testimonial-section{
  background: linear-gradient(rgba(245, 237, 219, 0.92), rgba(245, 237, 219, 0.92)), url(../img/testimonial/bg-img.png) center / cover no-repeat;
}
.tesSwiper {
  padding: 8px 4px 0px;
}
.tesSwiper .swiper-slide {
  height: auto;
}
.tescard {
  min-height: 348px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(223, 172, 80, 0.72);
  border-radius: 34px;
  padding: 34px 30px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(112, 80, 45, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tescard:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(112, 80, 45, 0.14);
}
.tesq {
  color: #744d42;
  font-size: 2.9rem;
  line-height: 1;
  margin-bottom: 26px;
}
.tess {
  color: var(--secondary);
  font-size: 1.55rem;
  letter-spacing: 5px;
  margin-bottom: 18px;
}
.testxt {
  font-size: 1rem;
  color: #241f1d;
  line-height: 1.78;
  margin-bottom: 28px;
  font-style: italic;
}
.tesauth {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tesauth img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0ad43;
  padding: 2px;
  background: #fff6ea;
}
.tesnm {
  font-weight: 700;
  font-size: 1.06rem;
  color: #684d43;
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
}
.tesrl {
  font-size: 0.86rem;
  color: #675f58;
  font-style: italic;
}
.tes-pagination.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px !important;
}
.tes-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  margin: 0 !important;
  border-radius: 7px;
  background: rgba(116, 77, 66, 0.42);
  opacity: 1;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.tes-pagination .swiper-pagination-bullet-active {
  width: 42px;
  background: #744d42;
}
@media (max-width: 991.98px) {
  .tescard {
    min-height: 320px;
  }
}
@media (max-width: 575.98px) {
  .testimonial-section {
    padding: 88px 0 78px;
  }
  .tesSwiper {
    padding-bottom: 48px;
  }
  .tescard {
    min-height: auto;
    border-radius: 28px;
    padding: 28px 22px 22px;
  }
  .tess {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }
  .testxt {
    font-size: 0.95rem;
  }
}

/* ===================== RESERVATION â€” FIX 5 ===================== */
#reservation {
  background: var(--light);
}
.resico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(232, 40, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.flbl {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  display: block;
}
.fctrl {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  color: var(--dark);
  background: #fff;
  appearance: auto;
}
.fctrl:focus {
  border-color: var(--primary);
}
.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}
.sucmsg {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(45, 106, 79, 0.07);
  border-radius: 11px;
  margin-top: 14px;
}
.sucmsg i {
  color: var(--green);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 7px;
}
.sucmsg p {
  color: var(--green);
  font-weight: 600;
  margin: 0;
  font-size: 0.88rem;
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--light);
}
.blcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.blcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.blimg {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.blimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blcard:hover .blimg img {
  transform: scale(1.06);
}
.bldatebdg {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  padding: 5px 11px;
  text-align: center;
  line-height: 1.2;
}
.bldatebdg .bd {
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
}
.bldatebdg .bm {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.blbody {
  padding: 20px;
}
.bltag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.bltit {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.4;
}
.bltit a {
  color: var(--dark);
}
.bltit a:hover {
  color: var(--primary);
}
.blmeta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: #bbb;
  margin-bottom: 13px;
}
.blmeta i {
  color: var(--primary);
  margin-right: 3px;
}
.blmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blmore i {
  transition: 0.3s;
}
.blmore:hover {
  color: var(--dark);
}
.blmore:hover i {
  transform: translateX(5px);
}

/* ===================== NEWSLETTER ===================== */
.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.nlbg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='.4' opacity='.1'/%3E%3C/svg%3E");
  background-size: 75px;
}
.nlw {
  position: relative;
  z-index: 2;
  background: url(../img/nwl-bg.jpg) center / cover no-repeat;
  padding: 100px;
  border-radius: 70px;
}
.nlw::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 52, 42, 0.9) 0%, rgba(30, 27, 27, 0.9) 111.38%);
  opacity: 0.9;
  border-radius: 70px;
  z-index: -1;
}
.nlw h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
}
.nlw p{
  font-size: 20px;
  color: #c5c3c3;
  text-align: center;
  margin: 14px 0 40px;
  font-weight: 400;
}
.nlw h2 span {
  color: var(--secondary);
}
/* Newsletter form â€” fixed layout */
.nl-form-wrap {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  align-items: center;
}
.nlinput {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  outline: none;
  font-family: "Poppins", sans-serif;
  color: #333;
}
.nlbtn {
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.nlbtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
@media (max-width: 540px) {
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 10px;
  }
  .nlinput {
    width: 100%;
    border-radius: 12px;
  }
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ===================== CONTACT â€” FIX 6 ===================== */
#contact-section {
  background: #fff;
}
.ctdark {
  background: var(--dark);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}
.ctdark h4 {
  color: #fff;
  margin-bottom: 7px;
}
.ctdark .ctsub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}
.ctitem {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cticon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(232, 40, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ctinfo strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.ctinfo span {
  color: #fff;
  font-size: 0.87rem;
}
.ctsocrow {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.ctsocrow a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s;
}
.ctsocrow a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
 position: relative;
    background: linear-gradient(180deg, rgba(74, 52, 42, 0.9) 0%, rgba(30, 27, 27, 0.9) 111.38%);
    padding: 64px 0 0;
    overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 12, 10, 0.3), rgba(17, 12, 10, 0.3)),
    url("../img/footer-bg.jpg") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
footer .container,
.fbot .container {
  position: relative;
  z-index: 1;
}

.footer-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding-bottom: 28px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(246, 166, 35, 0.18);
}
.fnm {
  font-size: 44px;
  font-weight: 700;
  color: #fff9f0;
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}
.fnm span {
  color: #C8A55A;
}
.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C8A55A;
  color: #26160b;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}
.footer-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #C8A55A, var(--secondary));
  color: #25170d;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(246, 166, 35, 0.2);
}
.footer-order-btn i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(25, 16, 10, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}
.footer-order-btn:hover {
  color: #25170d;
  transform: translateY(-2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer-col {
  min-width: 0;
}
.fdesc {
  color: rgba(255, 245, 232, 0.88);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 18px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}
.fciico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #C8A55A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.fciinfo {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.55;
}
.ftit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff7ee;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  font-family: "Poppins", sans-serif;
}
.ftit i,
.footer-offer-title i {
  color: #C8A55A;
}
.footer-hours-card {
  background: rgba(73, 50, 39, 0.78);
  border: 1px solid rgba(224, 166, 58, 0.22);
  border-radius: 18px;
  padding: 12px 14px;
}
.footer-hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 12px 0;
}
.footer-hours-row + .footer-hours-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-hours-row strong {
  color: #C8A55A;
  font-size: 0.95rem;
  line-height: 1.3;
}
.footer-hours-row span {
  color: rgba(255, 245, 232, 0.88);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: right;
}
.fsoc {
  display: flex;
  gap: 10px;
  margin: 0 0 24px;
}
.fsoc a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #C8A55A;
  border: 1px solid #5D403780;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: 0.3s;
}
.fsoc a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-offer-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff7ee;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-subscribe input {
  flex: 1 1 220px;
  min-width: 0;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(224, 166, 58, 0.45);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  padding: 0 18px;
  outline: none;
  font-size: 0.9rem;
}
.footer-subscribe input::placeholder {
  color: rgba(255, 245, 232, 0.45);
}
.footer-subscribe button {
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #C8A55A, var(--secondary));
  color: #25170d;
  padding: 0 24px;
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(246, 166, 35, 0.14);
  cursor: pointer;
}
.footer-subscribe button:hover {
  background: var(--hovered);
}
.fbot {
  border-top: 1px solid rgba(224, 166, 58, 0.14);
  padding: 30px 0;
  margin-top: 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.fbot p {
  color: rgba(255, 245, 232, 0.88);
  font-size: 0.92rem;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.fbot a {
  color: rgba(255, 245, 232, 0.88);
  font-size: 0.92rem;
  margin-left: 0;
}
.fbot a:hover {
  color: var(--secondary);
}

/* ===================== UTILITIES ===================== */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #C8A55A;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(232, 40, 26, 0.38);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s;
}
#btt.show {
  opacity: 1;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-4px) !important;
}
.cartfl {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
  background: var(--secondary);
  border-radius: 50px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 22px rgba(246, 166, 35, 0.38);
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
}
.cartfl:hover {
  transform: translateY(-4px);
}
.cartfl .ccount {
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ====================================================
   ALL POPUP / MODAL STYLES
==================================================== */

/* --- FIX 1: SEARCH POPUP --- */
#searchOv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 78px;
}
#searchOv.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
@keyframes fadeov {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#searchOv .sovclose {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.3s;
}
#searchOv .sovclose:hover {
  background: var(--primary);
}
.sovbox {
  width: 100%;
  max-width: 680px;
  padding: 0 18px;
}
.sovbox h4 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Poppins", serif;
}
.sovinput {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.sovinput input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  outline: none;
}
.sovinput input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.sovinput button {
  background: var(--primary);
  border: none;
  padding: 0 26px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovinput button:hover {
  background: #c01e12;
}
.sovcats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}
.sovcat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
}
.sovcat img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.sovcat:hover,
.sovcat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.sovtrend {
  text-align: center;
  margin-top: 26px;
}
.sovtrend p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-bottom: 9px;
}
.sovtrend .ttag {
  display: inline-block;
  margin: 3px;
  background: rgba(246, 166, 35, 0.13);
  border: 1px solid rgba(246, 166, 35, 0.28);
  color: var(--secondary);
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 0.76rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovtrend .ttag:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* --- FIX 4: MENU DETAIL POPUP --- */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#menuPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.mpbox {
  background: #fff;
  border-radius: 22px;
  max-width: 800px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.mpbox::-webkit-scrollbar {
  width: 3px;
}
.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.mpbox .mpimg {
  width: 44%;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  overflow: hidden;
  min-height: 400px;
}
.mpbox .mpimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mpbox .mpbody {
  width: 56%;
  padding: 34px 30px;
}
.mpclose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}
.mpclose:hover {
  background: var(--primary);
  color: #fff;
}
#mpCat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}
#mpTitle {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 9px;
  font-family: "Poppins", serif;
  color: var(--dark);
}
#mpStars {
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
#mpDesc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}
#mpPrice {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: "Poppins", serif;
}
#mpPrice small {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 7px;
}
.mpmeta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mpm {
  text-align: center;
  background: var(--light);
  border-radius: 9px;
  padding: 9px 14px;
}
.mpmv {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}
.mpml {
  font-size: 0.68rem;
  color: #bbb;
}
.mpqty {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.mpqbtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 700;
}
.mpqbtn:hover {
  background: var(--primary);
  color: #fff;
}
.mpqnum {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 30px;
  text-align: center;
}
.mptags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.mptag {
  background: rgba(246, 166, 35, 0.11);
  color: var(--dark);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.73rem;
  font-weight: 600;
}
.mpaddcart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mpaddcart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.38);
}

/* --- FIX 7: GALLERY POPUP --- */
#galPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#galPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.gpbox {
  max-width: 880px;
  width: 100%;
  position: relative;
  text-align: center;
}
.gpbox img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 14px;
}
.gpclose {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.gpclose:hover {
  background: var(--primary);
}
.gpcap {
  color: #fff;
  margin-top: 18px;
}
.gpcap h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}
.gpcap p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}
.gpnav {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 14px;
}
.gpnav button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 0.83rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}
.gpnav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Magnific video override */
.mfp-bg {
  background: #000 !important;
  opacity: 0.93 !important;
}
.mfp-close {
  color: #fff !important;
}

/* ===================== YEMERICA HERO OVERRIDES ===================== */
#nav {
      background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    padding: 0 14px;
    border-bottom: 2px solid var(--secondary);
    backdrop-filter: blur(5px);
}
#nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(24, 16, 11, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.hero-nav-shell {
  min-height: 110px;
}
.navbar-nav .nav-link {
  color: rgba(255, 245, 232, 0.88) !important;
  padding: 26px 16px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 48%;
}
.nav-cart {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #C8A55A;
  color: #2c1b10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  cursor: pointer;
}
.nav-cart:hover {
  color: #2c1b10;
}
.nav-badge {
  position: absolute;
  top: -2px;
  right: -1px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: #d91f11;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
#hero {
  padding: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, #4A342A -13.19%, rgba(30, 27, 27, 0.3) 141.82%);

}
.hero-frame {
  position: relative;
  z-index: 1;
}
.hero-inner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 170px 0 90px;
}
.hero-content { 
  max-width: 1000px;
  margin: 0 auto;
}
/* html:not(.home-intro-seen) body.home-page .hero-content {
  opacity: 0;
  transform: translate3d(110px, 0, 0);
}
html:not(.home-intro-seen) body.home-page .hero-content .hbadge,
html:not(.home-intro-seen) body.home-page .hero-content .hdesc,
html:not(.home-intro-seen) body.home-page .hero-content .hero-actions {
  opacity: 0;
} */
.home-intro-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(214, 167, 74, 0.205), transparent 28%),
    linear-gradient(135deg, rgba(26, 18, 14, 0.98), rgba(18, 12, 9, 0.98));
  overflow: hidden;
}
.home-intro-loader__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 167, 74, 0.45), rgba(214, 167, 74, 0.08) 45%, transparent 72%);
  filter: blur(10px);
}
.home-intro-loader__logo-wrap {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 240, 0.04);
  border: 1px solid rgba(214, 167, 74, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.home-intro-loader__logo {
  width: 94px;
  height: auto;
  display: block;
}
html.home-intro-seen .home-intro-loader {
  display: none;
}
body.home-page.home-intro-active {
  overflow: hidden;
}
body.home-page.home-intro-complete .hero-content {
  opacity: 1;
  transform: none;
}
.hs,
.hbgtxt,
.hcircle,
.fc1,
.fc2,
.fc3,
.hstats {
  display: none !important;
}
.hbadge {
  background: linear-gradient(269.99deg, #C8A55A 0.01%, #C8A55A 99.99%);
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 0 12px 30px rgba(246, 166, 35, 0.18);
  margin-bottom: 26px;
}
.hbadge .hbi {
  width: 22px;
  height: 22px;
  background: transparent;
  color: #2d1a0d;
  font-size: 18px;
}
.hbadge span {
  font-size: 18px;
  font-weight: 700;
  color: #2d1a0d;
}
.htitle {
  font-size: 65px;
  font-weight: 700;
  line-height: 84px;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.03em;
}
.hdesc {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-red {
  background: var(--secondary);
  color: #21150d;
  border-radius: 999px;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: none;
  transition: 0.3s ease;
}
.btn-red:hover {
  color: #21150d;
  background: var(--hovered);
  box-shadow: none;
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 182px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: rgba(28, 18, 12, 0.35);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: 0.3s ease;
}
.btn-outline-gold:hover {
  color: #21150d;
  background: var(--hovered);
  transform: translateY(-3px);
  border-color: var(--hovered);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }
  .franchise-benefits {
    grid-template-columns: 1fr;
  }
  .franchise-form__grid--two {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-card--summary {
    max-width: none;
  }
  .footer-brand-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
  #nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background: rgba(24, 16, 11, 0.94);
  }
  #nav.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .hero-nav-shell {
    min-height: 74px;
    padding: 0 12px;
  }
  .navbar-collapse {
    background: rgba(24, 16, 11, 0.97);
    margin-top: 10px;
    padding: 10px 14px 16px;
    border: 1px solid rgba(246, 166, 35, 0.18);
    border-radius: 18px;
  }
  .navbar-nav .nav-link {
    padding: 12px 4px !important;
  }
  .hero-inner {
    min-height: 100vh;
    padding: 128px 0 64px;
  }
  .home-intro-loader__logo-wrap {
    width: 150px;
    height: 150px;
  }
  .home-intro-loader__logo {
    width: 80px;
  }
  .hcircle {
    width: 320px;
    height: 320px;
  }
  .fc1,
  .fc2,
  .fc3 {
    transform: scale(0.82);
    transform-origin: center;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gitem:first-child {
    grid-row: span 1;
  }
  .asm {
    display: none;
  }
  .mpbox .mpimg,
  .mpbox .mpbody {
    width: 100%;
  }
  .mpbox .mpimg {
    border-radius: 22px 22px 0 0;
    min-height: 240px;
  }
  .mpbox .mpbody {
    padding: 22px 18px;
  }
  /* Timeline mobile: collapse to single column */
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr !important;
  }
  .tl-left {
    display: none !important;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px !important;
    text-align: left !important;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(odd) .tl-right,
  .tli:nth-child(even) .tl-right {
    visibility: visible !important;
    display: block !important;
  }
}
@media (max-width: 767px) {
  .contact-page-section {
    padding: 78px 0;
  }
  .franchise-page-section {
    padding: 78px 0;
  }
  .franchise-card {
    padding: 22px 18px;
    border-radius: 26px;
  }
  .franchise-card__title,
  .franchise-form-title {
    font-size: 1.7rem;
  }
  .franchise-benefit {
    border-radius: 24px;
    align-items: flex-start;
  }
  .franchise-benefit h3 {
    font-size: 1.15rem;
  }
  .franchise-investment {
    padding: 18px 16px 8px;
  }
  .franchise-investment__title,
  .franchise-form__section-title {
    font-size: 1.45rem;
  }
  .franchise-investment__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .contact-page-card {
    padding: 24px 20px;
  }
  .contact-page-card__title {
    font-size: 1.55rem;
  }
  .contact-page-form__grid--two {
    grid-template-columns: 1fr;
  }
  .contact-page-hours__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .contact-page-info {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .contact-map-card {
    border-radius: 24px;
  }
  .contact-map-card iframe {
    height: 360px;
  }
  .contact-map-card__badge {
    top: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
    padding: 16px 18px 16px 16px;
  }
  .contact-map-card__badge h3 {
    font-size: 1.15rem;
  }
  .contact-map-card__badge p {
    font-size: 0.9rem;
    padding-right: 52px;
  }
  .contact-map-card__actions {
    top: 14px;
    right: 14px;
  }
  .contact-map-card__actions span {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }
  .contact-map-card__thumb {
    left: 16px;
    bottom: 16px;
    width: 84px;
    height: 84px;
    border-radius: 18px;
  }
  .checkout-section {
    padding: 120px 0 72px;
  }
  .checkout-back-link {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .checkout-card {
    border-radius: 24px;
  }
  .checkout-card--form,
  .checkout-card--summary {
    padding-top: 22px;
  }
  .checkout-card--form {
    padding-left: 16px;
    padding-right: 16px;
  }
  .checkout-card__head,
  .checkout-summary__item,
  .checkout-summary__totals,
  .checkout-summary__button,
  .checkout-summary__trust {
    margin-left: 16px;
    margin-right: 16px;
  }
  .checkout-card__head {
    padding-left: 0;
    padding-right: 0;
  }
  .checkout-form__grid--two,
  .checkout-payment {
    grid-template-columns: 1fr;
  }
  .checkout-card__title {
    font-size: 1.55rem;
  }
  .checkout-summary__item {
    align-items: flex-start;
    flex-direction: column;
  }
  .checkout-summary__item strong {
    font-size: 1.5rem;
  }
  .checkout-summary__row--total span,
  .checkout-summary__row--total strong {
    font-size: 1.5rem;
  }
  section {
    padding: 55px 0;
  }
  footer {
    padding-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }
  .footer-col:last-child {
    grid-column: auto;
  }
  .fnm {
    font-size: 2rem;
  }
  .footer-order-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-hours-card {
    max-width: 100%;
  }
  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-subscribe button {
    width: 100%;
  }
  .footer-bottom-row,
  .footer-bottom-links {
    gap: 12px;
  }
  #hero {
    padding: 110px 0 45px;
  }
  .hbadge {
    padding: 9px 16px;
    margin-bottom: 20px;
  }
  .hbadge span {
    font-size: 0.83rem;
  }
  .htitle {
    font-size: clamp(2.45rem, 9vw, 3.4rem);
  }
  .hdesc {
    font-size: 0.96rem;
    max-width: 540px;
    margin-bottom: 28px;
  }
  .hero-actions {
    gap: 12px;
  }
  .btn-red,
  .btn-outline-gold {
    width: 100%;
    max-width: 290px;
  }
  #topbar .top-contact span:last-child {
    display: none;
  }
  .hcircle {
    width: 260px;
    height: 260px;
  }
  /* Hide only hero floating cards, NOT form cards */
  .fcard.fc1,
  .fcard.fc2,
  .fcard.fc3 {
    display: none !important;
  }
  .hstats {
    display: none !important;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
  }
  .cdwrap {
    gap: 8px;
  }
  .cditem {
    min-width: 56px;
    padding: 9px;
  }
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 8px;
  }
  .nlinput,
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
  .fcard {
    padding: 22px 18px;
  }
  .cart-sidebar {
    width: 100%;
  }
  .cart-sidebar__header,
  .cart-sidebar__body,
  .cart-sidebar__footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .cart-sidebar__title {
    font-size: 1.6rem;
  }
  .cart-sidebar__item {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .cart-sidebar__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}
@media (max-width: 480px) {
  .footer-tag {
    font-size: 0.82rem;
    padding: 9px 14px;
  }
  .footer-hours-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .footer-hours-row span {
    text-align: left;
  }
  .footer-bottom-links {
    gap: 16px;
  }
  .htitle {
    font-size: 2.15rem;
  }
  .hero-nav-shell {
    min-height: 68px;
  }
  .nav-cart {
    width: 46px;
    height: 46px;
  }
  .stitle {
    font-size: 1.8rem;
  }
}

.explore-btn {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
 background: var(--secondary);  
 color: var(--dark);
  border-radius: 10rem;
  font-weight: 700;
  padding: 15px 15px 15px 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-size: 16px;
}
.explore-btn:hover {
  background: var(--hovered);
}
.explore-btn__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--secondary);
  background-color: var(--dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.explore-btn:hover {
  background-color: var(--hovered);
}
.explore-btn:hover .explore-btn__icon-wrapper {
  color: var(--secondary);
}
.explore-btn__icon-svg {
  font-size: 11px;
  transform: rotate(-45deg);
  transition: none;
}
.explore-btn__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%) rotate(-45deg);
}
.explore-btn:hover .explore-btn__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%) rotate(-45deg);
}
.explore-btn:hover .explore-btn__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0) rotate(-45deg);
}
.footer-top{
  margin-bottom: 28px;
}
.yam-img img{
  width: 100%;
  /* max-width: 580px; */
  border-radius: 40px;
}
.yam-img{
  float: inline-end;
}
.stitle2 {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0;
}
.stitle2-accent {
    color: var(--secondary);
}
.center_title{
  font-size: 70px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}
.center_desc{
  font-size: 20px;
  color: #1E1B1BCC;
  line-height: 1.75;
  max-width: 720px;
  font-weight: 400;
  margin: 18px auto 0;
}
.aq-heading {
  text-wrap: balance;
  overflow: hidden;
}
.animate_heading,
.animate_paragraph {
  overflow: hidden;
}
.animate_heading {
  text-wrap: balance;
}
.aq-char {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity, filter;
}
.aq-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.aq-heading-word {
  display: inline-block;
  white-space: nowrap;
}
.aq-word {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity, filter;
}
@media (prefers-reduced-motion: reduce) {
  .aq-char,
  .aq-word {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}
/* Small Button Variant */
.explore-btn-sm {
   padding: 8px 8px 8px 14px;
    font-size: 14px;
    gap: 0.5rem;
}

.explore-btn-sm .explore-btn__icon-wrapper {
    width: 20px;
    height: 20px;
}

.explore-btn-sm .explore-btn__icon-svg {
    font-size: 9px;
}
.page-hero{
  background: url(../img/footer-bg.jpg) center / cover no-repeat;
    height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 0px 0;
}
.about-story-section {
  padding: 88px 0 110px;
}
.about-story-intro {
  max-width: 840px;
  margin: 0 auto 46px;
}
.about-story-title {
  font-size: clamp(2.6rem, 6vw, 4.55rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.about-story-title__accent {
  color: var(--secondary);
}
.about-story-copy {
  margin: 18px auto 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(30, 27, 27, 0.74);
}
.about-story-stats {
  margin-bottom: 48px;
}
.about-story-stat {
  height: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(214, 167, 74, 0.45);
  border-radius: 24px;
  padding: 28px 22px 24px;
  box-shadow: 0 16px 34px rgba(61, 38, 20, 0.08);
  position: relative;
  overflow: hidden;
}
.about-story-stat::before {
 content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 90px;
    height: 90px;
    background: url(../img/about-sm-img.png) left bottom / contain no-repeat;
    opacity: 0.88;
    pointer-events: none;
}
.about-story-stat__value {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--secondary);
  margin-bottom: 10px;
}
.about-story-stat__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.about-story-stat__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(30, 27, 27, 0.62);
}
.about-story-feature {
 background: linear-gradient(269.98deg, rgba(74, 52, 42, 0.9) 0.02%, rgba(30, 27, 27, 0.9) 99.98%), url(../img/about-cta.jpg) center / cover no-repeat;
    border-radius: 48px;
    overflow: hidden;
    padding: 54px clamp(24px, 4vw, 58px);
    position: relative;
    box-shadow: 0 28px 60px rgba(52, 34, 18, 0.2);
    margin-top: 90px;
}
.about-story-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 42%, rgba(214, 167, 74, 0.12), transparent 28%);
  pointer-events: none;
}
.about-story-feature__content,
.about-story-feature__visual {
  position: relative;
  z-index: 1;
}
.about-story-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--secondary);
  color: #2c1b10;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.about-story-feature__title {
  font-size: clamp(2.15rem, 5vw, 3.65rem);
  line-height: 1.08;
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.about-story-feature__text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255, 245, 232, 0.84);
  margin-bottom: 28px;
}
.about-story-feature__visual {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story-feature__beans {
  position: absolute;
  inset: 22px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 62%);
  border-radius: 50%;
}
.about-story-feature__cup {
  width: min(100%, 450px);
  display: block;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.3));
}
.about-offerings-section {
  padding: 0 0 110px;
}
.about-offerings-top {
  margin-bottom: 78px;
}
.about-offerings-story {
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(214, 167, 74, 0.52);
  border-radius: 28px;
  padding: 30px 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(63, 42, 24, 0.08);
}
.about-offerings-story::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 120px;
  background: url(../img/about-sm-img.png) right bottom / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.about-offerings-story__number {
  font-size: clamp(2.8rem, 6vw, 4.1rem);
  line-height: 1;
  font-weight: 800;
  color: rgba(214, 167, 74, 0.38);
  margin-bottom: 8px;
}
.about-offerings-story__title {
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.about_rimg2{
  position: absolute;
    bottom: 0;
    right: 0;
    width: 195px;
    z-index: 0;
    opacity: 0.2;
}
.about-offerings-story__text {
  max-width: 500px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(30, 27, 27, 0.7);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.about-offerings-head {
  max-width: 760px;
  margin: 0 auto 42px;
}
.about-offerings-head__title {
  font-size: 65px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.about-offerings-head__text {
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(30, 27, 27, 0.68);
}
.about-offerings-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(214, 167, 74, 0.52);
  border-radius: 30px;
  padding: 26px 26px 24px;
  box-shadow: 0 18px 38px rgba(63, 42, 24, 0.08);
}
.about-offerings-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(214, 167, 74, 0.15);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border: 1.62px solid #D6A74A4D;
}
.about-offerings-card__title {
  font-size: 1.9rem;
  line-height: 1.14;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.about-offerings-card__tag {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.about-offerings-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(30, 27, 27, 0.68);
  margin: 0;
}
.about-reels-section {
  padding: 0 0 110px;
}
.about-reels-head {
  margin: 0 auto 40px;
}
.about-reels-head__title {
  font-size: 65px;
  line-height: 1.30;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.about-reels-head__accent {
  color: var(--secondary);
}
.about-reels-head__text {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(30, 27, 27, 0.68);
}
.about-reel-card {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: #1a140f;
  box-shadow: 0 22px 42px rgba(57, 38, 20, 0.14);
}
.about-reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 8, 0.48) 0%, rgba(15, 10, 8, 0.1) 26%, rgba(15, 10, 8, 0.28) 100%);
  pointer-events: none;
}
.about-reel-card__top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-reel-card__brand {
 display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}
.about-reel-card__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(214, 167, 74, 0.7);
  padding: 2px;
  background: rgba(0, 0, 0, 0.35);
}
.about-reel-card__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #16110d;
}
.about-reel-card__video::-webkit-media-controls {
  display: none !important;
}
.about-reel-card__video::-webkit-media-controls-enclosure {
  display: none !important;
}
.about-origin-section {
  background: linear-gradient(180deg, #fbf5eb 0%, #f7efe2 100%);
  padding: 0 0 110px;
}
.about-origin-callout {
  position: relative;
  overflow: hidden;
  border-radius: 65px;
  padding: 60px 24px 42px;
  text-align: center;
  background:
    linear-gradient(rgba(28, 19, 14, 0.82), rgba(28, 19, 14, 0.82)),
    url(../img/nwl-bg.jpg) center / cover no-repeat;
  box-shadow: 0 26px 54px rgba(56, 37, 20, 0.18);
}
.about-origin-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(214, 167, 74, 0.2), transparent 16%),
    radial-gradient(circle at 78% 18%, rgba(214, 167, 74, 0.16), transparent 12%),
    radial-gradient(circle at 85% 74%, rgba(214, 167, 74, 0.16), transparent 16%),
    radial-gradient(circle at 24% 82%, rgba(214, 167, 74, 0.12), transparent 12%);
  opacity: 0.9;
  pointer-events: none;
}
.about-origin-callout > * {
  position: relative;
  z-index: 1;
}
.about-origin-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--secondary);
  color: #26170d;
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.about-origin-title {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 55px;
  line-height: 1.06;
  font-weight: 700;
  color: #fff;
}
.about-origin-title__accent {
  color: var(--secondary);
}
.about-origin-text .text_yellow span{
  color: var(--secondary);
}
.about-origin-text {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 244, 232, 0.88);
}
.about-origin-text span {
  color: #fff;
}
.about-origin-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.about-origin-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 244, 232, 0.92);
  font-size: 0.95rem;
}
.about-origin-meta__line {
  width: 96px;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
}
@media (max-width: 991.98px) {
  .about-story-section {
    padding: 74px 0 92px;
  }
  .about-story-intro {
    margin-bottom: 38px;
  }
  .about-story-feature {
    border-radius: 34px;
    padding: 38px 22px;
  }
  .about-story-feature__content {
    text-align: center;
    margin: 0 auto;
  }
  .about-story-feature__title,
  .about-story-feature__text {
    max-width: none;
  }
  .about-story-feature__visual {
    min-height: 300px;
  }
  .about-offerings-section {
    padding-bottom: 92px;
  }
  .about-offerings-top {
    margin-bottom: 58px;
  }
  .about-reels-section {
    padding-bottom: 92px;
  }
  .about-reel-card {
    min-height: 460px;
  }
  .about-origin-section {
    padding-bottom: 92px;
  }
  .about-origin-callout {
    border-radius: 34px;
    padding: 44px 20px 34px;
  }
  .about-origin-meta {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 575.98px) {
  .about-story-title {
    font-size: 2.35rem;
  }
  .about-story-copy {
    font-size: 0.95rem;
  }
  .about-story-stat {
    border-radius: 20px;
  }
  .about-story-feature {
    border-radius: 28px;
  }
  .about-story-feature__visual {
    min-height: 240px;
  }
  .about-offerings-story,
  .about-offerings-card {
    border-radius: 24px;
    padding: 22px 20px;
  }
  .about-offerings-card__title {
    font-size: 1.6rem;
  }
  .about-reels-head__title {
    font-size: 2.45rem;
  }
  .about-reel-card {
    min-height: 420px;
    border-radius: 20px;
  }
  .about-origin-chip {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.74rem;
  }
  .about-origin-title {
    font-size: 2.2rem;
  }
  .about-origin-text {
    font-size: 0.97rem;
  }
  .about-origin-meta__line {
    width: 72px;
  }
}
.text_dark span{
  color: var(--dark);
}
.text_dark .text_yellow span{
  color: var(--secondary);
}
.rotate-image {
    animation: rotateImage 20s linear infinite;
    transform-origin: center center;
}

@keyframes rotateImage {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
