@import url('https://fonts.googleapis.com/css2?family=Grandstander:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary: #1d9a47;
  --secondary: #333333;
  --dark: #333333;
  --green: #1d9a47;
  --cream: #f5fdf8;
  --cream2: #ffffff;
  --light: #f0fdf4;
  --shadow: 0 8px 40px rgba(29, 154, 71, 0.08);
  --shadow-lg: 0 20px 60px rgba(29, 154, 71, 0.12);
  --accent-yellow: #ffc107;
  --accent-coral: #ff6b6b;
  --accent-cyan: #06b6d4;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333333;
  background: #f5fdf8;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: #1d9a47;
}
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;
}

/* ===================== TOP BAR ===================== */
#topbar {
  padding: 8px 0;
  font-size: 0.82rem;
  box-shadow: 0 2px 8px rgba(29, 154, 71, 0.05);
}
#topbar span {
  margin-right: 16px;
}
#topbar span i {
  margin-right: 5px;
}
#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #f0fdf4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d9a47;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}
#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}
.ttag {
  background: var(--primary);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===================== NAVBAR ===================== */
#nav {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(29, 154, 71, 0.08);
  transition: 0.4s;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(29, 154, 71, 0.12);
}
.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d9a47, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(29, 154, 71, 0.2);
}
.bname {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1d9a47;
}
.bname span {
  color: #333333;
}
.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1d9a47;
}
.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #333333 !important;
  padding: 26px 13px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}
.navbar-nav .nav-link:hover {
  color: #1d9a47 !important;
}
/* FIX 1 â€” Search btn in navbar */
#navSearchBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #c0c0c0;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
#navSearchBtn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary),#1d9a47);
  color: #ffffff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  margin-left: 6px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.3);
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0;
}
.slbl {
  font-family: "Grandstander", cursive;
  font-size: 1.35rem;
  color: #333333;
  display: block;
  margin-bottom: 4px;
}
.stitle {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #333333;
}
.stitle span {
  color: var(--primary);
}
.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: #666666;
  font-size: 0.93rem;
  line-height: 1.8;
}
.btn-red {
  background: linear-gradient(135deg, var(--primary),#1d9a47);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(29, 154, 71, 0.25);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-red:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 34px rgba(29, 154, 71, 0.35);
  color: #ffffff;
}

/* ===================== HERO ===================== */
#hero {
  background: linear-gradient(135deg, #f5fdf8 0%, #e8f5f0 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}
.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: rgba(29, 154, 71, 0.06);
  pointer-events: none;
  white-space: nowrap;
}
.hs {
  position: absolute;
  border-radius: 50%;
}
.hs1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(29, 154, 71, 0.1), transparent 70%);
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}
.hs2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08),
    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: #ffffff;
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(29, 154, 71, 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: #ffffff;
  font-size: 0.78rem;
}
.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: #1d9a47;
}
.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.htitle .hl {
  position: relative;
  display: inline-block;
}
.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  z-index: -1;
}
.hdesc {
  font-size: 1rem;
  color: #c0c0c0;
  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: #3f3f3f;
  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: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(29, 154, 71, 0.12);
  color: #1d9a47;
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}
.btn-play:hover .pico {
  background: #ffffff;
  color: #000000;
  transform: scale(1.1);
}
.btn-play:hover {
  color: #ffffff;
}
.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hstat .snum {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.hstat .snum em {
  color: var(--secondary);
  font-style: normal;
}
.hstat small {
  font-size: 0.7rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sdiv {
  width: 1px;
  background: #e0e0e0;
  height: 38px;
  align-self: center;
}
.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #f0fdf4, #e8f5f0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(29, 154, 71, 0.1);
}
.hcircle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.fcard-float {
  position: absolute;
}

.fcard {
  background: #ffffff;
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: 0 8px 20px rgba(29, 154, 71, 0.1);
  display: flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--light);
}
.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: 5%;
  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(255, 107, 107, 0.15);
  color: #ff6b6b;
}
.fcoi.y {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}
.fcoi.g {
  background: rgba(29, 154, 71, 0.15);
  color: var(--primary);
}
.fcnum {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1d9a47;
  display: block;
  line-height: 1;
}
.fcsm {
  font-size: 0.66rem;
  line-height: 0.2;
  color: #999999;
}

/* ===================== MARQUEE ===================== */
.mqsec {
  background: var(--primary);
  color: #ffffff;
  padding: 13px 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(29, 154, 71, 0.05);
}
.mqtrack {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  animation: mqrun 22s linear infinite;
}
.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
}
.mqitem i {
  color: rgba(29, 154, 71, 0.5);
  font-size: 0.55rem;
}
@keyframes mqrun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== CATEGORY ===================== */
#category {
  background: #f5fdf8;
}
.catcard {
  background: #ffffff;
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(29, 154, 71, 0.1);
  border: 2px solid transparent;
}
.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(29, 154, 71, 0.2);
  border-color: var(--primary);
  background: #f0fdf4;
}
.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(--primary);
  margin-bottom: 3px;
}
.catct {
  font-size: 0.73rem;
  color: #999999;
}

/* ===================== ABOUT ===================== */
#about {
  background: #ffffff;
  border-top: 1px solid #f0fdf4;
}
.astack {
  position: relative;
}

