* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  color: #171717;
  overflow-x: hidden;
  background: #FFFDF8;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(215, 25, 32, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
body {
  padding-top: 100px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: #171717;
}
.logo i {
  color: #D71920;
  margin-right: 3px;
}
.logo span {
  color: #D71920;
}
.main-menu {
  display: flex;
  gap: 30px;
}
.main-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  padding-bottom: 4px;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-menu a i {
  font-size: 13px;
  color: #D71920;
  opacity: 0.7;
}
.main-menu a:hover i,
.main-menu a.active i {
  opacity: 1;
}
.main-menu a:hover,
.main-menu a.active {
  color: #D71920;
}
.main-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #D71920;
  border-radius: 2px;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 4px;
  padding-right: 14px;
  border-right: 1px solid #eee;
}
.nav-social a {
  font-size: 14px;
  color: #171717;
  transition: 0.3s;
}
.nav-social a:hover {
  color: #D71920;
}
.nav-icons a {
  font-size: 17px;
  color: #171717;
  transition: 0.3s;
}
.nav-icons a:hover {
  color: #D71920;
}
.login-text {
  font-size: 14px !important;
  font-weight: 600;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 25px;
}
.cart-wrap {
  position: relative;
}
.badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: #D71920;
  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: #171717;
  cursor: pointer;
}

/* SLIDER */
.slider {
  position: relative;
  height: 540px;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 20px;
}
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    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: 600px;
  padding-left: 60px;
}
.slide-left h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 12px;
}
.slide-left h1 em {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  color: #D71920;
  font-size: 50px;
  font-weight: 700;
}
.slide-left > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* 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: #D71920;
}

/* orange button */
.btn-orange {
  display: inline-block;
  padding: 13px 28px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  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(215, 25, 32, 0.3);
}

/* arrows */
.arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  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;
}
.arr:hover {
  background: #D71920;
}
.arr-l {
  left: 18px;
}
.arr-r {
  right: 18px;
}

/* dots */
.dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 25px;
}
.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);
}
.dot.active {
  background: #D71920;
  border-color: #D71920;
  width: 10px;
}

/* EXPLORE BY CATEGORY */
.explore-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(180deg, #FFFDF8, #fff);
}
.explore-title {
  font-size: 20px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 35px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.explore-title i {
  color: #D71920;
  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: 1.5px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s;
}
.explore-item:hover .explore-circle {
  border-color: #D71920;
}
.explore-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.explore-item span {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

/* FEATURES */
.features-section {
  padding: 55px 0;
  background: #fff;
}
.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: #D71920;
  margin-bottom: 12px;
}
.feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #171717;
}
.feature-card p {
  font-size: 13px;
  color: #888;
}

/* FOOTER */
.footer {
  background: #0e0642;
  color: #f7f5f5;
  padding: 55px 0 0;
  border-top: 1px solid #E8E8E8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.8fr;
  gap: 24px;
  margin-bottom: 35px;
}
.footer-col h3 {
  font-size: 20px;
  color: #fbf9f9;
  margin-bottom: 8px;
}
.footer-col h3 i {
  color: #D71920;
  margin-right: 4px;
}
.footer-col h4 {
  font-size: 15px;
  color: #e8e1e1;
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 13px;
  color: #e1dada;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-col p i {
  color: #D71920;
  width: 16px;
  min-width: 16px;
  text-align: center;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #ddd6d6;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #D71920;
  padding-left: 4px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFF1F1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D71920;
  font-size: 16px;
  transition: 0.3s;
}
.social-links a:hover {
  background: #D71920;
  color: #FFFFFF;
}
.footer-map iframe {
  border-radius: 8px;
}
.footer-bottom {
  border-top: 1px solid #E8E8E8;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #555555;
}
.footer-bottom a {
  color: #D71920;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #FFFDF8, #FFF1F1);
  padding: 55px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #171717;
  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: #fff;
  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(215, 25, 32, 0.15),
    0 0 20px rgba(215, 25, 32, 0.1);
}
.product-img {
  height: 170px;
  background: linear-gradient(135deg, #FFF1F1, #FFFDF7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: #D71920;
}
.product-info {
  padding: 18px;
}
.product-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 6px;
}
.product-price {
  font-size: 17px;
  font-weight: 700;
  color: #D71920;
  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: #171717;
  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: #D71920;
}
.stat p {
  font-size: 13px;
  color: #888;
}
.about-icon {
  font-size: 180px;
  color: #D71920;
  opacity: 0.12;
  text-align: center;
}

