
:root {
  /* Exact Luxury Premium Palette */
  --primary-dark-maroon: #4A0712;
  --secondary-burgundy: #720D1C;
  --antique-gold: #D4A72C;
  --champagne-gold: #F4D77A;
  --warm-ivory-bg: #FFF8E8;
  --soft-cream-card: #FFFDF7;
  --deep-charcoal-text: #24191A;
  --blush-cream-section: #F8E8D0;
  --deep-green-state: #1F5C45;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
  color: #24191A;
  overflow-x: clip;
  background: #FFF8E8;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER FIXED WRAPPER & TOP BAR */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-bar {
  background: #FFFFFF !important;
  border-bottom: 1px solid rgba(212, 167, 44, 0.35) !important;
  color: #4A0712 !important;
  font-size: 13px;
  line-height: 1.2;
  padding: 7px 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.top-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 0 20px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}

.top-bar-left a {
  color: #4A0712 !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
}

.top-bar-left a:hover {
  opacity: 0.85;
}

.top-bar-left i {
  font-size: 13px;
  color: #D4A72C !important;
}

.top-bar-sep {
  opacity: 0.4;
  color: #4A0712 !important;
}

.top-bar-right {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.top-bar-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.top-bar-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: topBarMarquee 20s linear infinite;
  will-change: transform;
}

.top-bar-marquee-content {
  display: inline-flex;
  white-space: nowrap;
}

.top-bar-marquee-content span {
  color: #4A0712 !important;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@keyframes topBarMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* NAVBAR */
.navbar {
  background: #FFFFFF !important;
  border-bottom: 2px solid #D4A72C !important;
  position: relative;
  overflow: visible;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

body {
  padding-top: 115px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #fef7f7 !important;
}

.logo img {
  height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
}

.logo i {
  color: #720D1C;
  margin-right: 3px;
}

.logo span {
  color: #720D1C;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu a {
  font-size: 15px;
  font-weight: 700;
  color: #4A0712 !important;
  padding: 6px 0;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-menu a i {
  font-size: 13px;
  color: #D4A72C;
  opacity: 0.85;
}

.main-menu a:hover i,
.main-menu a.active i {
  opacity: 1;
  color: #720D1C;
}

.main-menu a:hover,
.main-menu a.active {
  color: #720D1C !important;
}

.main-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #D4A72C;
  border-radius: 2px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 4px;
  padding-right: 14px;
  border-right: 1px solid rgba(245, 184, 0, 0.4);
}

.nav-social a {
  font-size: 14px;
  color: #24191A;
  transition: 0.3s;
}

.nav-cart-icon-wrap {
  color: #4A0712 !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: color 0.2s ease;
}

.nav-cart-icon-wrap:hover {
  color: #720D1C !important;
}

.nav-social a:hover {
  color: #720D1C;
}

.nav-icons a {
  font-size: 28px;
  color: #24191A;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #720D1C;
}

.navbar .nav-icons a.login-text,
.nav-icons a.login-text,
.login-text,
a.login-text {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #D4A72C 0%, #C4951E 100%) !important;
  color: #4A0712 !important;
  padding: 9px 24px !important;
  border-radius: 25px !important;
  border: 1.5px solid #D4A72C !important;
  box-shadow: 0 3px 10px rgba(212, 167, 44, 0.35) !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.navbar .nav-icons a.login-text:hover,
.nav-icons a.login-text:hover,
.login-text:hover,
a.login-text:hover {
  background: #4A0712 !important;
  color: #F4D77A !important;
  border-color: #4A0712 !important;
  box-shadow: 0 4px 15px rgba(74, 7, 18, 0.3) !important;
  transform: translateY(-1px) !important;
}

.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 18px;
  color: #24191A;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.nav-cart-link:hover {
  border-color: #720D1C;
  box-shadow: 0 2px 12px rgba(245, 196, 0, 0.15);
}

.nav-cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-cart-link i {
  font-size: 22px;
}

.nav-cart-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  background: #D4A72C;
  color: #380202;
  font-weight: 800;
  border: 1px solid #ffffff;
  color: #FFF8E8;
  border: 1px solid #D4A72C;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
  z-index: 2;
}

.nav-cart-divider {
  width: 1px;
  height: 30px;
  background: #e0e0e0;
}

.nav-cart-amount {
  font-size: 20px;
  font-weight: 800;
  color: #720D1C;
  white-space: nowrap;
}

.cart-wrap {
  position: relative;
}

.badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: #720D1C;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #000000 !important;
  cursor: pointer;
}

.menu-btn i {
  color: #000000 !important;
}

/* SLIDER - Full Width Image Banner */
/* =========================================
   HERO IMAGE SLIDER
========================================= */

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: #4A0712;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s ease-in-out;

  border-radius: 0;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}


/* =========================================
   LEFT / RIGHT NAVIGATION
========================================= */

.arr {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  z-index: 10;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.75);
  color: #24191A;

  font-size: 17px;

  cursor: pointer;

  transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

  backdrop-filter: blur(5px);
}

.arr:hover {
  background: #720D1C;
  color: #FFF8E8;
  transform: translateY(-50%) scale(1.08);
}

.arr-l {
  left: 20px;
}

.arr-r {
  right: 20px;
}

.arr i {
  pointer-events: none;
}


/* =========================================
   DOT NAVIGATION
========================================= */

.dots {
  position: absolute;

  left: 50%;
  bottom: 20px;

  transform: translateX(-50%);

  z-index: 10;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 9px 15px;

  background: rgba(0, 0, 0, 0.25);

  border-radius: 30px;

  backdrop-filter: blur(6px);
}

.dot {
  width: 10px;
  height: 10px;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);

  cursor: pointer;

  transition: all 0.3s ease;
}

.dot:hover {
  background: #fff;
}

.dot.active {
  width: 26px;
  border-radius: 10px;
  background: #D4A72C;
}


/* =========================================
   REMOVE OLD HERO CONTENT
========================================= */

.slide-bg,
.slide-inner,
.slide-left,
.mini-cats,
.btn-orange {
  display: none !important;
}


.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.1) 75%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  border-radius: 16px;
}

.slide-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.slide-left {
  max-width: 580px;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-left h1 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-left h1 em {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  color: #D4A72C;
  font-size: 48px;
  font-weight: 700;
}

.slide-left>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* mini category icons */
.mini-cats {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.mini-cats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.mini-cats i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #D4A72C;
}

/* orange button */
.btn-orange {
  display: inline-block;
  padding: 13px 28px;
  background: linear-gradient(135deg, #D4A72C, #F4D77A);
  color: #4A0712;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  border: 1px solid #D4A72C;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(212, 167, 44, 0.3);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  border: 1px solid #D4A72C;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(215, 25, 32, 0.35);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  border: 1px solid #D4A72C;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(148, 0, 0, 0.3);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 13, 13, 0.35);
}

/* arrows */
.arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.arr i {
  pointer-events: none;
}

.arr:hover {
  background: #720D1C;
}

.arr-l {
  left: 18px;
}

.arr-r {
  right: 18px;
}

/* dots */
.dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  pointer-events: auto;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.5);
  pointer-events: auto;
}

.dot.active {
  background: #720D1C;
  border-color: #720D1C;
  width: 10px;
}

/* EXPLORE BY CATEGORY */
.explore-section {
  padding: 60px 0;
  text-align: center;
  background: #FFF8E8;
}

.explore-title {
  font-size: 24px;
  font-weight: 800;
  color: #4A0712;
  margin-bottom: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.explore-title i {
  color: #D4A72C;
  font-size: 16px;
  margin: 0 10px;
  font-size: 16px;
  margin: 0 10px;
  font-size: 16px;
  margin: 0 10px;
  font-size: 16px;
  margin: 0 10px;
  font-size: 14px;
  margin: 0 10px;
}

.explore-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.explore-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.explore-item:hover {
  transform: translateY(-4px);
}

.explore-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #D4A72C;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4A0712, #720D1C);
  padding: 10px;
  box-shadow: 0 4px 15px rgba(74, 7, 18, 0.25);
  padding: 10px;
  box-shadow: 0 4px 15px rgba(215, 25, 32, 0.12);
  padding: 10px;
  box-shadow: 0 4px 15px rgba(148, 0, 0, 0.25);
  padding: 10px;
  box-shadow: 0 4px 15px rgba(122, 0, 0, 0.25);
  transition: 0.3s;
}

.explore-item:hover .explore-circle {
  border-color: #D4A72C;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 199, 0, 0.35);
  box-shadow: 0 6px 20px rgba(184, 13, 13, 0.15);
}

.explore-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.explore-item span {
  font-size: 13.5px;
  font-weight: 700;
  color: #24191A;
}

/* FEATURES */
.features-section {
  padding: 50px 0;
  background: #4A0712;
  border-top: 2px solid #D4A72C;
  border-top: 2px solid #D4A72C;
  border-top: 1px solid #D4A72C;
  border-top: 1px solid #D4A72C;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  text-align: center;
  padding: 25px 12px;
}

.feature-card i {
  font-size: 36px;
  color: #D4A72C;
  margin-bottom: 12px;
  margin-bottom: 12px;
  margin-bottom: 12px;
  margin-bottom: 12px;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #FFFDF7;
}

.feature-card p {
  font-size: 13px;
  color: #F8E8D0;
}

/* FOOTER */
.footer {
  background: #4A0712;
  color: #FFFDF7;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.3fr 1.4fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-col h3 {
  font-size: 20px;
  color: #F4D77A;
  margin-bottom: 12px;
}

.footer-col h3 i {
  color: #D4A72C;
  margin-right: 4px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #F4D77A;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #D4A72C;
  border-radius: 2px;
}