.amain img {
  width: 100%;
  height: 480px;
  object-fit: fill;
  display: block;
}
.asm {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #e8f5f0;
  box-shadow: 0 8px 20px rgba(29, 154, 71, 0.15);
}
.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aexp {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(29, 154, 71, 0.4);
}
.aexp .anum {
  font-family: "Playfair Display", 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(52, 235, 204, 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: #333333;
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
}
.fti p {
  font-size: 0.8rem;
  color: #777777;
  margin: 0;
  line-height: 1.6;
}

/* ===================== MENU ===================== */
#menu {
  background: #f5fdf8;
}
/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid var(--primary);
  background: #f0fdf4;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Poppins", sans-serif;
}
.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 5px 18px rgba(29, 154, 71, 0.3);
}
.mwrap {
  transition: 0.35s;
}
.mwrap.gone {
  display: none !important;
}
.mcard {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 22px rgba(29, 154, 71, 0.1);
  cursor: pointer;
  border: 2px solid #f0fdf4;
}
.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(29, 154, 71, 0.2);
  border-color: var(--primary);
}
.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: #f0fdf4;
}
.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.mcard:hover .mimg img {
  transform: scale(1.09);
}
.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}
.mbdg.new {
  background: var(--accent-yellow);
  color: #333333;
}
.mbdg.hot {
  background: var(--accent-coral);
  color: #ffffff;
}
/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(29, 154, 71, 0.15);
}
.mhrt:hover {
  color: var(--accent-coral);
  transform: scale(1.18);
}
.mbody {
  padding: 18px;
}
.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  color: #333333 !important;
}
.mdesc {
  font-size: 0.78rem;
  color: #999999;
  margin-bottom: 13px;
  line-height: 1.5;
}
.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}
.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #bbbbbb;
  text-decoration: line-through;
  margin-left: 5px;
}
.mstars {
  font-size: 0.73rem;
  color: var(--primary);
}
/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(29, 154, 71, 0.2);
}
.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== SPECIAL OFFER ===================== */
#special {
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f5f0 100%);
  position: relative;
  overflow: hidden;
}
.spbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background: repeating-linear-gradient(
    45deg,
    #1d9a47 0,
    #1d9a47 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 40px 40px;
}
.sptag {
  display: inline-block;
  background: var(--accent-yellow);
  color: #333333;
  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: #1d9a47;
  line-height: 1.1;
}
.sptitle span {
  color: var(--secondary);
}
.spdesc {
  color: #666666;
  margin: 18px 0;
  font-size: 0.93rem;
  line-height: 1.8;
}
.cdwrap {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}
.cditem {
  text-align: center;
  background: #ffffff;
  border: 2px solid #f0fdf4;
  border-radius: 11px;
  padding: 13px 18px;
  min-width: 72px;
  box-shadow: 0 4px 12px rgba(29, 154, 71, 0.1);
}
.cdnum {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.cdlbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d9a47;
  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(29, 154, 71, 0.2),
    transparent 70%
  );
}
.spimgw img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 28px 56px rgba(29, 154, 71, 0.2));
  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(--accent-yellow);
  color: #333333;
  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(255, 193, 7, 0.3);
  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(255, 193, 7, 0.4);
  }
}
.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: #f5fdf8;
}
.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(29, 154, 71, 0.8), 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: #fff;
  margin-right: 5px;
}

/* ===================== HISTORY â€” FIX 8 ===================== */
#history {
  background: #f5fdf8;
}
.timeline {
  position: relative;
  padding: 18px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, #ffffff, #c0c0c0);
  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 #ffffff;
  box-shadow: 0 0 0 3px rgba(29, 154, 71, 0.2);
  flex-shrink: 0;
}
.tlyear {
  font-family: "Grandstander", cursive;
  color: var(--secondary);
  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: "Playfair Display", serif;
  color: var(--primary);
}
.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: #777777;
  line-height: 1.7;
  margin: 0;
}

/* ===================== PAGE LAYOUT & AUTH ===================== */
.page-header {
  background: #f5fdf8;
  padding: 35px 0;
  box-shadow: 0 2px 8px rgba(29, 154, 71, 0.05);
}
.page-header.breadcrumb-wrap {
  padding: 20px 0 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
  color: #1d9a47;
}
.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: #cccccc;
  margin: 0 8px;
}

.page-content {
  padding: 50px 0;
}

.login_wrap,
.widget-taber-content {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(29, 154, 71, 0.1);
  overflow: hidden;
  border: 2px solid #f0fdf4;
}

.padding_eight_all {
  padding: 30px !important;
}

.background-white {
  background: #fff !important;
}

.card {
  border: 1px solid #f0fdf4;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(29, 154, 71, 0.05);
  background: #ffffff;
}

.card.p-30 {
  padding: 30px;
}

.heading_s1 {
  margin-bottom: 20px;
}

.heading_s1 h1,
.heading_s1 h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #ffffff;
}

.heading_s1 p {
  color: #a0a0a0;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Form styling */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid #333333;
  border-radius: 9px;
  padding: 12px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
  color: #333333;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1d9a47;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #606060;
}

.login_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.login_footer.form-group {
  flex-wrap: wrap;
}

.chek-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custome-checkbox input {
  width: auto;
  cursor: pointer;
  margin: 0 !important;
}

.custome-checkbox label {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
}

.card-login {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(29, 154, 71, 0.1);
  padding: 35px 25px;
  border: 2px solid #f0fdf4;
}

/* Social login buttons */
.social-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 10px;
  border: 2px solid #1d9a47;
  background: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1d9a47;
  text-decoration: none;
}