/* CONTACT */
.contact-section {
  padding: 70px 0;
  background: #FFFDF8;
}
.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: #171717;
  margin-bottom: 25px;
}
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.info-item i {
  font-size: 20px;
  color: #D71920;
  margin-top: 3px;
}
.info-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  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: #D71920;
}
.form-group textarea {
  resize: vertical;
}

/* PROMO CARDS */
.promo-section {
  padding: 60px 0;
}

/* BESTSELLERS */
.bestseller-section {
  padding: 50px 0;
  background: #FFF1F1;
  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: #D71920;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bestseller-title {
  font-size: 32px;
  font-weight: 800;
  color: #171717;
  margin-top: 2px;
}
.view-all {
  font-size: 13px;
  font-weight: 600;
  color: #D71920;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
.view-all:hover {
  gap: 10px;
  color: #fff;
}
.bestseller-swiper .swiper-slide {
  width: 280px;
  height: 340px;
  border-radius: 14px;
  transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
  position: relative;
  background: linear-gradient(170deg, #FFFDF8 0%, #FFF1F1 100%);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.bestseller-swiper .swiper-slide .bs-card-inner {
  width: 100%;
  height: 100%;
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bestseller-swiper .swiper-slide-active .bs-card-inner {
  background: #fff;
}
.bestseller-swiper .swiper-slide-active .bs-card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #D71920;
  border-radius: 14px;
  pointer-events: none;
}
.bestseller-swiper .swiper-button-prev,
.bestseller-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #E8E8E8;
  color: #171717;
  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: #D71920;
  border-color: #D71920;
}
.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 {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
}
.bs-badge.bestseller {
  background: #D71920;
  color: #fff;
}
.bs-badge.popular {
  background: #0759C7;
  color: #fff;
}
.bs-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 5px;
}
.bs-img img {
  max-height: 140px;
  max-width: 70%;
  object-fit: contain;
}
.bs-info {
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-category {
  font-size: 11px;
  font-weight: 600;
  color: #D71920;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bs-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  margin: 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: 12px;
  color: #D71920;
}
.bs-stars span {
  font-size: 11px;
  color: #888;
  margin-left: 4px;
}
.bs-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.bs-price {
  font-size: 18px;
  font-weight: 800;
  color: #D71920;
}
.bs-mrp {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
.bs-save {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  background: #d1fae5;
  padding: 2px 6px;
  border-radius: 4px;
}
.bs-meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: #888;
}
.bs-meta i {
  margin-right: 3px;
  color: #D71920;
}
.bs-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  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(215, 25, 32, 0.4);
}
.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(215, 25, 32, 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: #B9151B;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.experience-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: #171717;
  margin: 8px 0 12px;
  line-height: 1.15;
  white-space: nowrap;
}
.experience-text h2 em {
  color: #B9151B;
  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: #171717;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.experience-link:hover {
  gap: 12px;
  color: #B9151B;
}
.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: #171717;
  margin-bottom: 4px;
}
.our-story-text h2 span {
  color: #D71920;
}
.our-story-line {
  width: 60px;
  height: 3px;
  background: #D71920;
  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: #f8f9fa;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}
.story-mission {
  background: #e0e8f5;
}
.story-vision {
  background: #FFFDF8;
}
.story-values {
  background: #f0faf3;
}
.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: #1687e8;
}
.vision-icon {
  background: #D71920;
}
.values-icon {
  background: #2ecc71;
}
.story-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #171717;
  margin-bottom: 10px;
}
.story-card h4 span {
  color: #D71920;
}
.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: #2ecc71;
  border-radius: 50%;
  flex-shrink: 0;
}