.footer-col p {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.75;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-col p i {
  color: #D4A72C;
  width: 18px;
  min-width: 18px;
  font-size: 14px;
  margin-top: 4px;
  text-align: center;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: #F8E8D0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: #F4D77A;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #720D1C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A72C;
  font-size: 16px;
  border: 1px solid #D4A72C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A72C;
  border: 1px solid #D4A72C;
  font-size: 16px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #D4A72C;
  color: #380202;
}

.footer-map iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

.footer-bottom a {
  color: #D4A72C;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: #F4D77A;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #ffffff, #FFF8E8);
  padding: 55px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 15px;
  color: #555555;
}

/* PRODUCTS */
.products-section {
  padding: 55px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.product-card {
  background: #FFFDF7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(74, 7, 18, 0.08);
  transition: 0.3s;
  border: 1px solid rgba(212, 167, 44, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 1px solid rgba(255, 199, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  border: 1px solid rgba(255, 204, 0, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border: 1px solid #e8e8e8;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 28px rgba(184, 13, 13, 0.15),
    0 0 20px rgba(245, 184, 0, 0.15);
}

.product-img {
  height: 170px;
  background: linear-gradient(135deg, #FFF8E8, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: #720D1C;
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 6px;
  margin-bottom: 6px;
}

.product-price {
  font-size: 17px;
  font-weight: 800;
  color: #720D1C;
  margin-bottom: 12px;
  margin-bottom: 12px;
  margin-bottom: 12px;
  margin-bottom: 12px;
  margin-bottom: 12px;
}

.old-price {
  font-size: 13px;
  color: #b8c0d0;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 5px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  width: 100%;
}

/* ABOUT */
.about-section {
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.about-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-stats {
  display: flex;
  gap: 35px;
  margin-top: 25px;
}

.stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: #720D1C;
}

.stat p {
  font-size: 13px;
  color: #888;
}

.about-icon {
  font-size: 180px;
  color: #720D1C;
  opacity: 0.12;
  text-align: center;
}

/* CONTACT */
.contact-section {
  padding: 70px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 45px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 26px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.info-item i {
  font-size: 20px;
  color: #720D1C;
  margin-top: 3px;
}

.info-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 3px;
}

.info-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #720D1C;
  box-shadow: 0 0 0 3px rgba(184, 13, 13, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* PROMO CARDS */
.promo-section {
  padding: 60px 0;
}

/* BESTSELLERS */
.bestseller-section {
  padding: 55px 0;
  background: #F8E8D0;
  border-top: 2px solid #D4A72C;
  border-bottom: 2px solid #D4A72C;
  position: relative;
  border-top: 2px solid #D4A72C;
  border-bottom: 2px solid #D4A72C;
  position: relative;
  border-top: 2px solid #D4A72C;
  border-bottom: 2px solid #D4A72C;
  position: relative;
  border-top: 2px solid #D4A72C;
  border-bottom: 2px solid #D4A72C;
  position: relative;
  border-top: 1px solid rgba(245, 184, 0, 0.2);
  border-bottom: 1px solid rgba(245, 184, 0, 0.2);
  position: relative;
}

.bestseller-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.bestseller-sub {
  font-size: 12px;
  font-weight: 600;
  color: #720D1C;
  letter-spacing: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bestseller-title {
  font-size: 30px;
  font-weight: 800;
  color: #4A0712;
  margin-top: 2px;
  margin-top: 2px;
  margin-top: 2px;
  margin-top: 2px;
  margin-top: 2px;
}

.view-all {
  font-size: 13px;
  font-weight: 600;
  color: #720D1C;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.view-all:hover {
  gap: 10px;
  color: #fff;
}

.bestseller-swiper .swiper-slide {
  width: 280px;
  height: auto;
  min-height: 420px;
  border-radius: 16px;
  transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
  position: relative;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #720D1C;
}

.bestseller-swiper .swiper-slide .bs-card-inner {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bestseller-swiper .swiper-slide-active .bs-card-inner {
  background: #fff;
}

.bestseller-swiper .swiper-button-prev,
.bestseller-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e8e8e8;
  color: #24191A;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bestseller-swiper .swiper-button-prev::after,
.bestseller-swiper .swiper-button-next::after {
  font-size: 16px;
}

.bestseller-swiper .swiper-button-prev:hover,
.bestseller-swiper .swiper-button-next:hover {
  background: #720D1C;
  border-color: #720D1C;
  color: #fff;
}

.bestseller-swiper .swiper-button-prev {
  left: 16px;
}

.bestseller-swiper .swiper-button-next {
  right: 16px;
}

.bestseller-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bs-badge {
  display: none;
}

.bs-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px;
}

.bs-img img {
  max-height: 150px;
  max-width: 80%;
  object-fit: contain;
}

.bs-info {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bs-category {
  font-size: 11px;
  font-weight: 700;
  color: #720D1C;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bs-brand-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #720D1C;
  padding: 2px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 2px;
}

.bs-info h4 {
  font-size: 17px;
  font-weight: 800;
  color: #24191A;
  margin: 2px 0 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 2px;
}

.bs-stars i {
  font-size: 13px;
  color: #F4D77A;
}

.bs-stars span {
  font-size: 12px;
  color: #888;
  margin-left: 4px;
}

.bs-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bs-price {
  font-size: 22px;
  font-weight: 800;
  color: #720D1C;
}

.bs-mrp {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.bs-save {
  font-size: 11px;
  font-weight: 600;
  color: #1F5C45;
  background: #F8E8D0;
  padding: 3px 8px;
  border-radius: 4px;
}

.bs-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 6px 0;
}

.bs-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.bs-meta i {
  margin-right: 4px;
  color: #720D1C;
}

.bs-meta-sep {
  color: #ddd;
}

.bs-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  margin-top: auto;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}

.bs-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 196, 0, 0.4);
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(245, 196, 0, 0.6);
  border-radius: 50%;
  animation: sparkleAnim 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 25%;
  left: 30%;
  animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
  top: 10%;
  left: 55%;
  animation-delay: 1s;
}

.sparkle:nth-child(4) {
  top: 35%;
  left: 75%;
  animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
  top: 20%;
  left: 90%;
  animation-delay: 2s;
}

.sparkle:nth-child(6) {
  top: 60%;
  left: 20%;
  animation-delay: 0.7s;
}

.sparkle:nth-child(7) {
  top: 70%;
  left: 50%;
  animation-delay: 1.3s;
}

.sparkle:nth-child(8) {
  top: 55%;
  left: 85%;
  animation-delay: 1.8s;
}

.sparkle:nth-child(9) {
  top: 45%;
  left: 5%;
  animation-delay: 0.3s;
}

.sparkle:nth-child(10) {
  top: 80%;
  left: 40%;
  animation-delay: 2.2s;
}

.sparkle:nth-child(11) {
  top: 5%;
  left: 65%;
  animation-delay: 0.9s;
}

.sparkle:nth-child(12) {
  top: 40%;
  left: 95%;
  animation-delay: 1.6s;
}

@keyframes sparkleAnim {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* EXPERIENCE STUDIO */
.experience-section {
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.experience-container {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}

.experience-text {
  flex: 0 0 280px;
  padding-right: 30px;
}

.experience-label {
  font-size: 11px;
  font-weight: 700;
  color: #720D1C;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.experience-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: #24191A;
  margin: 8px 0 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.experience-text h2 em {
  color: #720D1C;
  font-style: italic;
  font-family: "Dancing Script", cursive;
  font-size: 38px;
  font-weight: 700;
  display: block;
}

.experience-text p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.experience-link {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.experience-link:hover {
  gap: 12px;
  color: #720D1C;
}

.experience-cards {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  padding: 20px 40px 20px 0;
  gap: 14px;
}

.exp-card {
  width: 130px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.exp-card:nth-child(1) {
  transform: rotate(6deg) translateY(0);
}

.exp-card:nth-child(2) {
  transform: rotate(6deg) translateY(0);
}

.exp-card:nth-child(3) {
  transform: rotate(6deg) translateY(0);
}

.exp-card:nth-child(4) {
  transform: rotate(6deg) translateY(0);
}

.exp-card:nth-child(5) {
  transform: rotate(6deg) translateY(0);
}

.exp-card:nth-child(6) {
  transform: rotate(6deg) translateY(0);
}

/* OUR STORY */
.our-story-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.our-story-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.our-story-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.our-story-text h2 {
  font-size: 34px;
  font-weight: 900;
  color: #24191A;
  margin-bottom: 4px;
}

.our-story-text h2 span {
  color: #720D1C;
}

.our-story-line {
  width: 60px;
  height: 3px;
  background: #720D1C;
  margin-bottom: 16px;
  border-radius: 2px;
}

.our-story-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

.story-spark {
  position: absolute;
  width: 80px;
  pointer-events: none;
  opacity: 0.7;
}

.story-spark-r {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.story-spark-r2 {
  right: 20px;
  top: 15%;
  width: 50px;
  opacity: 0.5;
  transform: rotate(30deg);
}

.story-spark-tr {
  right: 60px;
  top: -20px;
  width: 40px;
  opacity: 0.4;
  transform: rotate(-20deg);
}

.story-spark-l {
  left: -10px;
  bottom: 10%;
  transform: rotate(180deg);
}

.story-spark-l2 {
  left: 10px;
  top: 20%;
  width: 50px;
  opacity: 0.5;
  transform: rotate(45deg);
}

.story-spark-bl {
  left: 40px;
  bottom: -15px;
  width: 45px;
  opacity: 0.4;
  transform: rotate(-30deg);
}

.our-story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}

.story-mission {
  background: #ffffff;
}

.story-vision {
  background: #ffffff;
}

.story-values {
  background: #ffffff;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.story-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #fff;
}

.mission-icon {
  background: #D4A72C;
}

.vision-icon {
  background: #720D1C;
}

.values-icon {
  background: #1F5C45;
}

.story-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 10px;
}

.story-card h4 span {
  color: #720D1C;
}

.story-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.story-values ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.story-values li {
  padding: 5px 0;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-values li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #1F5C45;
  border-radius: 50%;
  flex-shrink: 0;
}

/* SAFETY IS OUR TRADITION */
.safety-tradition-section {
  padding: 40px 0;
  background: #ffffff;
  overflow: visible;
  position: relative;
}

.safety-tradition-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  background: #FFF8E8;
  border-radius: 18px;
  gap: 16px;
  position: relative;
  border: 1.5px solid #720D1C;
  box-shadow: 0 4px 20px rgba(245, 196, 0, 0.1);
}

.safety-tradition-left {
  flex: 0 0 260px;
  padding-right: 10px;
}

.safety-tradition-text h2 {
  font-size: 22px;
  font-weight: 900;
  color: #24191A;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.safety-tradition-text p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 14px;
}

.safety-tradition-btn {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid transparent;
  background:
    linear-gradient(#FFF8E8, #FFF8E8) padding-box,
    linear-gradient(135deg, #D4A72C, #F4D77A) border-box;
  color: #D4A72C;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}

.safety-tradition-btn:hover {
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #fff;
}

.safety-tradition-right {
  flex: 1;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
}

.safety-icons-img {
  width: 85%;
  height: auto;
  object-fit: contain;
}

.safety-rocket-img {
  width: 90px;
  height: auto;
  object-fit: contain;
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: 5;
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-card:hover {
  transform: rotate(0deg) scale(1.05) !important;
  z-index: 10;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-card {
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  min-height: 200px;
  transition: 0.3s;
}

.promo-card:nth-child(1) {
  background: linear-gradient(135deg, #FFF8E8, #FFF8E8);
}

.promo-card:nth-child(2) {
  background: linear-gradient(135deg, #FFF8E8, #FFF8E8);
}

.promo-card:nth-child(3) {
  background: linear-gradient(135deg, #ffffff, #FFF8E8);
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.promo-text {
  flex: 1;
}

.promo-label {
  font-size: 11px;
  font-weight: 700;
  color: #720D1C;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.promo-label.red {
  color: #720D1C;
}

.promo-label.green {
  color: #1F5C45;
}

.promo-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #24191A;
  line-height: 1.3;
  margin-bottom: 18px;
}

.promo-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #D4A72C;
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  text-decoration: none;
}

.promo-btn:hover {
  background: #D4A72C;
}

.promo-img {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-menu {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 18px;
    gap: 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .main-menu.show {
    display: flex;
  }

  .slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 580px;
  margin: 0;
  overflow: hidden;
  background: #2b0000;
}

  .slides {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    border-radius: 0;
    transition: opacity 0.8s ease-in-out !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #4A0712;
  }

  .slide.active {
    opacity: 1 !important;
    z-index: 1;
  }

  .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .slide-inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 20px 60px;
    min-height: 100%;
    position: relative;
    z-index: 2;
  }

  .slide-left {
    max-width: 100%;
    padding-left: 55px;
    padding-right: 15px;
  }

  .slide-left h1 {
    font-size: 26px;
  }

  .slide-left h1 em {
    font-size: 32px;
  }

  .slide-left>p {
    font-size: 12px;
  }

  .mini-cats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .mini-cats span {
    font-size: 10px;
  }

  .mini-cats i {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .arr {
    width: 36px;
    height: 36px;
    font-size: 14px;
    top: 50%;
    position: absolute;
  }

  .arr-l {
    left: 10px;
  }

  .arr-r {
    right: 10px;
  }

  .dots {
    bottom: 15px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-img {
    width: 120px;
    height: 120px;
    margin-top: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .our-story-grid {
    grid-template-columns: 1fr;
  }

  .our-story-cards {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bestseller-section {
    padding: 30px 0 40px;
  }

  .bestseller-header {
    padding: 0 20px;
  }

  .bestseller-swiper .swiper-slide {
    width: 240px;
    min-height: 400px;
  }

  .bestseller-swiper .swiper-slide .bs-card-inner {
    padding: 16px;
  }

  .bs-img img {
    max-height: 130px;
  }

  .experience-container {
    flex-direction: column;
    padding: 20px;
  }

  .experience-text {
    flex: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .experience-text h2 {
    white-space: normal;
  }

  .experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
  }

  .safety-tradition-container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .safety-tradition-left {
    flex-direction: column;
    align-items: center;
  }

  .safety-tradition-right {
    width: 100%;
  }

  .safety-icons-img {
    max-width: 100%;
  }

  .exp-card {
    width: 100%;
    height: 180px;
    margin-left: 0;
    transform: none !important;
  }

  .exp-card:hover {
    transform: scale(1.05) !important;
  }
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
  background: linear-gradient(135deg, #ffffff 0%, #FFF8E8 100%);
  padding: 80px 0 50px;
  text-align: center;
}

.page-banner h1 {
  font-size: 36px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 8px;
}

.page-banner p {
  font-size: 15px;
  color: #555555;
}

.page-banner a,
.page-banner .breadcrumb {
  font-size: 13px;
  color: #555555;
}

/* ==================== ABOUT PAGE ==================== */
.about-story {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  color: #720D1C;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #24191A;
  margin: 10px 0 16px;
}

.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-stats .stat-item {
  text-align: center;
}

.about-stats .stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #720D1C;
}

.about-stats .stat-item span {
  font-size: 12px;
  color: #888;
}

.about-image img {
  width: 100%;
  max-width: 400px;
}

.about-mission {
  padding: 60px 0;
  background: #ffffff;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 22px;
}

.mission-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ==================== CONTACT PAGE ==================== */
.contact-cards-section {
  padding: 50px 0 0;
  background: #ffffff;
}

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.contact-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
}

.ci-phone {
  background: #FFF8E8;
  color: #720D1C;
}

.ci-email {
  background: #FFF8E8;
  color: #720D1C;
}

.ci-visit {
  background: #FFF8E8;
  color: #720D1C;
}

.ci-whatsapp {
  background: #FFF8E8;
  color: #720D1C;
}

.contact-card-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 6px;
}

.contact-card-item .cc-number {
  font-size: 15px;
  font-weight: 700;
  color: #720D1C;
  margin-bottom: 4px;
}

.contact-card-item .cc-email {
  font-size: 13px;
  font-weight: 600;
  color: #1F5C45;
  margin-bottom: 4px;
}

.contact-card-item p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

.cc-spark {
  position: absolute;
  width: 50px;
  pointer-events: none;
  opacity: 0.5;
}

.cc-spark-tr {
  right: -8px;
  top: -8px;
  transform: rotate(30deg);
}

.contact-main-section {
  padding: 50px 0;
  background: #fff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-side {
  position: relative;
  overflow: visible;
}

.contact-form-side h2,
.contact-map-side h2 {
  font-size: 28px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 4px;
}

.contact-form-side h2 span,
.contact-map-side h2 span {
  color: #720D1C;
}

.contact-form-line {
  width: 50px;
  height: 3px;
  background: #720D1C;
  margin-bottom: 14px;
  border-radius: 2px;
}

.contact-form-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  box-sizing: border-box;
  background: #fafafa;
  color: #24191A;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #720D1C;
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.15);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 196, 0, 0.4);
}

.contact-map-side {
  padding-top: 10px;
}

.contact-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-map-wrap iframe {
  display: block;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid #24191A;
  color: #24191A;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-directions:hover {
  background: #24191A;
  color: #fff;
}

.contact-trust-section {
  padding: 30px 0 50px;
  background: #ffffff;
}

.contact-trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.contact-trust-item {
  text-align: center;
  padding: 20px 12px;
}

.ct-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #720D1C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  border: 1px solid #eee;
}

.contact-trust-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 4px;
}

.contact-trust-item p {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* ==================== SAFETY PAGE ==================== */
.safety-banner {
  background: linear-gradient(135deg, #720D1C 0%, #720D1C 100%);
}

.safety-section {
  padding: 80px 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.safety-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
}

.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #720D1C;
}

.safety-icon {
  width: 56px;
  height: 56px;
  background: #FFF8E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #1F5C45;
  font-size: 22px;
}

.safety-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 8px;
}

.safety-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* SAFETY GUIDELINES */
.safety-guidelines-section {
  padding: 50px 0;
  background: #fff;
  text-align: center;
}

.safety-guidelines-title {
  font-size: 28px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 30px;
}

.safety-guidelines-title span {
  color: #720D1C;
}

.safety-guidelines-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.safety-guide-card {
  background: #fff;
  padding: 20px 14px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}

.safety-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.safety-guide-card {
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  transition: 0.3s;
}

.safety-guide-card:nth-child(1) {
  background: #FFF8E8;
}

.safety-guide-card:nth-child(2) {
  background: #f3f0ff;
}

.safety-guide-card:nth-child(3) {
  background: #ffffff;
}

.safety-guide-card:nth-child(4) {
  background: #fdecea;
}

.safety-guide-card:nth-child(5) {
  background: #F8E8D0;
}

.safety-guide-card:nth-child(6) {
  background: #F8E8D0;
}

.safety-guide-card:nth-child(7) {
  background: #F8E8D0;
}

.safety-guide-card:nth-child(8) {
  background: #e8eaf6;
}

.safety-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.safety-guide-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-guide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.safety-guide-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 6px;
}

.safety-guide-card p {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

/* DOS AND DONTS */
.dos-donts-section {
  padding: 50px 0;
  background: #ffffff;
}

.dos-donts-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 30px;
}

.dos-donts-title span {
  color: #720D1C;
}

.dos-donts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dos-card,
.donts-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.dos-card {
  border: 2px solid #FFF8E8;
}

.donts-card {
  border: 2px solid #fdecea;
}

.dos-header,
.donts-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dos-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1F5C45;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.donts-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #720D1C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.dos-header h3,
.donts-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #24191A;
  margin: 0;
}

.dos-card ul,
.donts-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.dos-card li,
.donts-card li {
  padding: 6px 0;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
}

.dos-card li i {
  color: #1F5C45;
  font-size: 14px;
  flex-shrink: 0;
}

.donts-card li i {
  color: #720D1C;
  font-size: 14px;
  flex-shrink: 0;
}

.dos-img,
.donts-img {
  text-align: right;
}

.dos-img img,
.donts-img img {
  max-height: 180px;
  object-fit: contain;
}

.dos-img {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.donts-img {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.safety-emergency {
  padding: 0 0 80px;
}

.emergency-box {
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency-box i {
  font-size: 28px;
}

.emergency-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.emergency-box p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* ==================== CELEBRATION GALLERY ==================== */
.gallery-section {
  padding: 50px 0;
  background: #fff;
}

.gallery-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}

.gallery-text {
  flex-shrink: 0;
  width: 200px;
}

.gallery-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #24191A;
  line-height: 1.15;
  margin-bottom: 8px;
}

.gallery-cursive {
  font-family: "Dancing Script", cursive;
  color: #720D1C;
  font-weight: 700;
  font-size: 36px;
}

.gallery-text p {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
  line-height: 1.6;
}

.gallery-btn {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid #D4A72C;
  color: #D4A72C;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.gallery-btn:hover {
  background: #D4A72C;
  color: #fff;
}

.gallery-slider-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex-shrink: 0;
  width: 210px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.75) 100%);
}

.gallery-card-overlay span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.gallery-card-overlay p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #24191A;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover {
  background: #720D1C;
  color: #fff;
}

.gallery-arrow-left {
  left: 10px;
}

.gallery-arrow-right {
  right: 10px;
}

/* ==================== WHY SHOP ==================== */
.whyshop-section {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.whyshop-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 28px;
}

.whyshop-title em {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  color: #720D1C;
  font-size: 28px;
}

.whyshop-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  text-align: center;
}

.whyshop-item {
  padding: 16px 8px;
  border-radius: 12px;
  transition: 0.3s;
}

.whyshop-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.whyshop-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 10px;
}

.whyshop-item:nth-child(1) .whyshop-icon {
  background: #F8E8D0;
  color: #D4A72C;
}

.whyshop-item:nth-child(2) .whyshop-icon {
  background: #fce4ec;
  color: #720D1C;
}

.whyshop-item:nth-child(3) .whyshop-icon {
  background: #FFF8E8;
  color: #1F5C45;
}

.whyshop-item:nth-child(4) .whyshop-icon {
  background: #F8E8D0;
  color: #D4A72C;
}

.whyshop-item:nth-child(5) .whyshop-icon {
  background: #F8E8D0;
  color: #720D1C;
}

.whyshop-item:nth-child(6) .whyshop-icon {
  background: #FFF8E8;
  color: #F4D77A;
}

.whyshop-num {
  font-size: 20px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 2px;
}

.whyshop-label {
  font-size: 12px;
  color: #888;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-section {
  padding: 50px 0;
  background: #fff;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.testimonial-title {
  font-size: 24px;
  font-weight: 800;
  color: #720D1C;
}

.testimonial-light {
  font-weight: 400;
  color: #24191A;
}

.testimonial-arrows {
  display: flex;
  gap: 8px;
}

.testimonial-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.testimonial-arrow:hover {
  border-color: #720D1C;
  color: #720D1C;
}

.testimonial-track-wrap {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #f0f8f0;
  color: #1F5C45;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.testimonial-badge i {
  font-size: 10px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars i {
  font-size: 12px;
  color: #720D1C;
}

.testimonial-text {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
}

.testimonial-author-info span {
  font-size: 11px;
  color: #888;
}

.testimonial-quote-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #720D1C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ==================== COMBO SECTION ==================== */
.combo-section {
  padding: 40px 0;
  background: #ffffff;
}

.combo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
}

.combo-left {
  flex-shrink: 0;
  width: 240px;
}

.combo-left img {
  width: 100%;
  height: auto;
}

.combo-center {
  flex: 1;
  max-width: 750px;
  text-align: center;
  padding: 0 20px;
}

.combo-center h2 {
  font-size: 26px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 4px;
}

.combo-center>p {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.combo-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}

.combo-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}

.combo-arrow:hover {
  border-color: #720D1C;
  color: #720D1C;
  background: #FFF8E8;
}

.combo-items {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.combo-items::-webkit-scrollbar {
  display: none;
}

.combo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: grab;
  transition: 0.3s;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px dashed #ddd;
  min-width: 110px;
  flex-shrink: 0;
}

.combo-item:hover {
  transform: translateY(-3px);
  border-color: #720D1C;
  background: #fff;
}

.combo-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.combo-item-name {
  font-size: 11px;
  font-weight: 600;
  color: #555;
}

.combo-item-price {
  font-size: 11px;
  font-weight: 700;
  color: #720D1C;
}

.combo-drop-zone {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 14px 20px;
  color: #aaa;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}

.combo-drop-zone.over {
  border-color: #720D1C;
  background: rgba(245, 196, 0, 0.08);
}

.combo-drop-zone span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.combo-right {
  flex-shrink: 0;
  width: 240px;
}

.combo-panel {
  background: linear-gradient(135deg, #ffffff, #d0ddf0);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid #b0c8e8;
}

.combo-panel h4 {
  font-size: 15px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 10px;
}

.combo-panel-img {
  margin-bottom: 10px;
}

.combo-panel-img img {
  max-width: 160px;
  height: auto;
}

.combo-panel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #888;
}

.combo-price {
  font-size: 20px;
  font-weight: 800;
  color: #24191A;
}

.combo-view-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #24191A;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.combo-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 196, 0, 0.3);
}

/* ==================== COMBO MODAL ==================== */
.combo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.combo-modal-overlay.active {
  display: flex;
}

.combo-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.combo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
}

.combo-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #24191A;
}

.combo-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  transition: 0.3s;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.combo-modal-close:hover {
  background: #f5f5f5;
  color: #24191A;
}

.combo-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  min-height: 120px;
}

.combo-modal-empty {
  text-align: center;
  color: #aaa;
  font-size: 13px;
  padding: 30px 0;
}

.combo-modal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.combo-modal-item:last-child {
  border-bottom: none;
}

.combo-modal-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #f9f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.combo-modal-item-img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.combo-modal-item-info {
  flex: 1;
}