.social-login img {
  width: 20px;
  height: 20px;
}

.social-login:hover {
  border-color: var(--primary);
  background: rgba(29, 154, 71, 0.05);
  color: var(--primary);
}

.social-login.google-login {
  color: #dd4b39;
}

.social-login.google-login:hover {
  background: rgba(221, 75, 57, 0.05);
  border-color: #dd4b39;
  color: #dd4b39;
}

.social-login.facebook-login {
  color: #1877f2;
}

.social-login.facebook-login:hover {
  background: rgba(24, 119, 242, 0.05);
  border-color: #1877f2;
  color: #1877f2;
}

.social-login.apple-login {
  color: #000;
}

.social-login.apple-login:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #000;
  color: #000;
}

/* Button styling */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  text-align: center;
  text-decoration: none;
}

.btn-heading {
  background: #ffffff;
  color: #000000;
}

.btn-heading:hover {
  background: #d0d0d0;
  color: #000000;
  text-decoration: none;
}

.btn-secondary {
  background: #333333;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #505050;
  color: #ffffff;
  text-decoration: none;
}

.btn-fill-out {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.btn-fill-out:hover {
  background: #d0d0d0;
  border-color: #d0d0d0;
  color: #000000;
  text-decoration: none;
}

.btn-outline-primary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline-primary:hover {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
}

.btn-outline-success {
  background: transparent;
  color: #28a745;
  border: 2px solid #28a745;
}

.btn-outline-success:hover {
  background: #28a745;
  color: #fff;
  text-decoration: none;
}

.btn-shadow-brand {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-shadow-brand:hover {
  background: #d0d0d0;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.btn-rounded {
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-default {
  background: #ffffff;
  color: #1d9a47;
  border: 1px solid #1d9a47;
}

.btn-default:hover {
  background: #f5fdf8;
  color: #1d9a47;
  text-decoration: none;
}

.btn-success {
  background: #28a745;
  color: #fff;
}

.btn-success:hover {
  background: #218838;
  color: #fff;
  text-decoration: none;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background: #d0d0d0;
  color: #000000;
  text-decoration: none;
}

.btn-block {
  width: 100%;
  display: block;
}

.hover-up {
  transition: 0.3s;
}

.hover-up:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.text-brand {
  color: #ffffff !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-muted {
  color: #808080 !important;
}

.text-center {
  text-align: center;
}

/* Spacing utilities */
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 0.75rem; }
.mb-15 { margin-bottom: 1rem; }
.mb-20 { margin-bottom: 1.5rem; }
.mb-30 { margin-bottom: 2rem; }
.mb-50 { margin-bottom: 3.5rem; }

.mt-15 { margin-top: 1rem; }
.mt-20 { margin-top: 1.5rem; }
.mt-30 { margin-bottom: 2rem; }

.me-2 { margin-right: 0.5rem; }
.me-1 { margin-right: 0.25rem; }

.pt-50 { padding-top: 3.5rem; }
.pb-50 { padding-bottom: 3.5rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Text utilities */
.fw-bold {
  font-weight: 700 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }

/* Alert styles */
.alert {
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #ddd;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(40, 167, 69, 0.08);
  color: #155724;
  border-left-color: #28a745;
}

.alert-danger {
  background: rgba(220, 53, 69, 0.08);
  color: #721c24;
  border-left-color: #dc3545;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.08);
  color: #856404;
  border-left-color: #ffc107;
}

.alert-info {
  background: rgba(23, 162, 184, 0.08);
  color: #0c5460;
  border-left-color: #17a2b8;
}

.alert-heading {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Additional utility classes */
.border-radius-15 {
  border-radius: 15px;
}

.border-radius-10 {
  border-radius: 10px;
}

.mb-md-3 {
  margin-bottom: 1rem;
}

.mb-lg-0 {
  margin-bottom: 0;
}

.mb-sm-4 {
  margin-bottom: 1.5rem;
}

.mb-md-5 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.translate-middle-y {
  transform: translateY(-50%);
}

.top-50 {
  top: 50%;
}

.end-0 {
  right: 0;
}

.me-1 {
  margin-right: 0.25rem;
}

.toggle-password {
  cursor: pointer;
  color: #666;
  transition: 0.3s;
}

.toggle-password:hover {
  color: var(--primary);
}

.w-100 {
  width: 100%;
}

.text-new {
  color: #28a745;
}

.text-hot {
  color: #dc3545;
}

.text-sale {
  color: #ffc107;
}

.text-best {
  color: #17a2b8;
}

@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;
}

#chefs .stitle {
  color: black !important;
}

#chefs .stitle span {
  color: rgb(33, 33, 33);
}

#testimonials .stitle {
  color: black !important;
}

#testimonials .stitle span {
  color: rgb(33, 33, 33);
}