/* SAFETY IS OUR TRADITION */
.safety-tradition-section {
  padding: 40px 0;
  background: #FFFDF8;
  overflow: visible;
  position: relative;
}
.safety-tradition-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  background: #FFF1F1;
  border-radius: 18px;
  gap: 16px;
  position: relative;
  border: 1.5px solid #D71920;
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.1);
}
.safety-tradition-left {
  flex: 0 0 260px;
  padding-right: 10px;
}
.safety-tradition-text h2 {
  font-size: 22px;
  font-weight: 900;
  color: #171717;
  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(#FFF1F1, #FFF1F1) padding-box,
    linear-gradient(135deg, #D71920, #B9151B) border-box;
  color: #D71920;
  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, #D71920, #B9151B);
  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, #FFF1F1, #FFE5E5);
}
.promo-card:nth-child(2) {
  background: linear-gradient(135deg, #ffeaea, #ffd6d6);
}
.promo-card:nth-child(3) {
  background: linear-gradient(135deg, #e8f0ff, #d6e8ff);
}
.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: #B9151B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.promo-label.red {
  color: #D71920;
}
.promo-label.green {
  color: #27ae60;
}
.promo-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #171717;
  line-height: 1.3;
  margin-bottom: 18px;
}
.promo-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #D71920;
  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: #B9151B;
}
.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: #fff;
    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;
  }

  .nav-wrap {
    position: relative;
  }
  .nav-icons {
    gap: 12px;
  }
  .nav-social {
    display: none;
  }
  .menu-btn {
    display: block;
    order: 1;
  }
  .nav-icons .cart-wrap {
    order: 2;
  }
  .nav-icons .login-text {
    order: 3;
  }
  .logo {
    order: 0;
  }

  .slider {
    height: 500px;
    border-radius: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
  }
  .slides {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    display: flex;
    flex-direction: column;
  }
  .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: 220px;
    height: 340px;
  }
  .bestseller-swiper .swiper-slide .bs-card-inner {
    padding: 12px;
  }
  .bs-img img {
    max-height: 120px;
  }
  .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, #FFFDF8 0%, #FFF1F1 100%);
  padding: 80px 0 50px;
  text-align: center;
}
.page-banner h1 {
  font-size: 36px;
  font-weight: 800;
  color: #171717;
  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: #D71920;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #171717;
  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: #D71920;
}
.about-stats .stat-item span {
  font-size: 12px;
  color: #888;
}
.about-image img {
  width: 100%;
  max-width: 400px;
}
.about-mission {
  padding: 60px 0;
  background: #FFFDF7;
}
.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, #D71920, #B9151B);
  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: #171717;
  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: #FFFDF8;
}
.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: #FFF1F1;
  color: #D71920;
}
.ci-email {
  background: #EAF4FF;
  color: #0759C7;
}
.ci-visit {
  background: #FFF1F1;
  color: #D71920;
}
.ci-whatsapp {
  background: #EAF4FF;
  color: #0759C7;
}
.contact-card-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 6px;
}
.contact-card-item .cc-number {
  font-size: 15px;
  font-weight: 700;
  color: #D71920;
  margin-bottom: 4px;
}
.contact-card-item .cc-email {
  font-size: 13px;
  font-weight: 600;
  color: #27ae60;
  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: #171717;
  margin-bottom: 4px;
}
.contact-form-side h2 span,
.contact-map-side h2 span {
  color: #D71920;
}
.contact-form-line {
  width: 50px;
  height: 3px;
  background: #D71920;
  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: #333;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D71920;
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.15);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #f7efef;
  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(215, 25, 32, 0.35);
}

.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 #171717;
  color: #171717;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-directions:hover {
  background: #171717;
  color: #fff;
}