.combo-modal-item-info h5 {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 2px;
}

.combo-modal-item-info span {
  font-size: 12px;
  color: #720D1C;
  font-weight: 600;
}

.combo-modal-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.combo-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.combo-qty-btn:hover {
  border-color: #720D1C;
  color: #720D1C;
}

.combo-qty-val {
  font-size: 14px;
  font-weight: 700;
  color: #24191A;
  min-width: 20px;
  text-align: center;
}

.combo-modal-item-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  padding: 4px;
}

.combo-modal-item-remove:hover {
  color: #720D1C;
}

.combo-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.combo-modal-total {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #24191A;
}

.combo-modal-add-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #24191A;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.combo-modal-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 79, 160, 0.3);
}

/* ==================== TRUST BADGES ==================== */
.trust-section {
  padding: 30px 0;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  border-radius: 12px;
  transition: 0.3s;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-item:nth-child(1) .trust-icon {
  background: #F8E8D0;
  color: #D4A72C;
}

.trust-item:nth-child(2) .trust-icon {
  background: #FFF8E8;
  color: #1F5C45;
}

.trust-item:nth-child(3) .trust-icon {
  background: #FFF8E8;
  color: #F4D77A;
}

.trust-item:nth-child(4) .trust-icon {
  background: #F8E8D0;
  color: #D4A72C;
}

.trust-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

/* ==================== PRODUCTS PAGE ==================== */
.prod-info-bar {
  background: #ffffff;
  padding: 20px 0;
}

.prod-info-row {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.prod-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pii-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F8E8D0;
  color: #720D1C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pii-icon.pii-purple {
  background: #F8E8D0;
  color: #720D1C;
}

.pii-icon.pii-green {
  background: #FFF8E8;
  color: #1F5C45;
}

.prod-info-item strong {
  font-size: 13px;
  color: #24191A;
}

.prod-info-item span {
  font-size: 14px;
  font-weight: 700;
  color: #720D1C;
}

.prod-table-section {
  background: #fff;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
}

.prod-table-layout {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.prod-table-main {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  position: relative;
}

.product-scroll-area {
  max-height: calc(100vh - 115px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #D4A72C;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.prod-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  bottom: 0;
  background: #fff;
  z-index: 20;
  border-top: 2px solid #D4A72C;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.prod-table-wrap {
  flex: 1;
  max-height: none;
  overflow: visible;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.prod-marquee {
  background: linear-gradient(90deg, #720D1C, #720D1C);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
  overflow: hidden;
  white-space: nowrap;
}

/* FILTER CART CARD */
.prod-filter-cart {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  border-radius: 10px;
  padding: 8px 10px;
  gap: 10px;
  flex-shrink: 0;
}

.pfc-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pfc-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.pfc-amount {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.pfc-checkout {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s;
}

.pfc-checkout:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.pfc-cart-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #D4A72C;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.pfc-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #720D1C;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}



.prod-filter-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.prod-cat-select,
.prod-sort-select {
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: #555;
  background: #fff;
  cursor: pointer;
}

.prod-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.prod-search {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.prod-search:focus {
  outline: none;
  border-color: #720D1C;
}

.prod-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
}

.prod-filter-btn {
  padding: 10px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: #555;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.prod-filter-btn:hover {
  border-color: #720D1C;
  color: #720D1C;
}

.prod-table-wrap {
  overflow: visible;
  flex: 1;
  min-height: 0;
}

/* ===== DESKTOP TABLE ===== */
.prod-mobile-list {
  display: none;
}

.prod-desktop-list {
  display: block;
}

.prod-table {
  width: 100%;
  border-collapse: collapse;
}

.prod-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.prod-table th {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-align: left;
  border-bottom: 2px solid #eee;
  white-space: nowrap;
  background: #D4A72C;
  color: #fff;
}

.prod-table td {
  padding: 16px 14px;
  font-size: 13px;
  color: #24191A;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}

.prod-table .cat-heading-row {
  background: #ffffff;
}

.prod-table .cat-heading-row td {
  padding: 10px 14px;
  border: none;
}

.cat-heading-inner {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #D4A72C;
  padding: 10px 16px;
  border-radius: 8px;
}

.cat-heading-inner i {
  color: #fff;
}

.prod-table td.dt-product {
  white-space: normal;
  min-width: 160px;
}

.dt-prod-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dt-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #f9f9f9;
  overflow: hidden;
  flex-shrink: 0;
}

.dt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dt-prod-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dt-prod-info .dt-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #720D1C;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 2px;
}

.dt-prod-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
}

.dt-prod-info small {
  font-size: 11px;
  color: #888;
}

.prod-table td.dt-code {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  white-space: nowrap;
}

.prod-table td.dt-content {
  font-size: 13px;
  color: #555;
  white-space: nowrap;
}

.prod-table td.dt-mrp {
  color: #aaa;
  text-decoration: line-through;
  font-size: 13px;
  white-space: nowrap;
}

.prod-table td.dt-save {
  color: #1F5C45;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.prod-table td.dt-price {
  color: #720D1C;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.prod-table td.dt-total {
  font-weight: 700;
  color: #24191A;
  font-size: 15px;
  white-space: nowrap;
}

.prod-table td.dt-qty {
  white-space: nowrap;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-minus {
  background: #F8E8D0;
  color: #D4A72C;
}

.qty-minus:hover {
  background: #D4A72C;
  color: #fff;
}

.qty-plus {
  background: #F8E8D0;
  color: #D4A72C;
}

.qty-plus:hover {
  background: #D4A72C;
  color: #fff;
}

.qty-input {
  width: 44px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #24191A;
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input::-moz-inner-spin-button {
  -moz-appearance: none;
}

.prod-add-cart {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #f5f5f5;
  color: #720D1C;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-add-cart:hover {
  background: #720D1C;
  color: #fff;
}

.prod-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
}

.prod-pagination span {
  font-size: 12px;
  color: #888;
}

.prod-page-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pg-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.pg-btn:hover,
.pg-btn.active {
  background: #720D1C;
  color: #fff;
  border-color: #720D1C;
}

.pg-dots {
  color: #888;
  font-size: 12px;
}

.order-sidebar {
  background: #fff;
  border-left: 1px solid #eee;
  padding: 0;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.order-header {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex-wrap: wrap;
}

.order-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
  white-space: nowrap;
}

.order-header h3 span {
  color: #720D1C;
}

.quick-search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  min-width: 0;
}

.quick-search-input:focus {
  outline: none;
  border-color: #720D1C;
}

.sidebar-close {
  display: none;
  background: none;
  border: none;
  font-size: 18px;
  color: #555;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.quick-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.quick-search-results.show {
  display: block;
}

.qsr-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 12px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}

.qsr-item:hover {
  background: #ffffff;
}

.qsr-item h5 {
  font-size: 12px;
  font-weight: 600;
  color: #24191A;
  margin: 0;
}

.qsr-item small {
  color: #888;
}

.qsr-item .qsr-price {
  font-weight: 700;
  color: #720D1C;
  font-size: 12px;
}

.order-items {
  padding: 16px 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.oi-info {
  flex: 1;
}

.oi-info h5 {
  font-size: 12px;
  font-weight: 700;
  color: #24191A;
  margin: 0 0 6px;
}

.oi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.oi-price {
  font-size: 13px;
  font-weight: 700;
  color: #720D1C;
}

.oi-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.oi-qty-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  transition: 0.2s;
}

.oi-qty-btn:hover {
  background: #720D1C;
  color: #fff;
}

.oi-qty-val {
  width: 30px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  font-family: "Poppins", sans-serif;
  -moz-appearance: textfield;
}

.oi-qty-val::-webkit-inner-spin-button,
.oi-qty-val::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.oi-right {
  text-align: right;
  flex-shrink: 0;
}

.oi-remove {
  border: none;
  background: none;
  color: #ccc;
  cursor: pointer;
  font-size: 12px;
  padding: 2px;
}

.oi-remove:hover {
  color: #720D1C;
}

.order-add-more {
  display: block;
  text-align: center;
  padding: 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  font-weight: 600;
  color: #24191A;
  text-decoration: none;
  transition: 0.2s;
  flex-shrink: 0;
}

.order-add-more:hover {
  color: #720D1C;
}

.order-summary {
  padding: 16px 20px;
  flex-shrink: 0;
  overflow: visible;
}

.os-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: #666;
  overflow: visible;
}

.os-save span:last-child {
  color: #1F5C45;
  font-weight: 600;
}

.os-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #24191A;
}

.order-checkout {
  display: block;
  margin: 0 20px;
  padding: 14px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #24191A;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  flex-shrink: 0;
}

.order-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 196, 0, 0.35);
}