.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(29, 154, 71, 0.08);
  border: 1px solid #f0fdf4;
}
.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;
  color: #000;
}
.chrole {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.chexp {
  font-size: 0.76rem;
  color: #808080;
  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: white;
  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 {
  font-size: 0.9rem;
  font-weight: 500;
}
.hrstime {
  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: white;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(52, 235, 204, 0.4);
}
.hrscta h4 {
  font-size: 1.4rem;
  font-weight: 800;
}
.hrscta p {
  font-size: 0.86rem;
  margin: 9px 0 18px;
}
.btnw {
  background: var(--primary);
  color: rgb(226, 226, 226);
  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 ===================== */
#testimonials {
  background: #fff;
}
.tescard {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.tescard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.tesq {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4.5rem;
  color: rgba(52, 235, 204, 0.07);
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.tess {
  color: var(--secondary);
  font-size: 0.83rem;
  margin-bottom: 12px;
}
.testxt {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}
.tesauth {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tesauth img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.tesnm {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.tesrl {
  font-size: 0.73rem;
  color: #aaa;
}

/* ===================== RESERVATION â€” FIX 5 ===================== */
#reservation {
  background: var(--light);
}
.resico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(52, 235, 204, 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;
  margin-bottom: 5px;
  display: block;
}
.fctrl {
  width: 100%;
  border: 1px solid #646464;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  background: #ffffff;
  color: #333333;
  appearance: auto;
}
.fctrl:focus {
  border-color: var(--primary);
}
.fcard {
  
  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: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(29, 154, 71, 0.08);
  border: 1px solid #f0fdf4;
}
.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: #ffffff;
}
.bltit a:hover {
  color: var(--primary);
}
.blmeta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: #808080;
  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: #4ec175 !important;
}
.blmore:hover i {
  transform: translateX(5px);
}

/* ===================== NEWSLETTER ===================== */
#newsletter {
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
  color: #fff;
  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;
}
.nlw h2 {
  color: #fff;
  font-size: 2.1rem;
}
/* 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: white;
  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 ===================== */


.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(52, 235, 204, 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 {
  background: var(--dark);
  padding: 68px 0 0;
}
.fnm {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}
.fnm span {
  color: var(--primary);
}
.fdesc {
  color: #ececec;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}
.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.88rem;
  transition: 0.3s;
}
.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.ftit {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Poppins", sans-serif;
}
.flinks li {
  list-style: none;
  margin-bottom: 9px;
}
.flinks a {
  color: #e4e4e4;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}
.flinks a:hover {
  color: var(--secondary);
  padding-left: 5px;
}
.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.fciico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(52, 235, 204, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fciinfo {
  color: #e2e2e2;
  font-size: 0.83rem;
  line-height: 1.6;
}
.fciinfo strong {
  color: hsl(0, 0%, 92%);
  display: block;
  font-size: 0.77rem;
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}
.fbot p {
  color: #e5e5e5;
  font-size: 0.8rem;
  margin: 0;
}
.fbot span {
  color: var(--primary);
}
.fbot a {
  color: #e5e5e5;
  font-size: 0.8rem;
  margin-left: 18px;
}
.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: linear-gradient(135deg, var(--primary), #1b1c1c);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(52, 235, 204, 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: "Playfair Display", 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: #1b1c1c;
}
.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: "Playfair Display", 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: black;
  margin-bottom: 14px;
  font-family: "Playfair Display", 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(--primary);
}
.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%;
  background: transparent;
  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;
  border-radius: 20px;
}
.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), #1b1c1c);
  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(52, 235, 204, 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: rgba(0, 0, 0, 0.9) !important;
  opacity: 0.93 !important;
}
.mfp-close {
  color: #1d9a47 !important;
}

/* ===================== PRODUCT DETAIL STYLES ===================== */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.15s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffc107;
}

.product-description-content {
  position: relative;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.product-description-content.is-collapsed {
  max-height: 8.5rem;
}

.product-description-content.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3rem;
}

/* ===================== POLICY PAGES STYLES ===================== */
.privacy-policy {
  max-width: 100%;
}

.privacy-policy h4 {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
}

.privacy-policy h3 {
  height: auto;
}

.privacy-policy li {
  list-style: square outside !important;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.privacy-policy ul {
  padding-left: 1rem;
}

.privacy-policy ol {
  padding-left: 1rem;
}

.term-of-service {
  max-width: 100%;
}

.term-of-service h4 {
  margin-top: 1rem;
}

.term-of-service h3 {
  height: auto;
}

.term-of-service li {
  list-style: square outside !important;
  margin-bottom: 0.5rem;
}

.term-of-service ul {
  padding-left: 1rem;
}

.term-of-service ol {
  padding-left: 1rem;
}

/* ===================== ARTICLE & BLOG STYLES ===================== */
.post-thumb {
  background-size: cover;
  background-position: center;
  min-height: 250px;
  border-radius: 10px;
}

/* ===================== UTILITY CLASSES ===================== */
.text-center {
  text-align: center !important;
}

.p-3 {
  padding: 1rem !important;
}

.max-width-200 {
  max-width: 200px;
}

.h-100 {
  height: 100% !important;
}

.rounded {
  border-radius: 0.375rem !important;
}

.rounded-3 {
  border-radius: 0.5rem !important;
}

.overflow-auto {
  overflow: auto !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.fs-30 {
  font-size: 1.875rem !important;
}

.fs-small {
  font-size: 0.8rem !important;
}

.small {
  font-size: 0.875rem !important;
}

.border {
  border: 1px solid #eee !important;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-12 {
  border-radius: 12px;
}

.bg-grey {
  background: #f5f5f5 !important;
}

.bg-opacity-10 {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.font-weight-bold,
.fw-semibold {
  font-weight: 600 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

/* ===================== WHATSAPP CHAT BUTTON STYLES ===================== */
.whatsapp-fixed {
  position: relative;
}

.btn-whatsapp {
  background-color: #30bf39;
  color: #fff;
  border-radius: 100%;
  transition: background-color 0.5s;
  width: 100px !important;
  height: 100px !important;
  line-height: 60px;
  position: relative !important;
  display: block;
  transform: none !important;
  z-index: 9;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.07),
    0 2px 4px rgba(0, 0, 0, 0.07),
    0 4px 8px rgba(0, 0, 0, 0.07),
    0 8px 16px rgba(0, 0, 0, 0.07),
    0 16px 32px rgba(0, 0, 0, 0.07),
    0 32px 64px rgba(0, 0, 0, 0.07);
}

.btn-whatsapp:hover {
  background-color: #53ca5b;
}

.whatsapp-fixed a.video-vemo-icon.btn-whatsapp i {
  font-size: 72px;
  color: #fff;
  animation: sm-shake-animation linear 1.5s infinite;
  animation-delay: 3s;
}

.rs-video .animate-border .video-vemo-icon:before {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  animation: zoomBig 3.25s linear infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.rs-video .animate-border .video-vemo-icon:after {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  opacity: 0;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  animation: zoomBig 3.25s linear infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.btn-whatsapp:after,
.btn-whatsapp:before {
  border: 2px solid #30bf39 !important;
  width: 230px !important;
  height: 230px !important;
}

.sm-red-dot {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  background: red;
  transform: scale(0);
  border-radius: 50%;
  animation-name: notificationPoint;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}

.quick-message {
  position: absolute;
  bottom: 4px;
  right: 88px;
  width: max-content;
  border-radius: 0;
  background: #393b39;
}

.line-up {
  opacity: 0;
  animation-name: anim-lineUp;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}

.quick-message p {
  line-height: 40px;
  font-size: 15px;
  padding: 4px 16px;
  height: 40px;
  position: relative;
  color: #fff;
  margin: 0;
}

.quick-message .seta-direita:before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-right: 10px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #393b39;
  position: absolute;
  bottom: 3px;
  right: -30px;
}

#hover-message {
  display: none;
}

.whatsapp-fixed:hover #hover-message {
  display: block;
}

@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }

  40% {
    opacity: 0.5;
    border-width: 2px;
  }

  65% {
    border-width: 1px;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}

@keyframes sm-shake-animation {
  0% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }

  25% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }

  35% {
    transform: rotate(-0.3rad) scale(1) skew(0.017rad);
  }

  45% {
    transform: rotate(0.3rad) scale(1) skew(0.017rad);
  }

  55% {
    transform: rotate(-0.3rad) scale(1) skew(0.017rad);
  }

  65% {
    transform: rotate(0.3rad) scale(1) skew(0.017rad);
  }

  75% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }

  100% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }
}