.contact-trust-section {
  padding: 30px 0 50px;
  background: #FFFDF8;
}
.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: #D71920;
  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: #171717;
  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, #D71920 0%, #B0151B 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: #D71920;
}
.safety-icon {
  width: 56px;
  height: 56px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #2e7d32;
  font-size: 22px;
}
.safety-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  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: #171717;
  margin-bottom: 30px;
}
.safety-guidelines-title span {
  color: #D71920;
}
.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: #f0f9f0;
}
.safety-guide-card:nth-child(2) {
  background: #f3f0ff;
}
.safety-guide-card:nth-child(3) {
  background: #FFFDF8;
}
.safety-guide-card:nth-child(4) {
  background: #fdecea;
}
.safety-guide-card:nth-child(5) {
  background: #e3f2fd;
}
.safety-guide-card:nth-child(6) {
  background: #fff3e0;
}
.safety-guide-card:nth-child(7) {
  background: #f3e5f5;
}
.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: #171717;
  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: #FFFDF8;
}
.dos-donts-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #171717;
  margin-bottom: 30px;
}
.dos-donts-title span {
  color: #D71920;
}
.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 #e8f5e9;
}
.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: #4caf50;
  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: #f44336;
  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: #171717;
  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: #4caf50;
  font-size: 14px;
  flex-shrink: 0;
}
.donts-card li i {
  color: #f44336;
  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, #D71920, #D71920);
  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: #171717;
  line-height: 1.15;
  margin-bottom: 8px;
}
.gallery-cursive {
  font-family: "Dancing Script", cursive;
  color: #D71920;
  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 #D71920;
  color: #D71920;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}
.gallery-btn:hover {
  background: #D71920;
  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: #333;
  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: #D71920;
  color: #fff;
}
.gallery-arrow-left {
  left: 10px;
}
.gallery-arrow-right {
  right: 10px;
}

/* ==================== WHY SHOP ==================== */
.whyshop-section {
  padding: 40px 0;
  background: #FFFDF8;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.whyshop-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #171717;
  margin-bottom: 28px;
}
.whyshop-title em {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  color: #D71920;
  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: #fff3e0;
  color: #f0a830;
}
.whyshop-item:nth-child(2) .whyshop-icon {
  background: #fce4ec;
  color: #e91e63;
}
.whyshop-item:nth-child(3) .whyshop-icon {
  background: #e8f5e9;
  color: #4caf50;
}
.whyshop-item:nth-child(4) .whyshop-icon {
  background: #e3f2fd;
  color: #2196f3;
}
.whyshop-item:nth-child(5) .whyshop-icon {
  background: #f3e5f5;
  color: #9c27b0;
}
.whyshop-item:nth-child(6) .whyshop-icon {
  background: #fff8e1;
  color: #ff9800;
}
.whyshop-num {
  font-size: 20px;
  font-weight: 800;
  color: #171717;
  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: #D71920;
}
.testimonial-light {
  font-weight: 400;
  color: #171717;
}
.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: #D71920;
  color: #D71920;
}
.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: #4caf50;
  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: #D71920;
}
.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: #171717;
}
.testimonial-author-info span {
  font-size: 11px;
  color: #888;
}
.testimonial-quote-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #D71920;
  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: #FFFDF8;
}
.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: #171717;
  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: #D71920;
  color: #D71920;
  background: #fff8ef;
}
.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: #D71920;
  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: #B9151B;
}
.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: #D71920;
  background: rgba(215, 25, 32, 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, #e0e8f5, #d0ddf0);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid #b0c8e8;
}
.combo-panel h4 {
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  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: #171717;
}
.combo-view-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #171717;
  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(215, 25, 32, 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: #171717;
}
.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: #333;
}
.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: #171717;
  margin-bottom: 2px;
}
.combo-modal-item-info span {
  font-size: 12px;
  color: #B9151B;
  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: #B9151B;
  color: #B9151B;
}
.combo-qty-val {
  font-size: 14px;
  font-weight: 700;
  color: #171717;
  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: #D71920;
}
.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: #171717;
}
.combo-modal-add-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #171717;
  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: #FFFDF8;
  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: #fff3e0;
  color: #f0a830;
}
.trust-item:nth-child(2) .trust-icon {
  background: #e8f5e9;
  color: #4caf50;
}
.trust-item:nth-child(3) .trust-icon {
  background: #fff8e1;
  color: #ff9800;
}
.trust-item:nth-child(4) .trust-icon {
  background: #e3f2fd;
  color: #2196f3;
}
.trust-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 2px;
}
.trust-text p {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

/* ==================== PRODUCTS PAGE ==================== */
.prod-info-bar {
  background: #FFFDF8;
  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: #fff3e0;
  color: #D71920;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pii-icon.pii-purple {
  background: #f3e5f5;
  color: #9c27b0;
}
.pii-icon.pii-green {
  background: #e8f5e9;
  color: #2e7d32;
}
.prod-info-item strong {
  font-size: 13px;
  color: #171717;
}
.prod-info-item span {
  font-size: 14px;
  font-weight: 700;
  color: #D71920;
}

.prod-table-section {
  background: #fff;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.prod-table-layout {
  display: flex;
  height: 100%;
  overflow: hidden;
}
.prod-table-main {
  background: #fff;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.prod-marquee {
  background: linear-gradient(90deg, #D71920, #B9151B);
  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;
}
.prod-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 10px;
  background: #fff;
  z-index: 5;
  flex-shrink: 0;
}
.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: #D71920;
}
.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: #D71920;
  color: #D71920;
}