.order-secure {
  text-align: center;
  padding: 10px;
  font-size: 11px;
  color: #888;
  flex-shrink: 0;
}

.order-secure i {
  color: #1F5C45;
  margin-right: 4px;
}

/* ==================== CART PAGE ==================== */
.cart-section {
  padding: 80px 0;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}

.cart-empty h3 {
  font-size: 22px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 8px;
}

.cart-empty p {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.cart-items-wrap {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.cart-items {
  flex: 1;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-row-info {
  flex: 1;
}

.cart-row-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: #24191A;
  margin: 0;
}

.cart-row-price {
  font-size: 14px;
  font-weight: 600;
  color: #720D1C;
  white-space: nowrap;
}

.cart-row-qty {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.cart-row-qty button {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  transition: 0.2s;
}

.cart-row-qty button:hover {
  background: #720D1C;
  color: #fff;
}

.cart-row-qty input {
  width: 40px;
  height: 32px;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  -moz-appearance: textfield;
}

.cart-row-qty input::-webkit-inner-spin-button,
.cart-row-qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-row-total {
  font-size: 15px;
  font-weight: 700;
  color: #24191A;
  white-space: nowrap;
}

.cart-row-remove {
  border: none;
  background: none;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
}

.cart-row-remove:hover {
  color: #720D1C;
}

.cart-summary {
  width: 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 80px;
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #24191A;
  text-decoration: none;
  transition: 0.2s;
}

.cart-continue:hover {
  color: #720D1C;
}

/* CHECKOUT MODAL */
.checkout-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-modal-overlay.show {
  display: flex;
}

.checkout-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.cm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cm-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
}

.cm-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

.cm-body {
  padding: 20px;
}

.cm-items {
  max-height: 150px;
  overflow-y: auto;
  margin-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
}

.cm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
}

.cm-item h5 {
  font-weight: 600;
  color: #24191A;
  margin: 0;
  font-size: 12px;
}

.cm-item span {
  color: #888;
  font-size: 12px;
}

.cm-item .cm-item-price {
  font-weight: 700;
  color: #720D1C;
}

.cm-summary {
  margin-bottom: 20px;
}

.cm-form h4 {
  font-size: 15px;
  font-weight: 700;
  color: #24191A;
  margin: 0 0 14px;
}

.cm-field {
  margin-bottom: 12px;
}

.cm-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.cm-field input,
.cm-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  transition: 0.2s;
}

.cm-field input:focus,
.cm-field textarea:focus {
  outline: none;
  border-color: #720D1C;
}

.cm-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cm-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #24191A;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: "Poppins", sans-serif;
}

.cm-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 196, 0, 0.35);
}

.cm-success {
  text-align: center;
  padding: 30px 20px;
}

.cm-success i {
  font-size: 60px;
  color: #1F5C45;
  margin-bottom: 16px;
  margin-bottom: 16px;
}

.cm-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 8px;
}

.cm-success p {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D4A72C, #F4D77A);
  color: #4A0712;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #D4A72C;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 196, 0, 0.4);
}

/* ==================== LOGIN PAGE ==================== */
.login-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.login-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.login-box h2 {
  font-size: 26px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 4px;
}

.login-box>p {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}

.login-form .form-group {
  text-align: left;
}

.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon>i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
  z-index: 1;
}

.input-icon input {
  padding-left: 40px;
  width: 100%;
}

.pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 15px;
  padding: 0;
  line-height: 1;
  z-index: 1;
}

.pass-toggle:hover {
  color: #720D1C;
}

.login-error {
  background: #FFF8E8;
  border: 1px solid #F8E8D0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #720D1C;
  text-align: left;
}

.login-demo {
  margin-top: 16px;
  padding: 14px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 12px;
  color: #666;
}

.login-demo p {
  margin-bottom: 4px;
}

/* ==================== CHANGE PASSWORD PAGE ==================== */
.change-password-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.change-password-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.change-password-header {
  text-align: center;
  margin-bottom: 28px;
}

.change-password-header i {
  font-size: 40px;
  color: #720D1C;
  margin-bottom: 12px;
  display: block;
}

.change-password-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 4px;
}

.change-password-header p {
  font-size: 14px;
  color: #888;
}

.change-password-form .form-group {
  text-align: left;
  margin-bottom: 18px;
}

.change-password-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.change-password-form .btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  background: #720D1C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}

.change-password-form .btn-submit:hover {
  background: #D4A72C;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-success {
  background: #FFF8E8;
  border: 1px solid #b2e8c5;
  color: #1F5C45;
}

.alert-error {
  background: #fff5f5;
  border: 1px solid #F8E8D0;
  color: #720D1C;
}

.login-demo a {
  color: #720D1C;
  text-decoration: none;
  font-weight: 600;
}

.login-demo a:hover {
  text-decoration: underline;
}

/* DASHBOARD */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.dash-stat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: 0.2s;
}

.dash-stat-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.dash-stat-card i {
  font-size: 28px;
  color: #720D1C;
  margin-bottom: 10px;
}

.dash-stat-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 4px;
}

.dash-stat-card p {
  font-size: 13px;
  color: #888;
}