@keyframes notificationPoint {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes anim-lineUp {
  from {
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* ===================== IMAGE UTILITIES ===================== */
.preview-image {
  max-width: 8rem !important;
}

.card-image-thumbnail {
  height: 120px;
  object-fit: cover;
}

/* ===================== RESPONSIVE MEDIA QUERIES ===================== */
.tips-and-tricks .tip-item {
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.tips-and-tricks .tip-item + .tip-item {
  margin-top: 12px;
}

.tips-and-tricks .tip-summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 600;
  color: #253d4e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tips-and-tricks .tip-summary::-webkit-details-marker {
  display: none;
}

.tips-and-tricks .tip-summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
}

.tips-and-tricks .tip-item[open] .tip-summary::after {
  content: "−";
}

.tips-and-tricks .tip-content {
  padding: 0 18px 16px;
  color: #7e7e7e;
}

/* ===================== RESPONSIVE UTILITY CLASSES ===================== */
.d-lg-none {
  display: none !important;
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }
}

/* ===================== EXTENDED UTILITY CLASSES ===================== */

/* Font Sizes */
.fs-xs { font-size: .72rem !important; }
.fs-sm { font-size: .76rem !important; }
.fs-sm-2 { font-size: .78rem !important; }
.fs-sm-3 { font-size: .8rem !important; }
.fs-sm-4 { font-size: .82rem !important; }
.fs-sm-5 { font-size: .84rem !important; }
.fs-md { font-size: .88rem !important; }
.fs-md-2 { font-size: .9rem !important; }
.fs-lg { font-size: 1rem !important; }
.fs-lg-2 { font-size: 1.1rem !important; }
.fs-xl { font-size: 1.4rem !important; }
.fs-xxl { font-size: 2rem !important; }
.fs-xxxl { font-size: 3rem !important; }

/* Dimensions */
.w-36 { width: 36px !important; }
.h-36 { height: 36px !important; }
.w-44 { width: 44px !important; }
.h-44 { height: 44px !important; }
.w-55 { width: 55px !important; }
.h-55 { height: 55px !important; }
.w-64 { width: 64px !important; }
.h-64 { height: 64px !important; }
.w-80 { width: 80px !important; }
.h-80 { height: 80px !important; }
.h-160 { height: 160px !important; }
.h-180 { height: 180px !important; }
.h-220 { height: 220px !important; }
.h-320 { height: 320px !important; }
.h-6px { height: 6px !important; }

/* Display & Layout */
.d-inline-block { display: inline-block !important; }

/* Flex */
.flex-shrink-0 { flex-shrink: 0 !important; }

/* Border Radius */
.rounded-6 { border-radius: 6px !important; }
.rounded-8 { border-radius: 8px !important; }
.rounded-12 { border-radius: 12px !important; }
.rounded-14 { border-radius: 14px !important; }
.rounded-50p { border-radius: 50% !important; }
.rounded-circle { border-radius: 50% !important; }

/* Object Fit */
.object-cover { object-fit: cover !important; }
.object-contain { object-fit: contain !important; }

/* Colors & Text */
.text-dark { color: var(--dark) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-bbb { color: #bbb !important; }
.text-ccc { color: #ccc !important; }
.text-eee { color: #eee !important; }
.text-555 { color: #555 !important; }
.text-line-through { text-decoration: line-through !important; }

/* Background Colors */
.bg-primary { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }
.bg-dark { background: var(--dark) !important; }
.bg-light { background: var(--light) !important; }
.bg-white { background: #fff !important; }
.bg-eee { background: #eee !important; }
.bg-transparent { background: transparent !important; }
.bg-overlay { background: rgba(0, 0, 0, .4) !important; }

/* Border & Styling */
.border-2px { border: 2px solid #eee !important; }
.border-primary { border: 2px solid var(--primary) !important; }
.border-top { border-top: 1px solid #eee !important; }

/* Spacing */
.p-2px { padding: 2px 10px !important; }
.p-6 { padding: 6px 16px !important; }
.p-8 { padding: 8px 14px !important; }
.p-12 { padding: 12px !important; }
.p-18 { padding: 18px !important; }
.py-3 { padding-top: 3px !important; padding-bottom: 3px !important; }
.py-5 { padding-top: 5px !important; padding-bottom: 5px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3px { margin-bottom: 3px !important; }
.mb-4px { margin-bottom: 4px !important; }
.mb-8 { margin-bottom: 8px !important; }
.m-0 { margin: 0 !important; }
.ml-4 { margin-left: 4px !important; }

/* Position & Z-Index */
.pos-relative { position: relative !important; }
.pos-absolute { position: absolute !important; }
.top-12 { top: 12px !important; }
.right-12 { right: 12px !important; }
.z-2 { z-index: 2 !important; }

/* Icon Colors */
.icon-primary { color: var(--primary) !important; }
.icon-secondary { color: var(--secondary) !important; }

/* Image & Media */
.img-responsive { width: 100% !important; }

/* Box Shadow */
.shadow-var { box-shadow: var(--shadow) !important; }

/* Font Weight & Style */
.font-weight-600 { font-weight: 600 !important; }
.font-weight-700 { font-weight: 700 !important; }
.font-weight-900 { font-weight: 900 !important; }
.font-family-serif { font-family: 'Playfair Display', serif !important; }
.line-height-1 { line-height: 1 !important; }
.line-height-14 { line-height: 1.4 !important; }
.line-height-18 { line-height: 1.8 !important; }

/* Flex Positioning */
.text-align-center { text-align: center !important; }
.white-space-nowrap { white-space: nowrap !important; }

/* Progress Bar */
.progress-bar-6px { height: 6px !important; }
.progress-bar-bg { background: #eee !important; }
.progress-bar-fill { background: var(--secondary) !important; }

/* Carousel & Slider */
.carousel-overflow { overflow: hidden !important; }
.carousel-caption-overlay { background: rgba(0, 0, 0, .4) !important; border-radius: 10px !important; padding: 8px 14px !important; }

/* Links */
.link-primary { color: var(--primary) !important; font-weight: 600 !important; }


.link-white { color: #fff !important; }

/* Additional Dimensions */
.w-26 { width: 26px !important; }
.h-26 { height: 26px !important; }
.w-28 { width: 28px !important; }
.h-28 { height: 28px !important; }

/* Additional Font Sizes */
.fs-xs-2 { font-size: .62rem !important; }
.fs-md-3 { font-size: .96rem !important; }

/* Additional Padding */
.p-10 { padding: 10px !important; }
.p-2-8 { padding: 2px 8px !important; }
.px-8 { padding-left: 8px !important; padding-right: 8px !important; }
.py-1-5 { padding-top: 1px !important; padding-bottom: 1px !important; }

/* Additional Margin */
.mb-1-5 { margin-bottom: 1.5px !important; }
.mb-6 { margin-bottom: 6px !important; }

/* Additional Border & Styling */
.border-bottom-primary { border-bottom: 0.1px solid rgb(41, 41, 41) !important; }

.border-bottom { border-bottom: 0.1px solid rgb(41, 41, 41) !important; }

/* Positioning */
.flex-1 { flex: 1 !important; }

/* Tab & Button Styling */
.tab-btn-style { padding: 8px 20px !important; }
.btn-outline-style { background: transparent !important; border: 2px solid var(--primary) !important; color: var(--primary) !important; border-radius: 8px !important; padding: 6px 16px !important; font-size: .8rem !important; font-weight: 600 !important; cursor: pointer !important; margin-top: 8px !important; font-family: 'Poppins', sans-serif !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }

/* ===================== RESPONSIVE MEDIA QUERIES ===================== */
@media (max-width: 991px) {
  .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) {
  section {
    padding: 55px 0;
  }
  #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;
  }
}
@media (max-width: 480px) {
  .hcircle {
    width: 220px;
    height: 220px;
  }
  .htitle {
    font-size: 2.4rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
}

/* ===================== CARD BLOCK UTILITY ===================== */
/* Use .card-block when fcard needs column layout (content containers, not icon+text rows) */
.card-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid #f0fdf4;
}

.card-block.card-dark {
  background: var(--dark);
}

.card-block.card-light {
  background: var(--light);
}

.card-block.card-sm {
  padding: 20px;
  border-radius: 14px;
}

.card-block .card-block-title {
  font-size: .9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: block;
}

/* ===================== PAGE SECTION WRAPPER ===================== */
.page-section {
  padding: 70px 0;
}

.page-section.bg-light-section {
  background: var(--light);
}

.page-section.bg-cream-section {
  background: var(--cream);
}

/* ===================== STATUS BADGE ===================== */
.status-badge {
  display: inline-block;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .73rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.status-badge.badge-success  { background: #28a745; }
.status-badge.badge-warning  { background: #ffc107; color: var(--dark); }
.status-badge.badge-danger   { background: #dc3545; }
.status-badge.badge-info     { background: #17a2b8; }
.status-badge.badge-secondary { background: #aaa; }
.status-badge.badge-primary  { background: var(--primary); }

/* ===================== SIDEBAR SECTION TITLE ===================== */
.sidebar-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: block;
}

/* ===================== OUTLINE BUTTON VARIANTS ===================== */
.btn-outline-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: .84rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  border: 2px solid #ddd;
  background: transparent;
  color: #666;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-back:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* ===================== PREMIUM ANIMATIONS ===================== */

/* Fade In Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Floating Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scale Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

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

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

/* Text Reveal Animations */
@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glow Animation */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(29, 154, 71, 0.3), inset 0 0 5px rgba(29, 154, 71, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(29, 154, 71, 0.5), inset 0 0 10px rgba(29, 154, 71, 0.2);
  }
}

/* Playful Wiggle Animation */
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

/* Pop Animation */
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Bounce Playful Animation */
@keyframes bouncePlayful {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

/* Swing Animation */
@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: top center;
  }
  25% {
    transform: rotate(3deg);
    transform-origin: top center;
  }
  75% {
    transform: rotate(-3deg);
    transform-origin: top center;
  }
}

/* Rotate Animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Apply animations to elements */
[data-aos="fade-up"] {
  animation: fadeInUp 0.8s ease-out forwards;
}

[data-aos="fade-down"] {
  animation: fadeInDown 0.8s ease-out forwards;
}

[data-aos="fade-left"] {
  animation: fadeInLeft 0.8s ease-out forwards;
}

[data-aos="fade-right"] {
  animation: fadeInRight 0.8s ease-out forwards;
}

[data-aos="zoom-in"] {
  animation: scaleIn 0.8s ease-out forwards;
}

[data-aos="slide-left"] {
  animation: slideInLeft 0.8s ease-out forwards;
}

[data-aos="slide-right"] {
  animation: slideInRight 0.8s ease-out forwards;
}

/* Hover animations on cards */
.mcard {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mcard:hover {
  transform: translateY(-12px) scale(1.02);
}

.catcard {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.catcard:hover {
  transform: translateY(-10px) scale(1.03);
}

.btn-red {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-red:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.4);
}

/* Floating elements */
.fcard {
  animation: floatSlow 4s ease-in-out infinite;
}

.hcircle {
  animation: float 5s ease-in-out infinite;
}

/* Staggered animations */
.col-sm-6[data-aos-delay],
.col-lg-3[data-aos-delay],
.col-lg-4[data-aos-delay],
.col-md-6[data-aos-delay] {
  opacity: 0;
  animation-fill-mode: both;
}

[data-aos-delay="0"] { animation-delay: 0s; }
[data-aos-delay="80"] { animation-delay: 0.08s; }
[data-aos-delay="160"] { animation-delay: 0.16s; }
[data-aos-delay="240"] { animation-delay: 0.24s; }
[data-aos-delay="320"] { animation-delay: 0.32s; }

/* Smooth transitions on interactive elements */
button,
a,
input,
select,
textarea {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Image reveal animation */
img {
  animation: fadeIn 0.8s ease-out;
}

/* Text animations */
h1, h2, h3, h4, h5, h6 {
  animation: fadeInUp 0.8s ease-out;
}

.htitle {
  animation: textReveal 0.8s ease-out forwards;
}

/* Section fade in */
section {
  animation: fadeIn 0.6s ease-out;
}

/* Parallax effect on scroll */
@media (min-width: 768px) {
  .hcircle,
  .spimgw img {
    perspective: 1000px;
  }
}

/* Enhanced hover effects */
.btn-play:hover,
.madd:hover,
.mhrt:hover {
  animation: pulse 0.6s ease-out;
}

/* Loading animation for dynamic content */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-content {
  animation: slideUp 0.6s ease-out;
}

/* Smooth page transitions */
@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: pageEnter 0.5s ease-out;
}

/* Link hover glow effect */
a:not(.btn-red):not(.nav-link):hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Card glow on hover for dark theme */
.mcard:hover,
.catcard:hover,
.card:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus animations for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  animation: pulse 0.6s ease-out;
}

/* ===================== DASHBOARD STYLES ===================== */

/* Dashboard Menu */
.dashboard-menu {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0fdf4;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.dashboard-menu .nav-link {
  color: #a0a0a0;
  border-radius: 8px;
  padding: 12px 15px;
  transition: 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.dashboard-menu .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.dashboard-menu .nav-link.active {
  background: var(--primary);
  color: black;
}

.dashboard-menu hr {
  background: #333333;
  margin: 15px 0;
}

/* Dashboard Content */
.dashboard-content {
  background: #ffffff !important;
  border: 1px solid #f0fdf4 !important;
  border-radius: 12px !important;
  padding: 30px 20px !important;
}

.dashboard-content .tab-pane {
  animation: slideUp 0.3s ease-out;
}

/* Cart Counter Badge */
.cart-counter {
  font-size: 0.7rem !important;
  padding: 4px 8px !important;
  min-width: 20px !important;
  text-align: center !important;
}

/* Empty States */
.cart-empty,
.address-empty,
.orders-empty,
.products-empty {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 2px dashed #333333;
  color: #a0a0a0;
}

.cart-empty i,
.address-empty i,
.orders-empty i,
.products-empty i {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.5;
  display: block;
}

.cart-empty p,
.address-empty p,
.orders-empty p,
.products-empty p {
  margin: 15px 0;
  font-size: 1rem;
}

.cart-empty a,
.address-empty a,
.orders-empty a,
.products-empty a {
  margin-top: 15px;
  display: inline-block;
}

/* Active Voucher Container */
.active-voucher-container {
  background: rgba(29, 154, 71, 0.1) !important;
  border: 2px solid var(--primary) !important;
  border-radius: 12px !important;
}

.active-voucher-container .badge {
  background: var(--primary) !important;
  color: #ffffff !important;
}

/* Loading State */
.dashboard-content.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner-border {
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.2);
  border-right-color: var(--primary);
}

/* Tables in Dashboard */
.border-less {
  border: none !important;
}

.payment-info-table,
.shipment-info-table {
  color: #ffffff;
}

.payment-info-table td,
.shipment-info-table td,
.payment-info-table th,
.shipment-info-table th {
  border: 0 !important;
  color: #a0a0a0;
  padding: 10px 5px;
}

.payment-info-table th,
.shipment-info-table th {
  color: #ffffff;
  font-weight: 600;
}

/* Address List Items */
.address-list .list-group-item {
  background: #ffffff !important;
  border: 1px solid #f0fdf4 !important;
  border-radius: 8px !important;
  margin-bottom: 10px !important;
  color: #333333 !important;
}

.address-list .list-group-item:hover {
  background: #252525 !important;
}

.address-list .list-group-item.address-is-default {
  border: 2px solid var(--primary) !important;
  background: rgba(29, 154, 71, 0.05) !important;
}

.address-label {
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
}

.address-recipient {
  font-weight: 600;
  color: #ffffff;
  margin: 5px 0;
}

.address-detail {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.address-phone {
  color: #808080;
  font-size: 0.9rem;
}

.address-postal {
  color: #606060;
  font-size: 0.85rem;
}

/* Copy Affiliate Link */
.copy-affiliate-link {
  word-break: break-all;
  user-select: all;
  padding: 10px;
  background: #f5fdf8;
  border: 1px solid #f0fdf4;
  border-radius: 8px;
  color: #666666;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 500;
}

.copy-affiliate-link:hover {
  background: #252525;
  color: #ffffff;
}

/* Order States */
.order-status-badge {
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
}

.order-status-badge.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.order-status-badge.completed {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.order-status-badge.cancelled {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.order-status-badge.processing {
  background: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

/* Checkout Summary */
.checkout-summary {
  background: #ffffff;
  border: 1px solid #f0fdf4;
  border-radius: 12px;
  padding: 20px;
  color: #333333;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0fdf4;
  color: #666666;
}

.checkout-summary-row:last-child {
  border-bottom: none;
}

.checkout-summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d9a47;
  padding: 15px 0;
}

.checkout-summary-label {
  color: #a0a0a0;
}

.checkout-summary-value {
  color: #ffffff;
  font-weight: 600;
}

/* Discount Picker */
.discount-item {
  background: #ffffff;
  border: 2px solid #f0fdf4;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.discount-item:hover {
  border-color: var(--primary);
  background: rgba(29, 154, 71, 0.05);
}

.discount-item.selected {
  border-color: var(--primary);
  background: rgba(29, 154, 71, 0.1);
}

.discount-code {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.discount-description {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin: 5px 0;
}

.discount-expiry {
  color: #606060;
  font-size: 0.85rem;
}

.discount-min-order {
  color: #ffc107;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 5px;
}

.discount-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 5px;
}

.discount-badge.coupon {
  background: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

.discount-badge.voucher {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* Shipment Info */
.shipment-card {
  background: #ffffff;
  border: 1px solid #f0fdf4;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

.shipment-card:hover {
  border-color: var(--primary);
  background: rgba(29, 154, 71, 0.05);
}

.shipment-card.selected {
  border: 2px solid var(--primary);
  background: rgba(29, 154, 71, 0.1);
}

.shipment-carrier {
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
}

.shipment-service {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.shipment-cost {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.shipment-estimate {
  color: #606060;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Invoice/Receipt Styles */
.invoice-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #333333;
}

.invoice-number {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.invoice-date {
  color: #606060;
  font-size: 0.85rem;
}

.invoice-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #333333;
}

.invoice-item-name {
  color: #ffffff;
  flex: 1;
}

.invoice-item-qty {
  color: #a0a0a0;
  margin: 0 15px;
}

.invoice-item-price {
  color: #ffffff;
  font-weight: 600;
  min-width: 100px;
  text-align: right;
}

/* Cursor Pointer */
.cursor-pointer {
  cursor: pointer;
}