.prod-table-wrap {
  overflow: auto;
  flex: 1;
  min-height: 0;
}

/* ===== DESKTOP TABLE ===== */
.prod-mobile-list {
  display: none;
}
.prod-desktop-list {
  display: block;
}
.prod-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.prod-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.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: #fff;
}
.prod-table td {
  padding: 16px 14px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}
.prod-table .cat-heading-row {
  background: #FFFDF8;
}
.prod-table .cat-heading-row td {
  padding: 10px 14px;
  border: none;
}
.cat-heading-inner {
  font-size: 15px;
  font-weight: 700;
  color: #D71920;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-heading-inner i {
  color: #D71920;
}

.prod-table td.dt-product {
  white-space: normal;
  min-width: 220px;
}
.dt-prod-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dt-img-wrap {
  width: 60px;
  height: 60px;
  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: #D71920;
  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: #171717;
  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: #10b981;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.prod-table td.dt-price {
  color: #D71920;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.prod-table td.dt-total {
  font-weight: 700;
  color: #171717;
  font-size: 15px;
  white-space: nowrap;
}

.prod-table td.dt-qty {
  white-space: nowrap;
}
.qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  transition: 0.2s;
  flex-shrink: 0;
}
.qty-btn:hover {
  background: #D71920;
  color: #fff;
}
.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input {
  width: 40px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}
.qty-input[type="number"]::-webkit-inner-spin-button,
.qty-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prod-add-cart {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #f5f5f5;
  color: #D71920;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-add-cart:hover {
  background: #D71920;
  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: #D71920;
  color: #fff;
  border-color: #D71920;
}
.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: #171717;
  margin: 0;
  white-space: nowrap;
}
.order-header h3 span {
  color: #D71920;
}
.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: #D71920;
}
.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: #FFFDF8;
}
.qsr-item h5 {
  font-size: 12px;
  font-weight: 600;
  color: #171717;
  margin: 0;
}
.qsr-item small {
  color: #888;
}
.qsr-item .qsr-price {
  font-weight: 700;
  color: #D71920;
  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: #171717;
  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: #D71920;
}
.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: #D71920;
  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: #D71920;
}
.order-add-more {
  display: block;
  text-align: center;
  padding: 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  text-decoration: none;
  transition: 0.2s;
  flex-shrink: 0;
}
.order-add-more:hover {
  color: #D71920;
}
.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: #4caf50;
  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: #171717;
}
.order-checkout {
  display: block;
  margin: 0 20px;
  padding: 14px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #171717;
  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(215, 25, 32, 0.35);
}
.order-secure {
  text-align: center;
  padding: 10px;
  font-size: 11px;
  color: #888;
  flex-shrink: 0;
}
.order-secure i {
  color: #4caf50;
  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: #171717;
  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: #171717;
  margin: 0;
}
.cart-row-price {
  font-size: 14px;
  font-weight: 600;
  color: #D71920;
  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: #D71920;
  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: #171717;
  white-space: nowrap;
}
.cart-row-remove {
  border: none;
  background: none;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
}
.cart-row-remove:hover {
  color: #D71920;
}
.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: #171717;
  text-decoration: none;
  transition: 0.2s;
}
.cart-continue:hover {
  color: #D71920;
}