.dash-welcome {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.dash-welcome h2 {
  font-size: 22px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 10px;
}

.dash-welcome p {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ADMIN PANEL */
.admin-body {
  font-family: "Poppins", sans-serif;
  color: #24191A;
  overflow-x: clip;
  background: #FFF8E8;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.admin-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  gap: 16px;
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.admin-topbar-right-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.admin-topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  flex: 1;
  justify-content: center;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s;
}

.admin-nav-item:hover {
  background: #f4f4f4;
  color: #24191A;
}

.admin-nav-item.active {
  background: #720D1C;
  color: #ffffff;
  font-weight: 700;
}

.admin-nav-item i {
  font-size: 12px;
}

.admin-sidebar-toggle {
  background: none;
  border: none;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  padding: 4px;
}

.admin-logo {
  font-size: 20px;
  font-weight: 800;
  color: #24191A;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.admin-logo img {
  display: block;
  width: 180px;
  height: 90px;
  object-fit: contain;
}

.admin-logo i {
  color: #D4A72C;
  margin-right: 2px;
}

.admin-logo span {
  color: #D4A72C;
}

.admin-badge {
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #24191A;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: none;
}

.admin-topbar-link {
  font-size: 12px;
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: 0.2s;
}

.admin-topbar-link:hover {
  border-color: #720D1C;
  color: #720D1C;
}

.admin-topbar-user {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #24191A;
}

.admin-topbar-user i {
  font-size: 20px;
  color: #D4A72C;
}

.admin-logout-btn {
  font-size: 12px;
  color: #FFF8E8;
  background: #720D1C;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid #fde;
  border-radius: 6px;
  transition: 0.2s;
}

.admin-logout-btn:hover {
  background: #D4A72C;
  color: #380202;
}

.admin-sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 240px;
  background: #f5f5f5;
  overflow-y: auto;
  z-index: 90;
  transition: 0.3s;
}

.admin-sidebar-menu {
  padding: 12px 0;
}

.admin-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  border-left: 3px solid transparent;
}

.admin-menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.admin-menu-item.active {
  background: rgba(184, 13, 13, 0.1);
  color: #720D1C;
  border-left-color: #720D1C;
}

.admin-menu-item i {
  width: 20px;
  text-align: center;
  font-size: 14px;
}

.admin-sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
}

.admin-sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}

.admin-sidebar-footer a:hover {
  color: #720D1C;
}

.admin-main {
  margin-left: 240px;
  padding: 24px;
  min-height: 100vh;
  overflow-x: hidden;
  margin-top: 100px;
}

.admin-main-full {
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* CATEGORIES ADMIN */
.admin-alert {
  background: #F8E8D0;
  color: #1F5C45;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.cat-topbar-fixed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 100px;
  left: 240px;
  right: 0;
  z-index: 50;
  background: #fff;
  padding: 14px 24px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
}

.admin-main-full .cat-topbar-fixed {
  left: 0;
}

.cat-content-below {
  padding-top: 70px;
  overflow-x: hidden;
}

.cat-grid,
.prod-grid {
  width: 100%;
  box-sizing: border-box;
}

.admin-content {
  overflow-x: hidden;
  width: 100%;
}

.cat-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.cat-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
}

.cat-search-wrap input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.cat-search-wrap input:focus {
  outline: none;
  border-color: #720D1C;
}

.cat-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  transition: 0.2s;
}

.cat-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 196, 0, 0.3);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  transition: 0.2s;
}

.cat-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.cc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cc-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-no-img {
  color: #ccc;
  font-size: 24px;
}

.cc-info {
  flex: 1;
}

.cc-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #24191A;
  margin: 0 0 3px;
}

.cc-info small {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

.cc-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  flex-shrink: 0;
}

.cc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-status {
  font-size: 12px;
  color: #666;
}

.cc-status strong {
  color: #24191A;
}

.cc-actions {
  display: flex;
  gap: 6px;
}

.cc-edit {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: #D4A72C;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.cc-edit:hover {
  background: #720D1C;
}

.cc-delete {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: #720D1C;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.cc-delete:hover {
  background: #720D1C;
}

@media (max-width: 992px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT ADMIN CARDS */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow: hidden;
}

.prod-admin-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  transition: 0.2s;
  overflow: hidden;
  box-sizing: border-box;
}

.prod-admin-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.pac-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pac-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pac-no-img {
  color: #ccc;
  font-size: 24px;
}

.pac-info {
  flex: 1;
  min-width: 0;
}

.pac-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
  margin: 0 0 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pac-code {
  display: block;
  font-size: 11px;
  color: #D4A72C;
  font-weight: 700;
}

.pac-cat {
  display: block;
  font-size: 11px;
  color: #888;
  font-weight: 500;
  margin-top: 2px;
}

.pac-cat i {
  margin-right: 3px;
}

.pac-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.pac-display-inline {
  font-size: 11px;
  font-weight: 600;
}

.pac-display-inline i {
  margin-right: 3px;
}

.pac-vis-on {
  color: #1F5C45;
}

.pac-vis-off {
  color: #720D1C;
}

.pac-stock {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-top: 3px;
}

.pac-stock i {
  margin-right: 3px;
}

.pac-stock-in {
  color: #1F5C45;
}

.pac-stock-out {
  color: #720D1C;
}

.pac-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  flex-shrink: 0;
}

.pac-prices {
  display: flex;
  gap: 6px;
  padding: 8px 0;
  border-top: 1px solid #f5f5f5;
}

.pac-price-row {
  flex: 1;
  text-align: center;
  min-width: 0;
  overflow: hidden;
}

.pac-label {
  display: block;
  font-size: 9px;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pac-mrp {
  display: block;
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pac-price {
  display: block;
  font-size: 14px;
  color: #24191A;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pac-disc {
  display: block;
  font-size: 11px;
  color: #1F5C45;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pac-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pac-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
}

.stock-in {
  background: #F8E8D0;
  color: #1F5C45;
}

.stock-out {
  background: #F8E8D0;
  color: #720D1C;
}

.pac-qty {
  font-size: 11px;
  color: #666;
}

.pac-qty strong {
  color: #24191A;
}

.pac-display {
  font-size: 11px;
  color: #1F5C45;
  font-weight: 600;
}

.pac-display i {
  margin-right: 3px;
}

.pac-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f5f5f5;
}

.pac-action-btns {
  display: flex;
  gap: 6px;
}

.prod-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #aaa;
}

.prod-empty i {
  font-size: 40px;
  margin-bottom: 10px;
}

.prod-empty p {
  font-size: 14px;
}

@media (max-width: 992px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* CATEGORY MODAL */
.cat-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cat-modal-overlay.show {
  display: flex;
}

.cat-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.cat-modal-lg {
  max-width: 650px;
}

.cat-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cat-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
}

.cat-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

.cat-modal-form {
  padding: 20px;
}

.cm-field {
  margin-bottom: 14px;
}

.cm-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.cm-field input,
.cm-field select,
.cm-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  resize: vertical;
}

.cm-field input:focus,
.cm-field select:focus,
.cm-field textarea:focus {
  outline: none;
  border-color: #720D1C;
}

.cm-upload {
  border: 2px dashed #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cm-upload:hover {
  border-color: #720D1C;
  background: #FFF8E8;
}

.cm-upload i {
  font-size: 30px;
  color: #ccc;
  margin-bottom: 8px;
}

.cm-upload span {
  font-size: 12px;
  color: #aaa;
}

.cm-upload img {
  max-height: 80px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.cm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cm-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #24191A;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.2s;
}

.cm-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.admin-page-title {
  font-size: 22px;
  font-weight: 700;
  color: #24191A;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.admin-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.asc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.admin-stat-card.orange .asc-icon {
  background: linear-gradient(135deg, #720D1C, #720D1C);
}

.admin-stat-card.purple .asc-icon {
  background: linear-gradient(135deg, #720D1C, #720D1C);
}

.admin-stat-card.green .asc-icon {
  background: linear-gradient(135deg, #1F5C45, #1F5C45);
}

.admin-stat-card.red .asc-icon {
  background: linear-gradient(135deg, #720D1C, #720D1C);
}

.admin-stat-card.blue .asc-icon {
  background: linear-gradient(135deg, #720D1C, #720D1C);
}

.admin-stat-card.teal .asc-icon {
  background: linear-gradient(135deg, #1F5C45, #1F5C45);
}

.asc-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #24191A;
  margin-bottom: 2px;
}

.asc-info p {
  font-size: 12px;
  color: #888;
}

.admin-table-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.atc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.atc-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #24191A;
}

.atc-view-all {
  font-size: 12px;
  color: #D4A72C;
  text-decoration: none;
  font-weight: 600;
}

.atc-view-all:hover {
  text-decoration: underline;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: #24191A;
  border-bottom: 1px solid #f5f5f5;
}

.admin-table tr:hover {
  background: #fafafa;
}

.atc-amount {
  font-weight: 700;
  color: #24191A;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.status-pending {
  background: #F8E8D0;
  color: #D4A72C;
}

.status-delivered {
  background: #F8E8D0;
  color: #1F5C45;
}

.status-cancelled {
  background: #F8E8D0;
  color: #720D1C;
}

.status-processing {
  background: #F8E8D0;
  color: #720D1C;
}

.atc-empty {
  text-align: center;
  padding: 30px;
  color: #aaa;
}

/* ===== BILLING ===== */
.billing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.billing-top .admin-page-title {
  margin: 0;
}

.billing-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 320px;
}

.billing-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.billing-search button {
  border: none;
  background: #ffffff;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
}

.billing-search button:hover {
  background: #f5f5f5;
}

.billing-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #666;
  text-decoration: none;
  transition: 0.2s;
}

.filter-pill:hover {
  border-color: #24191A;
  color: #24191A;
}

.filter-pill.active {
  background: #ffffff;
  color: #fff;
  border-color: #ffffff;
}

.filter-pill span {
  background: rgba(0, 0, 0, 0.08);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 11px;
}

.filter-pill.active span {
  background: rgba(255, 255, 255, 0.2);
}

.filter-pill.pending.active {
  background: #D4A72C;
  border-color: #D4A72C;
}

.filter-pill.confirmed.active {
  background: #720D1C;
  border-color: #720D1C;
}

.filter-pill.dispatched.active {
  background: #D4A72C;
  border-color: #D4A72C;
}

.filter-pill.delivered.active {
  background: #1F5C45;
  border-color: #1F5C45;
}

.filter-pill.cancelled.active {
  background: #720D1C;
  border-color: #720D1C;
}

.billing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.bs-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bs-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.bs-icon.orange {
  background: linear-gradient(135deg, #F4D77A, #D4A72C);
}

.bs-icon.green {
  background: linear-gradient(135deg, #1F5C45, #1F5C45);
}

.bs-icon.purple {
  background: linear-gradient(135deg, #720D1C, #720D1C);
}

.bs-icon.teal {
  background: linear-gradient(135deg, #1F5C45, #1F5C45);
}

.bs-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
}

.bs-info p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.order-code {
  font-weight: 700;
  color: #24191A;
  font-size: 12px;
  background: #FFF8E8;
  padding: 3px 8px;
  border-radius: 6px;
}

.customer-cell strong {
  display: block;
  font-size: 13px;
  color: #24191A;
}

.customer-cell small {
  font-size: 11px;
  color: #888;
}

.item-count {
  background: #FFF8E8;
  color: #1F5C45;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.type-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.type-badge.type-website {
  background: #F8E8D0;
  color: #0369a1;
}

.type-badge.type-pos {
  background: #F8E8D0;
  color: #92400e;
}

.status-form {
  margin: 0;
}

.status-select {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  appearance: auto;
}

.status-select.status-pending {
  background: #F8E8D0;
  color: #D4A72C;
  border-color: #F4D77A;
}

.status-select.status-confirmed {
  background: #F8E8D0;
  color: #720D1C;
  border-color: #F8E8D0;
}

.status-select.status-dispatched {
  background: #F8E8D0;
  color: #D4A72C;
  border-color: #F8E8D0;
}

.status-select.status-delivered {
  background: #F8E8D0;
  color: #1F5C45;
  border-color: #F8E8D0;
}

.status-select.status-cancelled {
  background: #F8E8D0;
  color: #720D1C;
  border-color: #F8E8D0;
}

.action-btns {
  display: flex;
  gap: 6px;
}

.act-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.2s;
  text-decoration: none;
}

.act-btn.view {
  background: #F8E8D0;
  color: #0369a1;
}

.act-btn.view:hover {
  background: #0369a1;
  color: #fff;
}

.act-btn.print {
  background: #F8E8D0;
  color: #92400e;
}

.act-btn.print:hover {
  background: #F4D77A;
  color: #fff;
}

.act-btn.edit {
  background: #F8E8D0;
  color: #D4A72C;
}

.act-btn.edit:hover {
  background: #D4A72C;
  color: #fff;
}

.act-btn.preview {
  background: #F8E8D0;
  color: #1F5C45;
}

.act-btn.preview:hover {
  background: #1F5C45;
  color: #fff;
}

.table-responsive {
  overflow-x: auto;
}

.admin-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-alert.success {
  background: #F8E8D0;
  color: #1F5C45;
  border: 1px solid #F8E8D0;
}

.billing-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.billing-modal-overlay.show {
  display: flex;
}

.billing-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.bm-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
}

.bm-close {
  border: none;
  background: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  padding: 4px;
}

.bm-close:hover {
  color: #24191A;
}

.bm-body {
  overflow-y: auto;
  padding: 20px;
}

.bm-footer {
  padding: 12px 20px;
  border-top: 1px solid #f0f0f0;
  text-align: right;
}

.bm-section {
  margin-bottom: 16px;
}

.bm-section h4 {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
}

.bm-section p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.bm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bm-grid div label {
  font-size: 10px;
  color: #999;
  display: block;
}

.bm-grid div span {
  font-size: 13px;
  font-weight: 600;
  color: #24191A;
}

.bm-table {
  width: 100%;
  border-collapse: collapse;
}

.bm-table th {
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #888;
  text-align: left;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
}

.bm-table td {
  padding: 8px 10px;
  font-size: 12px;
  border-bottom: 1px solid #f5f5f5;
}

.bm-table td:last-child,
.bm-table th:last-child {
  text-align: right;
}

.bm-total {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #ffffff;
  border-radius: 6px;
  margin-top: 8px;
}

.bm-total span {
  font-size: 14px;
  font-weight: 700;
  color: #24191A;
}

@media (max-width: 992px) {
  .billing-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .billing-search {
    flex: 0 0 100%;
  }

  .billing-top {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .admin-topbar {
    height: 78px;
    padding: 0 12px;
  }

  .admin-logo img {
    width: 144px;
    height: 72px;
  }

  .admin-main {
    margin-top: 78px;
    padding: 12px;
  }

  .billing-stats {
    grid-template-columns: 1fr;
  }

  .billing-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter-pill {
    white-space: nowrap;
  }

  .bm-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== POS BILLING LAYOUT ===== */
.billing-layout {
  display: flex;
  height: calc(100vh - 100px);
  overflow: hidden;
  margin-top: 100px;
}

.bill-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}

.bill-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  flex-shrink: 0;
}

.bill-cat-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bill-cat-filter select {
  padding: 9px 32px 9px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #24191A;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 160px;
}

.bill-cat-filter select:focus {
  outline: none;
  border-color: #D4A72C;
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}

.bill-search-wrap {
  position: relative;
  flex: 1;
}

.bill-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
}

.bill-search {
  width: 100%;
  padding: 8px 12px 8px 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.bill-search:focus {
  outline: none;
  border-color: #720D1C;
}

.bill-marquee {
  background: linear-gradient(90deg, #24191A, #24191A);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.bill-marquee i {
  margin-right: 4px;
}

.bill-table-wrap {
  overflow: auto;
  flex: 1;
}

.bill-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.bill-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.bill-table th {
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-align: left;
  border-bottom: 2px solid #eee;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bill-table td {
  padding: 12px 14px;
  font-size: 13px;
  color: #24191A;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}

.bill-table tr:hover {
  background: #fafafa;
}

.cat-row {
  background: #ffffff;
}

.cat-row td {
  padding: 8px 14px;
  border: none;
}

.bill-cat-label {
  font-size: 14px;
  font-weight: 700;
  color: #720D1C;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bill-cat-label i {
  color: #720D1C;
}

.bp-name {
  min-width: 200px;
}

.bp-name-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f9f9f9;
  overflow: hidden;
  flex-shrink: 0;
}

.bp-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bp-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bp-badge {
  display: inline-block;
  padding: 2px 6px;
  background: #720D1C;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  width: fit-content;
}

.bp-info h5 {
  font-size: 13px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
}

.bp-info small {
  font-size: 11px;
  color: #888;
}

.bp-code {
  font-size: 13px;
  color: #555;
  font-weight: 600;
}

.bp-content {
  font-size: 13px;
  color: #555;
}

.bp-price {
  color: #720D1C;
  font-weight: 700;
  font-size: 14px;
}

.bp-mrp {
  color: #aaa;
  text-decoration: line-through;
  font-size: 13px;
  white-space: nowrap;
}

.bp-save {
  color: #1F5C45;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.bp-total {
  font-weight: 700;
  color: #24191A;
  font-size: 14px;
}

.bp-qty {
  white-space: nowrap;
}

/* Billing mobile cards */
.bill-desktop-list {
  display: block;
}

.bill-mobile-list {
  display: none;
}

.bill-mc-heading {
  font-size: 15px;
  font-weight: 700;
  color: #720D1C;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px 0;
}

.bill-mc-heading i {
  color: #720D1C;
}

.bill-mc-card {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
}

.bill-mc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100px;
  flex-shrink: 0;
}

.bill-mc-img {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.bill-mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bill-mc-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 4px;
  background: #720D1C;
  color: #fff;
  z-index: 2;
  font-weight: 700;
}

.bill-mc-code {
  font-size: 10px;
  color: #999;
  font-weight: 600;
}

.bill-mc-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bill-mc-name {
  font-size: 14px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
}

.bill-mc-desc {
  font-size: 11px;
  color: #888;
  display: block;
  margin-bottom: 2px;
}

.bill-mc-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bill-mc-mrp {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.bill-mc-price {
  font-size: 16px;
  font-weight: 800;
  color: #24191A;
}

.bill-mc-save {
  font-size: 11px;
  font-weight: 700;
  color: #1F5C45;
  background: #FFF8E8;
  border-radius: 10px;
  padding: 2px 8px;
  white-space: nowrap;
}

.bill-mc-unit {
  font-size: 12px;
  color: #888;
}

.bill-mc-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.bill-mc-total {
  font-size: 16px;
  font-weight: 800;
  color: #24191A;
}

.bill-mc-action .qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.bill-mc-action .qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #f5f5f5;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

.bill-mc-action .qty-btn:active {
  background: #720D1C;
  color: #fff;
}

.bill-mc-action .qty-input {
  width: 40px;
  height: 34px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.bill-mc-action .qty-input:focus {
  outline: none;
}

/* POS CART SIDEBAR */
.mobile-cart-float {
  display: none;
}
.bill-sidebar {
  width: 340px;
  background: #fff;
  border-left: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.bill-cart-header {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.bill-cart-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bill-cart-header h3 span {
  color: #720D1C;
  font-size: 14px;
}

.bill-search-add {
  position: relative;
}

.bill-search-add i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 12px;
}

.bill-quick-search {
  width: 100%;
  padding: 8px 10px 8px 32px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
}

.bill-quick-search:focus {
  outline: none;
  border-color: #720D1C;
}

.bill-quick-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.bill-quick-results.show {
  display: block;
}

.bqr-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}

.bqr-item:hover {
  background: #f9f9f9;
}

.bqr-item h5 {
  font-size: 12px;
  font-weight: 600;
  color: #24191A;
  margin: 0;
}

.bqr-item small {
  font-size: 11px;
  color: #888;
}

.bqr-add {
  background: #24191A;
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.bqr-add:hover {
  background: #24191A;
}

.bill-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}

.bill-cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
}

.bill-cart-empty i {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.bill-cart-empty p {
  font-size: 13px;
}

.bci-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.bci-info {
  flex: 1;
}

.bci-info h5 {
  font-size: 12px;
  font-weight: 600;
  color: #24191A;
  margin: 0 0 4px 0;
}

.bci-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bci-price {
  font-size: 13px;
  font-weight: 700;
  color: #720D1C;
}

.bci-qty {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.bci-qty-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.bci-qty-btn:hover {
  background: #720D1C;
  color: #fff;
}

.bci-qty-val {
  width: 32px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 12px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  -moz-appearance: textfield;
}

.bci-qty-val::-webkit-inner-spin-button,
.bci-qty-val::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bci-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 4px;
  font-size: 14px;
}

.bci-remove:hover {
  color: #720D1C;
}

.bill-cart-summary {
  padding: 14px 16px;
  border-top: 1px solid #f0f0f0;
  background: #f9f9f9;
}

.bcs-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.bcs-row.bcs-save {
  color: #1F5C45;
  font-weight: 600;
}

.bcs-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
  padding-top: 8px;
  border-top: 1px solid #eee;
  margin-top: 4px;
}

.bill-checkout-btn {
  margin: 0;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
}

.bill-checkout-btn:hover {
  opacity: 0.9;
}

/* POS MODAL */
.bill-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.bill-modal-overlay.show {
  display: flex;
}

.bill-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.billm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.billm-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.billm-close {
  border: none;
  background: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
}

.billm-body {
  overflow-y: auto;
  padding: 20px;
}

.billm-items {
  max-height: 150px;
  overflow-y: auto;
  margin-bottom: 16px;
}

.billm-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
}

.billm-item h5 {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.billm-item span {
  font-size: 12px;
  color: #888;
}

.billm-item-price {
  font-weight: 700;
  color: #720D1C;
}

.billm-title {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.billm-field {
  margin-bottom: 12px;
}

.billm-field label {
  font-size: 11px;
  color: #999;
  display: block;
  margin-bottom: 4px;
}

.billm-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.billm-field input:focus {
  outline: none;
  border-color: #720D1C;
}

.billm-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.billm-submit {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #1F5C45, #1F5C45);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.billm-submit:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .billing-layout {
    flex-direction: column;
  }

  .bill-sidebar {
    display: none;
  }

  /* Tablet + mobile: cart sidebar is hidden, so expose floating cart button */
  .mobile-cart-float {
    display: flex !important;
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #720D1C;
    color: #fff;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    z-index: 1200;
  }

  .mcf-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 12px;
    background: #720D1C;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
  }

  .bill-desktop-list {
    display: none !important;
  }

  .bill-mobile-list {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .bill-topbar {
    flex-wrap: wrap;
    margin-top: 18px;
  }

  /* MOBILE: show category + search + cart contents like desktop.
     Floating cart button position is inherited from the 992px block. */
  .bill-cat-filter {
    flex: 1;
    min-width: 140px;
  }

  .bill-cat-filter select {
    width: 100%;
    font-size: 12px;
    padding: 8px 10px;
  }

  .bill-search-wrap {
    flex: 1;
    min-width: 160px;
  }

  .bill-marquee {
    display: none;
  }

  .billm-row-2 {
    grid-template-columns: 1fr;
  }
}

.admin-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
    margin-top: 78px;
    padding: 12px;
  }

  .admin-menu-toggle {
    display: block;
  }

  .admin-badge {
    display: none;
  }

  .admin-logout-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .cat-topbar-fixed {
    padding: 10px 12px;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    top: 78px;
  }

  .cat-content-below {
    padding-top: 60px;
  }

  .cat-topbar-right {
    width: 100%;
  }

  .cat-search-wrap {
    min-width: 0;
    flex: 1;
  }

  .cat-add-btn {
    white-space: nowrap;
    padding: 10px 14px;
  }

  .cat-grid {
    grid-template-columns: 1fr !important;
  }

  .cat-card {
    padding: 14px;
  }

  .cc-top {
    flex-wrap: wrap;
  }

  .cc-img {
    width: 50px;
    height: 50px;
  }

  .cc-info h4 {
    font-size: 14px;
  }

  .cc-actions {
    flex-direction: row;
    gap: 4px;
  }

  .cc-edit,
  .cc-delete {
    padding: 5px 10px;
    font-size: 11px;
  }

  .prod-grid {
    grid-template-columns: 1fr !important;
  }

  .admin-topbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 10px;
    z-index: 200;
    border-radius: 0 0 12px 12px;
  }

  .admin-topbar-nav.show {
    display: flex;
  }

  .admin-nav-item {
    padding: 10px 16px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: 1fr !important;
  }
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
}

.remember-me input {
  accent-color: #720D1C;
}

.form-options a {
  color: #720D1C;
  text-decoration: none;
  font-weight: 500;
}

.login-form .btn-submit {
  width: 100%;
  margin-bottom: 16px;
}

.login-footer {
  font-size: 14px;
  color: #888;
}

.login-footer a {
  color: #720D1C;
  text-decoration: none;
  font-weight: 600;
}

/* ==================== INNER RESPONSIVE ==================== */
@media (max-width: 992px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-guidelines-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }

  .filter-sidebar h3 {
    width: 100%;
  }

  .combo-inner {
    flex-direction: column;
    gap: 20px;
  }

  .combo-left,
  .combo-right {
    width: 100%;
    max-width: 300px;
  }

  .combo-left {
    order: -1;
  }

  .combo-slider-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .combo-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .combo-items {
    flex: 1;
    width: 0;
    min-width: 0;
    gap: 10px;
    padding: 4px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .combo-items::-webkit-scrollbar {
    display: none;
  }

  .combo-item {
    min-width: 100px;
    padding: 10px 6px;
    flex-shrink: 0;
  }

  .combo-item img {
    width: 44px;
    height: 44px;
  }

  .combo-drop-zone {
    margin-top: 12px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-inner {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .gallery-text {
    width: 100%;
    text-align: center;
  }

  .gallery-card {
    width: 160px;
  }

  .gallery-card img {
    height: 200px;
  }

  .whyshop-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 60px 0 35px;
  }

  .page-banner h1 {
    font-size: 26px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-trust-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-table-layout {
    flex-direction: column;
    overflow: auto;
  }

  .prod-table-main {
    overflow: visible;
  }

  .order-sidebar {
    display: none;
    border-left: none;
    border-top: 1px solid #eee;
  }
}

@media (max-width: 992px) {
  .prod-table-layout {
    flex-direction: column;
    overflow: auto;
  }

  .prod-table-main {
    overflow: visible;
  }

  .order-sidebar {
    display: none;
    border-left: none;
    border-top: 1px solid #eee;
  }

  /* DESKTOP TABLE - hide on tablet/mobile */
  .prod-desktop-list {
    display: none !important;
  }

  /* MOBILE CARDS - show on tablet/mobile */
  .prod-mobile-list {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }
}

.mobile-cart-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
}

.mobile-cart-overlay.show {
  display: block;
}

/* MOBILE CART MODAL */
.mcm-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2500;
}

.mcm-overlay.show {
  display: block;
}

.mcm-modal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: #fff;
  border-radius: 16px 16px 0 0;
  z-index: 2501;
  flex-direction: column;
  overflow: hidden;
  animation: mcmSlideUp 0.3s ease;
}