/* 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: #171717;
  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: #171717;
  margin: 0;
  font-size: 12px;
}
.cm-item span {
  color: #888;
  font-size: 12px;
}
.cm-item .cm-item-price {
  font-weight: 700;
  color: #D71920;
}
.cm-summary {
  margin-bottom: 20px;
}
.cm-form h4 {
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  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: #D71920;
}
.cm-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cm-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #171717;
  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(215, 25, 32, 0.35);
}
.cm-success {
  text-align: center;
  padding: 30px 20px;
}
.cm-success i {
  font-size: 60px;
  color: #4caf50;
  margin-bottom: 16px;
}
.cm-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 8px;
}
.cm-success p {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D71920, #D71920);
  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(255, 107, 53, 0.35);
}

/* ==================== 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: #171717;
  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: #D71920;
}
.login-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #D71920;
  text-align: left;
}
.login-demo {
  margin-top: 16px;
  padding: 14px;
  background: #FFFDF8;
  border-radius: 8px;
  font-size: 12px;
  color: #666;
}
.login-demo p {
  margin-bottom: 4px;
}
.login-demo a {
  color: #D71920;
  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: #D71920;
  margin-bottom: 10px;
}
.dash-stat-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #171717;
  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: #171717;
  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 {
  padding-top: 0;
  background: #f4f6f9;
  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: #171717;
}
.admin-nav-item.active {
  background: #FFFDF8;
  color: #D71920;
}
.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: #171717;
  text-decoration: none;
}
.admin-logo i {
  color: #D71920;
  margin-right: 2px;
}
.admin-logo span {
  color: #D71920;
}
.admin-badge {
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #171717;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.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: #D71920;
  color: #D71920;
}
.admin-topbar-user {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #171717;
}
.admin-topbar-user i {
  font-size: 20px;
  color: #D71920;
}
.admin-logout-btn {
  font-size: 12px;
  color: #D71920;
  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: #D71920;
  color: #fff;
}

.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(215, 25, 32, 0.1);
  color: #D71920;
  border-left-color: #D71920;
}
.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: #D71920;
}

.admin-main {
  margin-left: 240px;
  padding: 84px 24px 24px;
  min-height: 100vh;
  overflow-x: hidden;
  margin-top: 40px;
}
.admin-main-full {
  margin-left: 0;
  
}

/* CATEGORIES ADMIN */
.admin-alert {
  background: #d1fae5;
  color: #065f46;
  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: 120px;
  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: #D71920;
}
.cat-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  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(215, 25, 32, 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: #171717;
  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: #171717;
}
.cc-actions {
  display: flex;
  gap: 6px;
}
.cc-edit {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: #1687e8;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.cc-edit:hover {
  background: #6d28d9;
}
.cc-delete {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: #ef4444;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.cc-delete:hover {
  background: #dc2626;
}
@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: #171717;
  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: #1687e8;
  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: #065f46;
}
.pac-vis-off {
  color: #dc2626;
}
.pac-stock {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-top: 3px;
}
.pac-stock i {
  margin-right: 3px;
}
.pac-stock-in {
  color: #065f46;
}
.pac-stock-out {
  color: #dc2626;
}
.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: #171717;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pac-disc {
  display: block;
  font-size: 11px;
  color: #10b981;
  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: #d1fae5;
  color: #065f46;
}
.stock-out {
  background: #fee2e2;
  color: #dc2626;
}
.pac-qty {
  font-size: 11px;
  color: #666;
}
.pac-qty strong {
  color: #171717;
}
.pac-display {
  font-size: 11px;
  color: #10b981;
  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: #171717;
  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: #D71920;
}
.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: #D71920;
  background: #fdf8f2;
}
.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, #D71920, #B9151B);
  color: #171717;
  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: #171717;
}
.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, #D71920, #D71920);
}
.admin-stat-card.purple .asc-icon {
  background: linear-gradient(135deg, #D71920, #B9151B);
}
.admin-stat-card.green .asc-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.admin-stat-card.red .asc-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.admin-stat-card.blue .asc-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.admin-stat-card.teal .asc-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}
.asc-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #171717;
  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: #171717;
}
.atc-view-all {
  font-size: 12px;
  color: #1687e8;
  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: #333;
  border-bottom: 1px solid #f5f5f5;
}
.admin-table tr:hover {
  background: #fafafa;
}
.atc-amount {
  font-weight: 700;
  color: #171717;
}
.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.status-pending {
  background: #fef3c7;
  color: #d97706;
}
.status-delivered {
  background: #d1fae5;
  color: #059669;
}
.status-cancelled {
  background: #fee2e2;
  color: #dc2626;
}
.status-processing {
  background: #dbeafe;
  color: #2563eb;
}
.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: #171717;
  color: #171717;
}
.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: #d97706;
  border-color: #d97706;
}
.filter-pill.confirmed.active {
  background: #2563eb;
  border-color: #2563eb;
}
.filter-pill.dispatched.active {
  background: #1687e8;
  border-color: #1687e8;
}
.filter-pill.delivered.active {
  background: #059669;
  border-color: #059669;
}
.filter-pill.cancelled.active {
  background: #dc2626;
  border-color: #dc2626;
}
.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, #f59e0b, #d97706);
}
.bs-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.bs-icon.purple {
  background: linear-gradient(135deg, #D71920, #B9151B);
}
.bs-icon.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}
.bs-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  margin: 0;
}
.bs-info p {
  font-size: 12px;
  color: #888;
  margin: 0;
}
.order-code {
  font-weight: 700;
  color: #171717;
  font-size: 12px;
  background: #fff8e0;
  padding: 3px 8px;
  border-radius: 6px;
}
.customer-cell strong {
  display: block;
  font-size: 13px;
  color: #333;
}
.customer-cell small {
  font-size: 11px;
  color: #888;
}
.item-count {
  background: #e8f5e9;
  color: #2e7d32;
  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: #e0f2fe;
  color: #0369a1;
}
.type-badge.type-pos {
  background: #fef3c7;
  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: #fef3c7;
  color: #d97706;
  border-color: #fde68a;
}
.status-select.status-confirmed {
  background: #dbeafe;
  color: #2563eb;
  border-color: #bfdbfe;
}
.status-select.status-dispatched {
  background: #ede9fe;
  color: #1687e8;
  border-color: #ddd6fe;
}
.status-select.status-delivered {
  background: #d1fae5;
  color: #059669;
  border-color: #a7f3d0;
}
.status-select.status-cancelled {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fecaca;
}
.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: #e0f2fe;
  color: #0369a1;
}
.act-btn.view:hover {
  background: #0369a1;
  color: #fff;
}
.act-btn.print {
  background: #fef3c7;
  color: #92400e;
}
.act-btn.print:hover {
  background: #f59e0b;
  color: #fff;
}
.act-btn.edit {
  background: #ede9fe;
  color: #1687e8;
}
.act-btn.edit:hover {
  background: #1687e8;
  color: #fff;
}
.act-btn.preview {
  background: #d1fae5;
  color: #059669;
}
.act-btn.preview:hover {
  background: #059669;
  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: #d1fae5;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.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: #171717;
}
.bm-close {
  border: none;
  background: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  padding: 4px;
}
.bm-close:hover {
  color: #333;
}
.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: #333;
}
.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: #FFFDF8;
  border-radius: 6px;
  margin-top: 8px;
}
.bm-total span {
  font-size: 14px;
  font-weight: 700;
  color: #171717;
}