.mcm-modal.show {
  display: flex;
}

@keyframes mcmSlideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.mcm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.mcm-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #24191A;
  margin: 0;
}

.mcm-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.mcm-close:hover {
  background: #eee;
}

.mcm-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  min-height: 80px;
}

.mcm-empty {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
}

.mcm-empty i {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.mcm-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  gap: 10px;
}

.mcm-item:last-child {
  border-bottom: none;
}

.mcm-item-info {
  flex: 1;
  min-width: 0;
}

.mcm-item-info h5 {
  font-size: 13px;
  font-weight: 600;
  color: #24191A;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mcm-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #24191A;
}

.mcm-item-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mcm-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.mcm-qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.mcm-qty-btn:active {
  background: #720D1C;
  color: #fff;
}

.mcm-qty-val {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.mcm-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: #aaa;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mcm-remove:hover {
  color: #720D1C;
}

.mcm-summary {
  border-top: 1px solid #eee;
  padding: 12px 16px;
  flex-shrink: 0;
}

.mcm-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

.mcm-save {
  color: #1F5C45;
}

.mcm-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
  color: #24191A;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

.mcm-checkout {
  margin: 0 16px 16px;
  padding: 14px;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  color: #24191A;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

.mcm-checkout:active {
  opacity: 0.9;
}

/* MCM SEARCH */
.mcm-search-wrap {
  position: relative;
  padding: 0 16px;
  flex-shrink: 0;
}

.mcm-search-icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #aaa;
}

.mcm-search-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  outline: none;
}

.mcm-search-input:focus {
  border-color: #720D1C;
}

.mcm-search-label {
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0 4px;
}

.mcm-sr-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}

.mcm-sr-item:last-child {
  border-bottom: none;
}

.mcm-sr-item:active {
  background: #ffffff;
  margin: 0 -16px;
  padding: 12px 16px;
}

.mcm-sr-info {
  flex: 1;
  min-width: 0;
}

.mcm-sr-info h5 {
  font-size: 13px;
  font-weight: 600;
  color: #24191A;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mcm-sr-info small {
  font-size: 12px;
  color: #720D1C;
  font-weight: 600;
}

.mcm-sr-add {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #D4A72C;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.15s;
}

.mcm-sr-add:active {
  opacity: 0.7;
}

.mcm-in-cart {
  color: #1F5C45;
  font-weight: 700;
  font-size: 11px;
}

@media (max-width: 992px) {
  .safety-guidelines-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .safety-guide-card {
    padding: 16px 10px;
  }

  .safety-guide-card h4 {
    font-size: 13px;
  }

  .safety-guide-card p {
    font-size: 11px;
  }

  .dos-donts-grid {
    grid-template-columns: 1fr;
  }

  .dos-img,
  .donts-img {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin-top: 16px;
  }

  .dos-img img,
  .donts-img img {
    max-height: 100px;
  }

  .prod-table-layout {
    flex-direction: column;
  }

  .order-sidebar {
    display: none;
    border-left: none;
    border-top: 1px solid #eee;
  }

  /* DESKTOP TABLE - MOBILE FIT */
  .prod-desktop-list {
    display: none !important;
  }

  /* MOBILE CARDS SHOW - SINGLE LINE */
  .prod-mobile-list {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
  }

  .prod-mobile-list .mc-heading {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    background: #D4A72C;
    border-radius: 8px;
  }

  .prod-mobile-list .mc-heading i {
    color: #fff;
  }

  .mc-card {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 8px 6px;
  }

  .mc-col-img {
    flex-shrink: 0;
  }

  .mc-img {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
  }

  .mc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mc-img .mc-badge {
    display: none;
  }

  .mc-col-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .mc-name {
    font-size: 10px;
    font-weight: 700;
    color: #24191A;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mc-code {
    font-size: 8px;
    color: #999;
    font-weight: 600;
  }

  .mc-content-badge {
    display: inline-block;
    background: #F8E8D0;
    color: #720D1C;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 8px;
    margin-top: 1px;
    width: fit-content;
  }

  .mc-col-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .mc-price {
    font-size: 11px;
    font-weight: 800;
    color: #24191A;
    white-space: nowrap;
  }

  .mc-col-mrp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .mc-mrp {
    font-size: 9px;
    color: #720D1C;
    text-decoration: line-through;
    white-space: nowrap;
  }

  .mc-col-qty {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .mc-col-qty .qty-wrap {
    border-radius: 20px;
  }

  .mc-col-qty .qty-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .mc-col-qty .qty-input {
    width: 28px;
    height: 24px;
    font-size: 11px;
  }

  .mc-col-total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .mc-total {
    font-size: 11px;
    font-weight: 800;
    color: #D4A72C;
    white-space: nowrap;
  }

  .mc-desc {
    display: none;
  }

  .mc-info {
    display: none;
  }

  .mc-action {
    display: none;
  }

  .mc-action .qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
  }

  .mc-action .qty-btn {
    width: 24px;
    height: 24px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mc-action .qty-minus {
    background: #F8E8D0;
    color: #D4A72C;
  }

  .mc-action .qty-minus:active {
    background: #D4A72C;
    color: #fff;
  }

  .mc-action .qty-plus {
    background: #F8E8D0;
    color: #D4A72C;
  }

  .mc-action .qty-plus:active {
    background: #D4A72C;
    color: #fff;
  }

  .mc-action .qty-input {
    width: 32px;
    height: 28px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #24191A;
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
  }

  .mc-action .qty-input::-webkit-inner-spin-button,
  .mc-action .qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .mc-action .qty-input:focus {
    outline: none;
  }

  .mc-empty {
    text-align: center;
    padding: 40px;
    color: #aaa;
  }

  .mc-empty i {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .safety-rocket-img {
    width: 55px;
    right: -3px;
    bottom: -8px;
  }

  .gallery-text h2 {
    font-size: 22px;
  }

  .gallery-card {
    width: 140px;
  }

  .gallery-card img {
    height: 160px;
  }

  .whyshop-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .whyshop-num {
    font-size: 15px;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .testimonial-text {
    font-size: 12px;
  }

  .safety-guidelines-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .dos-donts-grid {
    grid-template-columns: 1fr;
  }

  .dos-img,
  .donts-img {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin-top: 16px;
  }

  .dos-img img,
  .donts-img img {
    max-height: 120px;
  }

  .contact-cards-row {
    grid-template-columns: 1fr;
  }

  .contact-trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-info-inner {
    flex-direction: row !important;
    align-items: center;
    gap: 8px !important;
  }

  .prod-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .prod-cat-select {
    flex: 0 0 auto;
    width: auto;
    min-width: 120px;
  }

  .prod-search-wrap {
    flex: 1;
    min-width: 0;
  }

  .prod-marquee {
    width: 100%;
    flex: none;
    min-width: 0;
  }

  .prod-cat-select,
  .prod-sort-select {
    font-size: 12px;
    padding: 8px 10px;
  }
}

/* ==================== PREMIUM ANIMATIONS ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-orange,
.bs-buy-btn,
.btn-submit,
.promo-btn,
.safety-tradition-btn,
.gallery-btn,
.experience-link {
  transition: all 0.3s ease;
}

.btn-orange:hover,
.bs-buy-btn:hover,
.btn-submit:hover {
  box-shadow: 0 0 20px rgba(245, 196, 0, 0.4);
}

.product-card:hover,
.exp-card:hover,
.promo-card:hover,
.testimonial-card:hover,
.trust-item:hover {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card img,
.exp-card img,
.our-story-img img {
  transition: transform 0.4s ease;
}

.gallery-card:hover img,
.exp-card:hover img,
.our-story-img:hover img {
  transform: scale(1.05);
}

.footer-col h3 {
  font-size: 20px;
  color: #F4D77A;
}

/* ==================== STICKY CART BAR ==================== */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #720D1C, #720D1C);
  display: flex;
  align-items: center;
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(124, 58, 237, 0.3);
}

.scb-left {
  display: flex;
  flex-direction: column;
  margin-right: 12px;
}

.scb-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.scb-amount {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.scb-checkout {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.scb-checkout:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.scb-cart-icon {
  position: relative;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #D4A72C;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.scb-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #720D1C;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (min-width: 993px) {
  .sticky-cart-bar {
    bottom: 20px;
    left: auto;
    right: 20px;
    width: 420px;
    border-radius: 14px;
    padding: 12px 16px;
  }
}

/* ==================== MOBILE VIEW STYLES ==================== */
.nav-social-mobile {
  display: none;
}

@media (max-width: 768px) {

  /* TOP BAR MOBILE */
  body {
    padding-top: 92px;
  }

  .top-bar {
    padding: 5px 0;
    font-size: 11.5px;
  }

  .top-bar-wrap {
    gap: 8px;
  }

  .top-bar-left {
    gap: 8px;
    font-size: 11px;
  }

  .top-bar-sep {
    display: none;
  }

  .top-bar-marquee-track span {
    padding-right: 0px;
    font-size: 11px;
  }

  /* NAVBAR MOBILE */
  .nav-wrap {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 18px;
    gap: 10px;
    overflow: visible;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    z-index: 10;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-left: 2px;
  }

  .menu-btn i {
    color: #000000;
  }

  .logo {
    flex: 1;
    text-align: center;
    min-width: 0;
  }

  .logo img {
    height: 55px;
    width: auto;
    margin-top: 0;
  }

  .nav-social-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-right: 4px;
    padding-right: 2px;
    overflow: visible;
  }

  .nav-social-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #555;
    font-size: 13px;
    transition: 0.3s;
  }

  .nav-social-mobile .nav-cart-icon-wrap {
  color: #FFFDF7 !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    overflow: visible;
    font-size: 20px;
  }

  .nav-social-mobile a:hover {
    color: #25d366;
  }

  .main-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 999;
    flex-direction: column;
  }

  .main-menu.show {
    display: flex !important;
  }

  .main-menu li {
    list-style: none;
  }

  .main-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #24191A !important;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-menu li a.active {
    color: #720D1C !important;
    font-weight: 700;
  }

  .nav-icons {
    display: none !important;
  }

  .nav-social {
    display: none;
  }

  .login-text {
    display: none;
  }

  /* FILTER BAR MOBILE */
  .prod-filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 20;
    border-top: 2px solid #D4A72C;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  }

  .prod-table-wrap {
    max-height: none;
    overflow-y: visible;
    border: none;
    box-shadow: none;
    border-radius: 0;
    flex: 1;
    min-height: 0;
  }

  .product-scroll-area {
    height: auto;
    max-height: calc(100vh - 92px);
    overflow-x: hidden;
    overflow-y: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .prod-table-main {
    overflow: visible;
    flex: 1;
  }

  .prod-table-section {
    position: relative;
    top: auto;
    background: #ffffff;
    padding: 0;
  }

  body {
  font-family: "Poppins", sans-serif;
  color: #24191A;
  overflow-x: clip;
  background: #FFF8E8;
  }

  .prod-filter-bar .prod-cat-select {
    grid-column: 1 !important;
    width: 100%;
    min-width: 0;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
  }

  .prod-search-wrap {
    grid-column: 2 !important;
    position: relative;
  }

  .prod-filter-bar > .prod-search-wrap {
    grid-column: 2 !important;
  }

  .prod-filter-bar > .prod-cat-select {
    grid-column: 1 !important;
  }

  .prod-search-wrap input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
  }

  .prod-search-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
  }

  .prod-filter-cart {
    grid-column: 1 / -1;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px 12px;
  }

  .pfc-checkout {
    padding: 8px 14px;
    font-size: 12px;
  }

  .prod-header-title {
    grid-column: 1 / -1;
    font-size: 16px;
    font-weight: 700;
    color: #24191A;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
  }

  .prod-header-title i {
    color: #720D1C;
  }
}