@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) {
  .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 - 60px);
  overflow: hidden;
  margin-top: 60px;
}
.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;
  margin-top: 40px;
}
.bill-cat-filter select {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: #555;
  background: #fff;
  cursor: pointer;
}
.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: #D71920;
}
.bill-marquee {
  background: linear-gradient(90deg, #171717, #171717);
  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: #333;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}
.bill-table tr:hover {
  background: #fafafa;
}
.cat-row {
  background: #FFFDF8;
}
.cat-row td {
  padding: 8px 14px;
  border: none;
}
.bill-cat-label {
  font-size: 14px;
  font-weight: 700;
  color: #D71920;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bill-cat-label i {
  color: #D71920;
}
.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: #D71920;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  width: fit-content;
}
.bp-info h5 {
  font-size: 13px;
  font-weight: 700;
  color: #171717;
  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: #D71920;
  font-weight: 700;
  font-size: 14px;
}
.bp-mrp {
  color: #aaa;
  text-decoration: line-through;
  font-size: 13px;
  white-space: nowrap;
}
.bp-save {
  color: #10b981;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.bp-total {
  font-weight: 700;
  color: #171717;
  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: #D71920;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px 0;
}
.bill-mc-heading i {
  color: #D71920;
}
.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: #D71920;
  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: #171717;
  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: #171717;
}
.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: #171717;
}
.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: #D71920;
  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 */