/* WHITE + YELLOW THEME OVERRIDES */

.btn-orange,
.btn-submit,
.btn-directions,
.promo-btn,
.bs-buy-btn,
.cs-btn,
.pfc-checkout,
.combo-view-btn,
.combo-modal-add-btn {
  background: #D4A72C !important;
  color: #24191A !important;
  border: none !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.btn-orange:hover,
.btn-submit:hover,
.btn-directions:hover,
.promo-btn:hover,
.bs-buy-btn:hover,
.cs-btn:hover,
.pfc-checkout:hover,
.combo-view-btn:hover,
.combo-modal-add-btn:hover {
  background: #F4D77A !important;
  color: #24191A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(245, 196, 0, 0.25) !important;
}

.login-text {
  font-size: 14px !important;
  font-weight: 700;
  background: linear-gradient(135deg, #D4A72C, #F4D77A);
  color: #4A0712 !important;
  padding: 8px 22px;
  border-radius: 25px;
  border: 1px solid #F4D77A;
  color: #380202 !important;
  padding: 8px 22px;
  border-radius: 25px;
  border: 1px solid #ffffff;
  color: #5a0000 !important;
  padding: 8px 22px;
  border-radius: 25px;
  border: 1px solid #D4A72C;
  color: #5a0000 !important;
  padding: 8px 22px;
  border-radius: 25px;
  color: #24191A !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 8px 22px !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.login-text:hover {
  background: #F4D77A !important;
  color: #24191A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(245, 196, 0, 0.25) !important;
}

.product-card,
.bs-card-inner,
.promo-card,
.trust-item,
.whyshop-item,
.story-card,
.contact-card-item,
.safety-guide-card,
.dos-card,
.donts-card,
.testimonial-card,
.cart-summary,
.login-box {
  background: #ffffff !important;
  border: 1px solid #D4A72C !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px !important;
}

.product-card:hover,
.bs-card-inner:hover,
.promo-card:hover,
.trust-item:hover,
.whyshop-item:hover,
.story-card:hover,
.contact-card-item:hover,
.safety-guide-card:hover,
.testimonial-card:hover {
  border-color: #D4A72C !important;
  box-shadow: 0 12px 30px rgba(245, 196, 0, 0.18) !important;
}

.prod-table thead th {
  background: #D4A72C !important;
  color: #24191A !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #720D1C !important;
}

.prod-table tbody tr:hover {
  background: #FFF8E8 !important;
}

.footer {
  background: #4A0712;
  color: #FFFDF7;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff;
  padding: 55px 0 0;
  border-top: 3px solid #D4A72C;
  color: #ffffff !important;
  border-top: 2px solid #D4A72C !important;
}

.footer-col h3,
.footer-col h4,
.footer-col h3 i,
.footer-col p i {
  color: #D4A72C !important;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: #F8E8D0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: #F4D77A;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #720D1C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A72C;
  font-size: 16px;
  border: 1px solid #D4A72C;
  color: #ffffff !important;
}

.social-links a:hover {
  background: #D4A72C !important;
  color: #24191A !important;
}

.footer-bottom {
  border-top: 1px solid #24191A !important;
  color: #999999 !important;
}

.footer-bottom a {
  color: #D4A72C !important;
}

/* PRESERVE WHATSAPP GREEN */
.whatsapp-float,
.fa-whatsapp {}

.whatsapp-float {
  background: #25d366 !important;
  color: #ffffff !important;
}

/* HERO SLIDER PERFECT RESPONSIVE DESKTOP BANNER FIX */
.slider {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #110507 !important;
}

.slides {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.slider .slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity .6s ease-in-out, visibility .6s ease-in-out !important;
}

.slider .slide.active {
  position: absolute !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

.slider picture,
.slider a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none !important;
}

.slider img.hero-img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
}

.slider .arr {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  pointer-events: auto !important;
  background: rgba(74, 7, 18, 0.45) !important;
  border: 1.5px solid rgba(212, 167, 44, 0.7) !important;
  color: #F4D77A !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(6px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
}

.slider .arr-l {
  left: 10px !important;
}

.slider .arr-r {
  right: 10px !important;
}

.slider .arr:hover {
  background: #720D1C !important;
  color: #ffffff !important;
  border-color: #F4D77A !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 0 15px rgba(212, 167, 44, 0.6) !important;
}

.slider .dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 8px !important;
  transform: translateX(-50%) !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 4px 10px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(4px) !important;
  border-radius: 20px !important;
  pointer-events: auto !important;
}

.slider .dot {
  pointer-events: auto !important;
  width: 8px !important;
  height: 8px !important;
  background: rgba(255, 248, 232, 0.4) !important;
  border: 1px solid rgba(212, 167, 44, 0.6) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.slider .dot.active {
  background: #D4A72C !important;
  width: 20px !important;
  border-radius: 10px !important;
  box-shadow: 0 0 8px rgba(212, 167, 44, 0.8) !important;
}

@media (max-width: 576px) {
  .slider .arr {
    width: 28px !important;
    height: 28px !important;
    font-size: 11px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border-width: 1px !important;
  }
  .slider .arr-l {
    left: 4px !important;
  }
  .slider .arr-r {
    right: 4px !important;
  }
  .slider .dots {
    bottom: 4px !important;
    padding: 3px 8px !important;
    gap: 5px !important;
  }
  .slider .dot {
    width: 6px !important;
    height: 6px !important;
  }
  .slider .dot.active {
    width: 16px !important;
  }
}


/* =========================================================
   PRODUCT MODAL - CLEAN ALIGNMENT
   Brand and stock fields removed from admin product form.
   ========================================================= */
.cat-modal.cat-modal-lg {
  width: min(680px, calc(100vw - 32px));
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.cat-modal.cat-modal-lg .cat-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
}

.cat-modal.cat-modal-lg .cat-modal-form {
  padding: 22px;
}

.cat-modal.cat-modal-lg .cm-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.cat-modal.cat-modal-lg .cm-field {
  min-width: 0;
  margin-bottom: 16px;
}

.cat-modal.cat-modal-lg .cm-field label {
  margin-bottom: 7px;
  line-height: 1.35;
}

.cat-modal.cat-modal-lg .cm-field input,
.cat-modal.cat-modal-lg .cm-field select,
.cat-modal.cat-modal-lg .cm-field textarea {
  display: block;
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  padding: 11px 14px;
}

.cat-modal.cat-modal-lg .cm-field textarea {
  min-height: 92px;
}

.cat-modal.cat-modal-lg .cm-upload {
  min-height: 150px;
  box-sizing: border-box;
  padding: 24px;
}

.cat-modal.cat-modal-lg .cm-submit {
  margin-top: 2px;
  min-height: 48px;
}

@media (max-width: 600px) {
  .cat-modal.cat-modal-lg {
    width: calc(100vw - 20px);
    max-height: 94vh;
    border-radius: 12px;
  }

  .cat-modal.cat-modal-lg .cat-modal-form {
    padding: 16px;
  }

  .cat-modal.cat-modal-lg .cm-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =========================================================
   SYSTEMATIC RESPONSIVE DESIGN & AUDIT OVERRIDES
   Target Breakpoints: 320px, 360px, 375px, 390px, 414px, 480px, 768px, 820px, 1024px, 1280px, 1440px
   ========================================================= */

/* GLOBAL VIEWPORT CONTAINMENT & CONTAINERS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

img,
iframe,
video {
  max-width: 100% !important;
  height: auto;
}

.container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* DESKTOP VIEWPORT (>= 1024px) */
@media (min-width: 1024px) {
  body {
    padding-top: 115px !important;
  }

  .header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .nav-wrap {
    height: 85px;
  }

  .logo img {
    height: 80px;
    width: auto;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 1.3fr 1.4fr;
    gap: 30px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* TABLET VIEWPORT (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  body {
    padding-top: 105px !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .nav-wrap {
    height: 75px;
  }

  .logo img {
    height: 60px;
  }

  .main-menu {
    gap: 16px;
  }

  .main-menu a {
    font-size: 14px;
  }

  .slider {
    width: 100% !important;
    height: auto !important;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .combo-inner,
  .experience-container,
  .gallery-inner {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .bestseller-header {
    padding: 0 20px !important;
  }
}

/* MOBILE GENERAL VIEWPORT (<= 767px) */
@media (max-width: 767px) {
  body {
    padding-top: 92px !important;
  }

  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* HEADER & TOP BAR MOBILE */
  .top-bar {
    padding: 5px 0 !important;
    font-size: 11.5px !important;
  }

  .top-bar-wrap {
    gap: 8px !important;
  }

  .top-bar-left {
    gap: 8px !important;
    font-size: 11px !important;
  }

  .top-bar-sep {
    display: none !important;
  }

  .nav-wrap {
    height: 68px !important;
    padding: 0 16px 0 14px !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .logo {
    flex: 1 !important;
    text-align: center !important;
    min-width: 0 !important;
  }

  .logo img {
    height: 52px !important;
    width: auto !important;
    margin: 0 auto !important;
  }

  .menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
    margin-left: 2px !important;
  }

  .menu-btn i {
    color: #4A0712 !important;
  }

  .nav-social-mobile {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
    margin-right: 4px !important;
    padding-right: 2px !important;
    overflow: visible !important;
  }

  .nav-social-mobile .nav-cart-icon-wrap {
    color: #4A0712 !important;
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    font-size: 20px !important;
  }

  .main-menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 2px) !important;
    left: 0 !important;
    right: 0 !important;
    background: #FFFFFF !important;
    border-bottom: 2px solid #D4A72C !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
    padding: 12px 0 !important;
    z-index: 999 !important;
    flex-direction: column !important;
  }

  .main-menu li a {
    color: #4A0712 !important;
    padding: 10px 20px !important;
  }

  .main-menu li a.active,
  .main-menu li a:hover {
    color: #720D1C !important;
    background: #FFFDF7 !important;
  }

  .main-menu.show {
    display: flex !important;
  }

  /* HERO SLIDER MOBILE */
  .slider {
    width: 100% !important;
    height: auto !important;
    margin: 0;
    overflow: hidden;
    background: #4A0712;
  }

  .arr {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }

  .arr-l {
    left: 8px !important;
  }

  .arr-r {
    right: 8px !important;
  }

  /* EXPLORE CATEGORIES MOBILE */
  .explore-row {
    gap: 12px !important;
  }

  .explore-circle {
    width: 85px !important;
    height: 85px !important;
  }

  .explore-item span {
    font-size: 12px !important;
  }

  /* GRIDS & LAYOUTS MOBILE */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-stats {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .footer-col {
    text-align: left !important;
  }

  /* FLOATING BUTTONS & STICKY CART BAR */
  .whatsapp-float {
    bottom: 80px !important;
    right: 14px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 24px !important;
  }
}

/* SMALL MOBILE VIEWPORT (320px - 414px) */
@media (max-width: 414px) {
  body {
    padding-top: 80px !important;
  }

  .top-bar {
    font-size: 10px !important;
    padding: 4px 0 !important;
  }

  .top-bar-left {
    font-size: 10px !important;
    gap: 6px !important;
  }

  .nav-wrap {
    height: 60px !important;
    padding: 0 16px 0 14px !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .logo img {
    height: 46px !important;
  }

  .main-menu {
    top: calc(100% + 2px) !important;
  }

  .slider {
    width: 100% !important;
    height: auto !important;
    margin: 0;
    overflow: hidden;
    background: #4A0712;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .bestseller-title {
    font-size: 22px !important;
  }

  .page-header h1 {
    font-size: 24px !important;
  }
}

/* ADMIN - force reset body padding for admin pages */
body.admin-body {
  padding-top: 0 !important;
}