.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: #171717;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bill-cart-header h3 span {
  color: #D71920;
  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: #D71920;
}
.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: #333;
  margin: 0;
}
.bqr-item small {
  font-size: 11px;
  color: #888;
}
.bqr-add {
  background: #171717;
  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: #171717;
}

.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: #333;
  margin: 0 0 4px 0;
}
.bci-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bci-price {
  font-size: 13px;
  font-weight: 700;
  color: #D71920;
}
.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: #D71920;
  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: #D71920;
}

.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: #10b981;
  font-weight: 600;
}
.bcs-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  padding-top: 8px;
  border-top: 1px solid #eee;
  margin-top: 4px;
}
.bill-checkout-btn {
  margin: 0;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #D71920, #B9151B);
  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: #171717;
  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: #D71920;
}
.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: #D71920;
}
.billm-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.billm-submit {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #10b981, #059669);
  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;
  }
  .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;
  }
  .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;
    padding: 70px 12px 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;
  }
  .cat-content-below {
    padding-top: 10px;
  }
  .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 1fr !important;
  }
  .cat-card {
    padding: 10px;
  }
  .cc-top {
    flex-wrap: nowrap;
  }
  .cc-info h4 {
    font-size: 13px;
  }
  .cc-actions {
    flex-direction: column;
    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: 60px;
    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: #D71920;
}
.form-options a {
  color: #D71920;
  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: #D71920;
  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;
  }
  .order-sidebar {
    display: none;
    border-left: none;
    border-top: 1px solid #eee;
  }
}
.mobile-cart-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #fff;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(215, 25, 32, 0.5);
  z-index: 1500;
  cursor: pointer;
  transition: 0.3s;
}
.mobile-cart-float:hover {
  transform: scale(1.1);
}
.mcf-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #D71920;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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: #171717;
  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: #171717;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mcm-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #171717;
}
.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: #D71920;
  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: #D71920;
}
.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: #10b981;
}
.mcm-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
  color: #171717;
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.mcm-checkout {
  margin: 0 16px 16px;
  padding: 14px;
  background: linear-gradient(135deg, #D71920, #B9151B);
  color: #171717;
  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: #D71920;
}
.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: #FFFDF8;
  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: #171717;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mcm-sr-info small {
  font-size: 12px;
  color: #D71920;
  font-weight: 600;
}
.mcm-sr-add {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #1687e8;
  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: #10b981;
  font-weight: 700;
  font-size: 11px;
}
@media (max-width: 768px) {
  .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 HIDDEN */
  .prod-desktop-list {
    display: none !important;
  }

  /* MOBILE CARDS SHOW */
  .prod-mobile-list {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .mc-heading {
    font-size: 15px;
    font-weight: 700;
    color: #D71920;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 4px 0;
  }
  .mc-heading i {
    color: #D71920;
  }

  .mc-card {
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
  }

  .mc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100px;
    flex-shrink: 0;
  }
  .mc-img {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .mc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mc-img .mc-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 4px;
    background: #D71920;
    color: #fff;
    z-index: 2;
    font-weight: 700;
  }
  .mc-code {
    font-size: 10px;
    color: #999;
    font-weight: 600;
  }

  .mc-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mc-name {
    font-size: 14px;
    font-weight: 700;
    color: #171717;
    margin: 0;
  }
  .mc-desc {
    font-size: 11px;
    color: #888;
    display: block;
    margin-bottom: 2px;
  }
  .mc-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .mc-info .mc-mrp {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
  }
  .mc-info .mc-price {
    font-size: 16px;
    font-weight: 800;
    color: #171717;
  }
  .mc-info .mc-unit {
    font-size: 12px;
    color: #888;
  }
  .mc-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #eee;
    margin-top: auto;
  }
  .mc-action .mc-total {
    font-size: 16px;
    font-weight: 800;
    color: #171717;
  }
  .mc-action .qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .mc-action .qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
  }
  .mc-action .qty-btn:active {
    background: #D71920;
    color: #fff;
  }
  .mc-action .qty-input {
    width: 40px;
    height: 34px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
  }
  .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;
  }

  /* MOBILE FLOATING CART */
  .mobile-cart-float {
    display: flex;
  }
}
@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(215, 25, 32, 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);
}
.navbar {
  transition: box-shadow 0.3s ease;
}
.footer-col h3 {
  color: #D71920;
}
