﻿body {
  overflow-x: hidden;
  font-size: 16px;
}

/* ============================================================
   FIX: Tailwind .collapse overrides Bootstrap .collapse
   Tailwind sets .collapse { visibility: collapse } which breaks
   Bootstrap's collapse toggling. Override it here.
   ============================================================ */
.collapse:not(.show) {
  display: none !important;
  visibility: visible !important;
}
.collapse.show {
  display: block !important;
  visibility: visible !important;
}
.collapsing {
  display: block !important;
  visibility: visible !important;
}

/* Fix: Tailwind hidden override for Bootstrap offcanvas */
.offcanvas.show {
  visibility: visible !important;
}

/* Fix: Tailwind img { display: block } conflicts with inline product images */
.product-card-shop img,
.product-image-shop,
.category-banner-img,
.card-img-holder img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Product card image placeholder when no image loads */
.product-image-shop {
  min-height: 200px;
  object-fit: contain;
  background: #f8f8f8;
}

body,
a,
p,
span,
small {
  font-family: "Poppins", sans-serif;
}

/* Section Titles and Subtitles */
h1,
h2,
h3,
h4,
h5,
h6,
.h6,
.brand-logo h1,
.section-main-title,
.section-sub-title,
.font-cardo,
.font-custom-1,
.font-custom-2,
.font-custom-3 {
  font-family: "Cardo", serif;
  color: #1e1e1e;
}

h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
}

h4 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

h6,
.h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.brand-logo h1 {
  font-size: 2.5rem;
}

.section-main-title {
  font-size: 6vw;
  line-height: 0.8;
}

.section-sub-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
}

/* Font Size Utility Classes */
.fs-18 {
  font-size: 18px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-14 {
  font-size: 14px !important;
}

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

.fs-5 {
  font-size: 1.25rem !important;
}

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

/* Global Color Utilities */
.text-brown {
  color: var(--brand-maroon) !important;
}

/* Base Body Text Scaling */
p,
a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  color: var(--brand-black);
}

span,
small {
  font-size: 14px;
  line-height: 1.5;
  color: var(--brand-black);
}

/* -------------------------------------
   2. BRAND COLORS & UTILITIES
------------------------------------- */

/* Custom Grid Utility for 1.5/12 columns */
@media (min-width: 768px) {
  .col-md-1-5 {
    flex: 0 0 auto;
    width: 12.5%;
    /* 1.5 / 12 */
  }

  .col-md-10-5 {
    flex: 0 0 auto;
    width: 87.5%;
    /* 10.5 / 12 */
  }
}

/* Apparels Wrapper - Mobile Margin */

/* Brands Ticker Animation */
.brands-ticker-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.brands-ticker {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 5rem;
  padding: 0 2rem;
  -webkit-animation: brands-ticker-scroll 30s linear infinite;
  animation: brands-ticker-scroll 30s linear infinite;
}

.brands-ticker-wrap:hover .brands-ticker {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.brands-ticker span {
  white-space: nowrap;
  color: #fff !important;
  font-size: 3rem;
}

@-webkit-keyframes brands-ticker-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes brands-ticker-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* .text-yellow moved to brand utilities below */

.text-brand-orange {
  color: #f99503;
}

.text-brand-blue {
  color: #56509f;
}

.op-5 {
  opacity: 0.5;
}

.fw-semibold {
  font-weight: 600;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.card-img-holder {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-item-sq:hover .card-img-holder img {
  transform: scale(1.1);
}

/* Consolidated Badge Discounts */
.badge-discount {
  position: absolute;
  background-color: var(--brand-maroon);
  color: var(--brand-white);
  padding: 5px 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 5;
}

.badge-discount-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.badge-discount-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.badge-discount-right {
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 30px 5px;
}

.badge-discount-left {
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  rotate: 180deg;
  padding: 30px 5px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Spacing */
.section-py {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 767px) {
  .section-py {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .section-heading-wrap {
    margin-bottom: 2rem;
  }
}

.section-heading-wrap {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

/* -------------------------------------
   3. COMPONENTS (TICKER, SWIPER, CARDS)
------------------------------------- */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--brand-one);
  color: #ffffff;
  padding: 0.5rem 0;
  display: flex;
}

.ticker {
  display: flex;
  flex-shrink: 0;
  animation: ticker 40s linear infinite;
}

.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 0.5rem;
  font-size: 16px;
  font-weight: 400;
  color: var(--brand-white);
}

.ticker-dot {
  margin: 0 0.5rem;
  opacity: 0.3;
  font-size: 10px;
  vertical-align: middle;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.swiper-nav-wrapper {
  position: relative;
  padding: 0 48px;
}

.swiper-button-next,
.swiper-button-prev {
  /* background: var(--brand-one); */
  /* transform: scale(0.6); */
  /* font-weight: bold; */
  color: var(--brand-grey);
  height: 40px;
  width: 40px;
  /* border-radius: 50% */
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 36px !important;
}

@media (max-width: 767px) {
  .swiper-nav-wrapper {
    padding: 0 30px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 24px !important;
  }
}

@media (max-width: 576px) {
  .swiper-nav-wrapper {
    padding: 0 24px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px !important;
  }
}

/* Improved Hotspots as Interactive Boxes */
.hotspot-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  width: 70px;
  /* Responsive box size */
  height: 70px;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  /* background: rgba(255, 255, 255, 0.1); */
  /* border-radius: 12px; */
  /* backdrop-filter: blur(2px); */
  /* transition: all 0.3s ease; */
}

.hotspot-label {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  color: #1e1e1e;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.hotspot-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.hotspot:hover .hotspot-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot-point {
  width: 14px;
  height: 14px;
  /* background-color: #fff; */
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.3),
    0 2px 10px rgba(0, 0, 0, 0.2);
  animation: hotspot-pulse 1s infinite;
  transition: all 0.3s ease;
}

@keyframes hotspot-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
  }
}

.hotspot:hover .hotspot-point {
  background-color: var(--brand-one);
  transform: scale(1.3);
}

.apparels-wrapper {
  width: 100%;
  max-width: 520px;
  position: relative;
  /* border-radius: 20px; */
  overflow: hidden;
  /* background-color: #fcfcfc; */
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
  /* transition: all 0.4s ease; */
  /* aspect-ratio: 3.5 / 5; */
  margin: 0 auto;
}

.apparels-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

/* Category Product Cards (Mockup Style) */
.category-product-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-product-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-product-title {
  color: #ffffff;
  /* font-size: 13px; */
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.outdoor-events-bg .section-sub-title {
  font-size: 2.5rem;
}

.btn-explore-all {
  background-color: #ebbc8b;
  /* Beige from mockup */
  color: #5d4037;
  /* Dark brown from mockup */
  padding: 0.85rem 2.75rem;
  /* border-radius: 8px; */
  font-weight: 700;
  border: none;
  /* font-size: 16px; */
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brand-brown);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.btn-explore-all:hover {
  opacity: 0.9;
}

.square-aspect {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 10px;
}

.category-item-sq {
  text-align: center;
  display: block;
  text-decoration: none;
}

.category-item-sq .square-aspect {
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-slide-height {
  height: 650px;
}

.hero-shipping-card {
  background-color: var(--brand-one);
}

.hero-deals-card {
  background-color: var(--brand-yellow);
  color: #1a1a1a;
}

.deals-percentage {
  font-size: 8rem;
  font-weight: 800;
  color: var(--brand-one);
  line-height: 0.8;
}

.deals-percent-sign {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-one);
  line-height: 1;
}

/* .deals-off-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-one);
  line-height: 1;
}

.deals-upto-text {
  font-size: 1.2rem;
  font-weight: 800;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

@media (max-width: 992px) {
  .deals-percentage {
    font-size: 5rem;
  }

  .deals-percent-sign {
    font-size: 1.8rem;
  }

  .deals-off-text {
    font-size: 1.2rem;
  }
} */

.product-card-trending {
  background-color: #f5eee4;
  min-height: 150px;
}

/* Product Card Label Consolidation */
.product-label,
.product-label-title {
  color: #1e1e1e;
  line-height: 1.4;
  margin-bottom: 0;
}

.product-label {
  font-size: 14px;
}

.product-label-title {
  font-weight: 500;
  margin-top: 0.25rem;
}

.product-offer {
  color: var(--brand-one);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 0;
  white-space: nowrap;
  min-height: 1.125rem;
  text-align: center;
  /* bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: absolute; */
}

.border-bottom {
  border-bottom: 1px solid var(--brand-light-gray);
}

/* -------------------------------------
   4. HEADER & NAVIGATION
------------------------------------- */
.header-middle {
  padding: 0.8rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--brand-light-gray);
}

.brand-logo h1 {
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
  line-height: 1.1;
  font-size: 50px;
}

.brand-logo p {
  /* color: #555; */
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 17px;
}

.search-input:focus {
  box-shadow: none;
  border-color: #adb5bd;
  outline: none;
  background-color: #fff;
}

.search-input::placeholder {
  color: #888;
}

.search-btn:hover {
  background-color: #db371e;
  color: white;
}

.header-actions {
  color: #333;
}

.header-actions a {
  color: #333;
  display: flex;
  align-items: center;
  font-weight: 400;
  transition: color 0.2s;
}

.header-actions a:hover {
  color: #ef4026;
}

.category-nav .nav-link {
  color: #1f1f1f;
  /* font-weight: 500; */
  padding: 1rem 0;
  /* Added horizontal padding for easier hovering */
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  position: relative;
  border-radius: 0;
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 1rem;
  font-size: 15px;
}

.category-nav .nav-link.active,
.category-nav .nav-link:hover,
.category-nav .nav-item:hover>.nav-link,
.category-nav .nav-item.clicked>.nav-link {
  color: #000;
}

.category-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brand-one);
  z-index: 1100;
  /* Ensure underline shows above mega menu border */
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.category-nav .nav-link.active::after,
.category-nav .nav-link:hover::after,
.category-nav .nav-item:hover>.nav-link::after,
.category-nav .nav-item.clicked>.nav-link::after {
  transform: scaleX(1);
}

.main-nav-bar {
  background-color: var(--brand-two);
  /* border-bottom: 2px solid var(--brand-light-gray); */
  position: relative;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.mega-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  border-bottom: 2px solid #e1dfd8;
  border-top: 1px solid #e1dfd8;
  z-index: 1050;
  padding: 2.5rem 0;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  text-align: left;
}

.nav-item.has-mega-menu:hover .mega-menu,
.nav-item.has-mega-menu.clicked .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.85rem;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
}

.mega-menu-list li a {
  display: block;
  padding: 0.35rem 0;
  transition: color 0.2s;
  position: relative;
  display: inline-block;
}

/* Footer Links */
.footer-link {
  transition: all 0.3s ease;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--brand-one) !important;
  transform: translateX(0);
}

.footer-link::after,
.mega-menu-list li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-one);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.footer-link:hover,
.mega-menu-list li a:hover {
  color: var(--brand-one);
}

.footer-link:hover::after,
.mega-menu-list li a:hover::after {
  transform: scaleX(1);
}

.bottom-bar-link {
  color: #000 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 13px;
}

.bottom-bar-link:hover {
  text-decoration: underline !important;
}

.mega-menu-right-panel ul li a {
  color: #111;
  font-weight: 600;
}

@media (max-width: 991px) {
  .mega-menu {
    display: none;
  }
}

.offcanvas-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.offcanvas-menu-panel.hidden-left {
  transform: translateX(-100%);
}

.offcanvas-menu-panel.hidden-right {
  transform: translateX(100%);
}

.offcanvas-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e1dfd8;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu-link.active {
  color: var(--brand-one);
}

.mobile-menu-link:hover {
  background-color: #f8f9fa;
  padding-left: 1.75rem;
}

.mobile-menu-link i {
  color: #666;
  transition: transform 0.3s ease;
}

.mobile-menu-link:hover i.fa-chevron-right {
  transform: translateX(5px);
}

.mobile-menu-header i {
  margin-right: 0.75rem;
}

/* -------------------------------------
   5. PLACEHOLDERS & GRADIENTS 
------------------------------------- */
.product-placeholder-promo {
  height: 480px;
  border: 2px dashed #d1d1d1;
}

.bg-grad-3 {
  background: #f99502;
}

.bg-grad-25,
.bg-grad-26,
.bg-grad-27 {
  background: linear-gradient(180deg,
      #cccccc 0%,
      #ffffff 25%,
      #ffffff 75%,
      #c4c4c4 100%);
}

.bg-grad-31 {
  background: linear-gradient(180deg,
      #cca300 0%,
      #ffcc00 25%,
      #ffcc00 75%,
      #b28e00 100%);
}

.bg-grad-32 {
  background: linear-gradient(180deg,
      #3b3b3b 0%,
      #222 25%,
      #222 75%,
      #484848 100%);
}

/* -----------------------------------------------
   7. SCROLL PROGRESS BAR
----------------------------------------------- */
/* Promotional Banner Rectangles */
.promo-banner-rect {
  /* border-radius: 8px !important; */
  /* overflow: hidden; */
  /* height: 200px !important; */
  /* display: flex !important; */
  /* flex-direction: column !important; */
  /* justify-content: center !important; */
  /* padding: 0 50px !important; */
}

.promo-banner-rect.align-end {
  /* align-items: flex-end !important; */
}

.promo-banner-rect.align-center {
  /* align-items: center !important; */
}

/* Outdoor Category Blocks */
.outdoor-category-block {
  position: relative;
  overflow: hidden;
  border-radius: 20px !important;
  height: 480px !important;
  background-position: center !important;
  background-size: cover !important;
  display: flex !important;
  flex-direction: column !important;
}

#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--brand-one);
  z-index: 99999;
  transition: width 0.1s linear;
}

/* -----------------------------------------------
   8. BACK TO TOP BUTTON
----------------------------------------------- */
#back-to-top {
  position: fixed;
  bottom: 150px;
  right: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ef4026;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.2s;
  z-index: 9990;
  box-shadow: 0 4px 14px rgba(239, 64, 38, 0.35);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background-color: #c72e14;
}

/* -----------------------------------------------
   9. FLOATING FABS (CART + WHATSAPP)
----------------------------------------------- */
.fab-group {
  position: fixed;
  bottom: 24px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9990;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
}

.fab-cart {
  background-color: #333;
}

.fab-whatsapp {
  background-color: #25d366;
}

.fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4026;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Mobile: move FABs to left so they don't cover right-side Swiper arrows */
@media (max-width: 576px) {
  .fab-group {
    right: auto;
    left: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .fab-btn {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  #back-to-top {
    right: auto;
    left: 16px;
  }

  #back-to-top {
    height: 44px !important;
    width: 44px !important;
    bottom: 130px;
  }
}

@media (max-width: 700px) {}

#announcement-bar {
  background: linear-gradient(90deg, #1c1c1c 0%, #3a1a0a 50%, #1c1c1c 100%);
  color: var(--brand-white);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  font-size: 14px;
  z-index: 100;
}

#announcement-bar .ann-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

#announcement-bar .ann-countdown {
  font-weight: 700;
  background: #ef4026;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
}

#announcement-bar .ann-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  transition: color 0.2s;
}

#announcement-bar .ann-close:hover {
  color: #fff;
}

#announcement-bar .ann-link {
  color: #f99502;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

/* -----------------------------------------------
   11. HOVER MICRO-INTERACTIONS
----------------------------------------------- */
.png-hover {
  transition: filter 0.3s ease;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Change PNG color when the parent link is hovered */
a:hover .png-hover {
  filter: invert(34%) sepia(98%) saturate(3025%) hue-rotate(345deg) brightness(94%) contrast(92%);
}

.category-item-sq .square-aspect {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.category-item-sq:hover .square-aspect {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
}

.product-card-trending {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: pointer;
}

.btn.rounded-pill {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s;
  background-color: var(--brand-one);
}

.btn.rounded-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.swiper-slide img {
  transition: transform 0.3s ease;
}

.bg-white.rounded-3 .d-flex.align-items-center:hover {
  background-color: var(--brand-biege);
  transition: background-color 0.2s;
}

.category-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 5px;
  background: var(--brand-one);
  transition: width 0.2s ease;
  margin-top: 2px;
}

.category-nav .nav-link:hover::after,
.category-nav .nav-link.active::after {
  width: 100%;
}

#announcement-bar a {
  color: inherit;
}

/* -----------------------------------------------
   12. NEWSLETTER SECTION
----------------------------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, #1c1c1c 0%, #2d1a0e 50%, #1c1c1c 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "âœˆ";
  position: absolute;
  font-size: 14rem;
  opacity: 0.04;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  pointer-events: none;
  color: #fff;
}

.newsletter-input-group {
  max-width: 100%;
}

.newsletter-input-group .form-control,
.header-search-bar .form-control {
  border-radius: 50px 0 0 50px;
  border: 1px solid #ced4da;
  padding: 0.75rem 1.5rem;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.95);
  outline: none;
  box-shadow: none;
}

.newsletter-input-group .form-control:focus,
.header-search-bar .form-control:focus {
  background: #fff;
  box-shadow: none;
  border-color: #ef4026;
}

.btn {
  border-radius: 50px;
  padding: 0.85rem 5.75rem;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  color: var(--brand-white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Consolidated button hover background preservation */
.btn.bg-grey:hover {
  background-color: var(--brand-grey) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-one:hover {
  background-color: var(--brand-one) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-dark:hover {
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-yellow:hover {
  background-color: var(--brand-yellow) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-maroon:hover {
  background-color: var(--brand-maroon) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-brown:hover {
  background-color: var(--brand-brown) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-beige:hover {
  background-color: var(--brand-beige) !important;
  color: var(--brand-brown) !important;
  opacity: 0.95;
}

.btn.bg-purple:hover {
  background-color: var(--brand-purple) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-green:hover {
  background-color: var(--brand-green) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-orange:hover {
  background-color: var(--brand-orange) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-wheat:hover {
  background-color: var(--brand-wheat) !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-brand-orange:hover {
  background-color: #f99502 !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-brand-yellow:hover {
  background-color: #ebb11e !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-brand-orange:hover {
  background-color: #f99502 !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn.bg-brand-yellow:hover {
  background-color: #ebb11e !important;
  color: var(--brand-white) !important;
  opacity: 0.8;
}

.btn-subscribe {
  border-radius: 0 50px 50px 0;
  background: #ef4026;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border: none;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: #c72e14;
  /* transform: scale(1.03); */
  /* color: #fff; */
}

.btn-subscribe {
  border-radius: 0 50px 50px 0;
  background: #ef4026;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border: none;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: #c72e14;
  /* transform: scale(1.03); */
  /* color: #fff; */
}

.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  /* font-size: 13px; */
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-perks span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter-perks i {
  color: #f99502;
}

/* -----------------------------------------------
   12. APPARELS & TRIP PREP SECTIONS
----------------------------------------------- */

.apparels-mini-box {
  position: absolute;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.apparels-mini-box:hover {
  transform: scale(1.1);
}

.vertical-title {
  font-size: 5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  /* color: var(--brand-orange) ; */
  /* font-family: var(--font-heading); */
  opacity: 0.9;
  margin: 0;
}

.trip-prep-card {
  width: 100%;
  height: 480px;
  border-radius: 80px 80px 0 80px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trip-prep-card:hover {
  /* transform: translateY(-10px); */
}

.social-title {
  font-family: "Cardo", serif !important;
  font-size: 3.2rem !important;
  line-height: 1.1 !important;
  color: #1e1e1e;
  font-weight: 400 !important;
}

@media (max-width: 767px) {
  .social-title {
    font-size: 1.8rem !important;
  }
}

/* Section-specific overrides: add here as needed */

/* Health & Care Card Borders */
.border-health {
  border: 2px solid var(--brand-wheat) !important;
}

.border-health span {
  font-size: 18px;
  font-weight: 400;
}

.border-health-bottom {
  border-bottom: 2px solid var(--brand-wheat) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  /* min-height: 70px; */
}

footer p,
footer a,
footer {
  font-size: 14px;
}

/* Footer Custom Column Widths (Equal columns, break into 2 rows on Laptop) */
.ts-main-footer .row {
  row-gap: 3rem;
  /* Adds gap between rows when they wrap */
}

@media (max-width: 991px) {
  .ts-main-footer .row {
    row-gap: 2rem;
  }
}

@media (max-width: 767px) {
  .ts-main-footer .row {
    row-gap: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .footer-col-1 {
    width: 20%;
  }

  .footer-col-2 {
    width: 20%;
  }

  .footer-col-3 {
    width: 20%;
  }

  .footer-col-4 {
    width: 15%;
  }

  .footer-col-5 {
    width: 15%;
  }

  .footer-col-6 {
    width: 10%;
  }
}

@media (min-width: 992px) and (max-width: 1439.98px) {

  .footer-col-1,
  .footer-col-2,
  .footer-col-3,
  .footer-col-4,
  .footer-col-5,
  .footer-col-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* -------------------------------------
   1. GLOBAL TYPOGRAPHY & RESETS
------------------------------------- */
:root {
  --brand-one: #ef4129;
  --brand-two: #ede9e3;
  --brand-white: #f7f6ed;
  --brand-second: #ede9e3;
  --brand-biege: #dbd4c2;
  --brand-orange: #f99402;
  --brand-maroon: #bc4d4d;
  --brand-purple: #5b53ab;
  --brand-brown: #592c1c;
  --brand-blue: #6b9de0;
  --brand-yellow: #f0b51d;
  --brand-green: #4ba05c;
  --brand-wheat: #edd9b4;
  --brand-beige: #ebbd8c;
  --brand-grey: #1f1f1f;
  --brand-skyblue: #9f81ba;
  --brand-light-skyblue: #dbc2f0;
  --brand-light-yellow: #fff2d4;
  --brand-light-red: #fab7b7;
  --brand-light-biege: #ede8dc;
  --brand-light-wheat: #eddab4;
  --brand-light-green: #c2f3cc;
  --brand-light-purple: #c3c8f9;
  --brand-light-brown: #b9988d;
}

/* -------------------------------------
   BRAND COLORS: TEXT & SOFT GRADIENTS
------------------------------------- */

/* Text Colors */
.text-one {
  color: var(--brand-one);
}

.text-two {
  color: var(--brand-two);
}

.text-white {
  color: var(--brand-white);
}

.text-second {
  color: var(--brand-second);
}

.text-biege {
  color: var(--brand-biege);
}

.text-orange {
  color: var(--brand-orange);
}

.text-maroon {
  color: var(--brand-maroon);
}

.text-purple {
  color: var(--brand-purple);
}

.text-skyblue {
  color: var(--brand-skyblue);
}

.text-light-skyblue {
  color: var(--brand-light-skyblue);
}

.text-brown {
  color: var(--brand-brown);
}

.text-blue {
  color: var(--brand-blue);
}

.text-yellow {
  color: var(--brand-yellow);
}

.text-green {
  color: var(--brand-green);
}

.text-wheat {
  color: var(--brand-wheat);
}

/* Background Colors */
.bg-one {
  background-color: var(--brand-one);
}

.bg-two {
  background-color: var(--brand-two);
}

.bg-grey {
  background-color: var(--brand-grey);
}

.bg-light-yellow {
  background-color: var(--brand-light-yellow);
}

.bg-light-red {
  background-color: var(--brand-light-red);
}

.bg-skyblue {
  background-color: var(--brand-skyblue);
}

.bg-light-skyblue {
  background-color: var(--brand-light-skyblue);
}

.bg-light-biege {
  background-color: var(--brand-light-biege);
}

.bg-light-wheat {
  background-color: var(--brand-light-wheat);
}

.bg-light-green {
  background-color: var(--brand-light-green);
}

.bg-light-biege {
  background-color: var(--brand-light-biege);
}

.bg-light-orange {
  background-color: var(--brand-light-orange);
}

.bg-white {
  background-color: var(--brand-white);
}

.bg-second {
  background-color: var(--brand-second);
}

.bg-biege {
  background-color: var(--brand-biege);
}

.bg-orange {
  background-color: var(--brand-orange);
}

.bg-maroon {
  background-color: var(--brand-maroon);
}

.bg-purple {
  background-color: var(--brand-purple);
}

.bg-brown {
  background-color: var(--brand-brown);
}

.bg-blue {
  background-color: var(--brand-blue);
}

.bg-yellow {
  background-color: var(--brand-yellow);
}

.bg-green {
  background-color: var(--brand-green);
}

.bg-wheat {
  background-color: var(--brand-wheat);
}

.font-cardo {
  font-family: "Cardo", serif;
}

.link-underline-brand {
  border-bottom: 2px solid var(--brand-one);
  padding-bottom: 2px;
}

.social-icon-circle {
  border-radius: 50%;
  width: 75px;
  height: 75px;
  border: 1.5px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1e1e1e;
  font-size: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
  .social-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .social-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

.social-icon-circle i {
  transition: transform 0.3s ease;
}

.social-icon-circle:hover {
  background-color: #1e1e1e;
  color: #fff;
}

.social-icon-circle:hover i {
  /* transform: scale(1.15); */
}

.benefit-icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light-biege);
  transition: all 0.3s ease;
}

.benefit-icon-circle img,
.benefit-icon-circle svg {
  width: 60px;
  height: auto;
}

@media (max-width: 991px) {
  .benefit-icon-circle {
    width: 100px;
    height: 100px;
  }

  .benefit-icon-circle img,
  .benefit-icon-circle svg {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .benefit-icon-circle {
    width: 80px;
    height: 80px;
  }

  .benefit-icon-circle img,
  .benefit-icon-circle svg {
    width: 40px;
  }
}

/* Soft Background Gradients (25% Opacity -> White at 15% & 85% -> 25% Opacity) */

.trending-title-banner {
  background: linear-gradient(90deg,
      var(--brand-white) 0%,
      #e6e7ba 50%,
      var(--brand-white) 100%);
}

.badge.bg-one a {
  transition: opacity 0.2s ease;
}

.badge.bg-one a:hover {
  opacity: 0.8 !important;
}

.badge-discount-top,
.badge-discount-right {
  position: absolute;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  z-index: 5;
  text-transform: uppercase;
}

.review-img-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

/* Shop Page Styles */
.sticky-sidebar {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  overflow-y: auto;
  padding-right: 10px;
}

.sticky-sidebar::-webkit-scrollbar {
  width: 4px;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}

.filter-section {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.filter-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}

.filter-content {
  padding-top: 15px;
}

.filter-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #444;
}

.product-card-shop {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  background: #fff;
}

.product-card-shop:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-one);
}

.product-badge-group {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product-badge {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}

.badge-featured {
  color: var(--brand-maroon);
  background: rgba(255, 0, 127, 0.05);
}

.badge-bestseller {
  color: var(--brand-green);
  background: rgba(46, 176, 134, 0.05);
}

.product-image-shop {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 15px;
}

.product-info-shop .brand-name {
  font-size: 11px;
  color: var(--brand-one);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-info-shop .product-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
  margin-bottom: 8px;
}

.product-price-shop {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.current-price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.mrp-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.discount-percent {
  font-size: 12px;
  color: #2eb086;
  font-weight: 600;
}

.product-rating-shop {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}

.stars {
  color: #333;
}

.shop-category-item {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
}

.shop-category-circle {
  width: 100px;
  height: 100px;
  background: #f8f8f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.shop-category-item:hover .shop-category-circle {
  background: #ececec;
}

.shop-category-item span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.page-number-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  background: #fff;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.page-number-btn:hover {
  border-color: var(--brand-one);
  color: var(--brand-one);
}

.page-number-btn.active {
  background: var(--brand-one);
  color: #fff;
  border-color: var(--brand-one);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ========================================== */
/* PRODUCT PAGE SPECIFIC STYLES              */
/* ========================================== */
.product-gallery-main {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.product-gallery-thumbs {
  margin-top: 15px;
}

.product-gallery-thumbs .swiper-slide {
  width: 80px;
  height: 80px;
  opacity: 0.4;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--brand-one);
}

.product-detail-info .brand-name {
  color: var(--brand-one);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-detail-info .product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rating-badge-summary {
  background: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border: 1px solid #e1dfd8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.price-box {
  background: #fdfaf5;
  padding: 24px;
  border-radius: 16px;
  margin: 30px 0;
  border: 1px solid #f2ede4;
}

.price-box .main-price {
  font-size: 32px;
  font-weight: 800;
  color: #000;
}

.price-box .mrp {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
  margin-left: 12px;
}

.discount-tag {
  background: #e6f4ea;
  color: #1e7e34;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 12px;
  text-transform: uppercase;
}

.offers-container {
  background: #fff9f0;
  border: 1px dashed var(--brand-orange);
  border-radius: 16px;
  padding: 24px;
}

.offer-item {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.size-btn {
  padding: 12px 24px;
  border: 1px solid #e1dfd8;
  background: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: all 0.2s ease;
}

.size-btn.active,
.size-btn:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.quantity-picker {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e1dfd8;
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  background: #fff;
}

.quantity-picker button {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-picker button:hover {
  background: #f5f5f5;
}

.quantity-picker input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  appearance: none;
  -moz-appearance: textfield;
}

.quantity-picker input::-webkit-outer-spin-button,
.quantity-picker input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-to-cart {
  background: #000;
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
  background: var(--brand-one);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(239, 65, 41, 0.2);
}

.btn-wishlist {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #e1dfd8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  transition: 0.3s;
  background: #fff;
}

.btn-wishlist:hover {
  border-color: var(--brand-one);
  color: var(--brand-one);
}

.pincode-input-wrapper {
  position: relative;
  max-width: 300px;
}

.pincode-input-wrapper .check-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-one);
  background: none;
  border: none;
  font-weight: 700;
}

.product-tabs-nav {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.product-tabs-nav .nav-link {
  color: #666;
  font-weight: 600;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 15px 25px;
}

.product-tabs-nav .nav-link.active {
  color: var(--brand-one);
  border-bottom-color: var(--brand-one);
  background: none;
}

.review-summary-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.rating-bar-wrapper {
  width: 100%;
}

.rating-bar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  flex-grow: 1;
  margin: 0 15px;
}

.rating-bar-fill {
  height: 100%;
  background: var(--brand-one);
}

.review-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.review-user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .product-detail-info {
    margin-top: 30px;
  }
}

/* Swiper gallery thumbnail active state */
.productGalleryThumbs .swiper-slide-thumb-active img,
.productGalleryThumbs .swiper-slide-thumb-active div {
  /* border: 1px solid var(--brand-one) !important; */
  /* opacity: 1; */
}

.productGalleryThumbs .swiper-slide {
  opacity: 0.55;
  transition: opacity 0.2s;
}

.productGalleryThumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.promotion-banner .card-img-holder {
  max-height: 500px;
}

.form-check-input:checked {
  background-color: var(--brand-one);
  border-color: var(--brand-one);
}

.form-range::-webkit-slider-thumb {
  background: var(--brand-one);
}

.form-range::-moz-range-thumb {
  background: var(--brand-one);
}

.form-range::-ms-thumb {
  background: var(--brand-one);
}

/* ========================================== */
/* SIDEBAR SPECIFIC STYLES                    */
/* ========================================== */
.sticky-sidebar {
  position: sticky;
  top: 20px;
  background: #fff;
  padding: 10px;
}

.filter-section {
  border-top: 1px solid #ececec;
  padding: 16px 0;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
  cursor: pointer;
}

.filter-title .fa-chevron-down,
.filter-title .fa-chevron-up {
  font-size: 12px;
}

.filter-content {
  margin-top: 15px;
  display: none;
}

.filter-section.open .filter-content {
  display: block;
}

.filter-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-checkbox-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
  cursor: pointer;
}

.filter-checkbox-item label {
  cursor: pointer;
  flex: 1;
}

.filter-checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  accent-color: var(--brand-one);
}

.filter-checkbox-item input[type="checkbox"]:checked {
  background-color: var(--brand-one);
  border-color: var(--brand-one);
}

.section-px {
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 1599.98px) {
  .px-xl-5 {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 1199.98px) {
  .section-px {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-px {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ========================================== */
/* PRODUCT PAGE GALLERY STICKY                */
/* ========================================== */
.product-gallery-sticky {
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: flex-start;
  /* Crucial for sticky to work in flex containers */
}

/* Product Gallery Styles */
.productGalleryMain {
  border-radius: 20px;
  overflow: hidden;
  /* background: #fff; */
  /* border: 1px solid #f2ede4 !important; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
}

.productGalleryMain .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  /* background: #fff; */
  padding: 20px;
}

.productGalleryThumbs .swiper-slide {
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
}

.productGalleryThumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--brand-one);
}

.productGalleryThumbs .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.video-slide-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  /* background: #f8f9fa; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(0, 0, 0, 0.1); */
  z-index: 2;
}

.video-play-btn {
  width: 60px;
  height: 60px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.swiper-slide:hover .video-play-btn {
  transform: scale(1.1);
}

.delivery-option-card {
  transition: all 0.3s ease;
  /* background: #fff; */
}

.delivery-option-card:hover {
  border-color: #000 !important;
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important; */
}

.letter-spacing-1 {
  letter-spacing: 0.1em;
}

.product-image-shop {
  transition: transform 0.5s ease;
}

.product-card-shop:hover .product-image-shop {
  transform: scale(1.05);
}

.cursor-pointer {
  cursor: pointer;
}

@media (max-width: 991px) {
  .product-gallery-sticky {
    position: static;
  }
}

/* 15. UTILITY HELPERS FOR REPETITIVE STYLES */
.img-fixed-400 {
  width: 100% !important;
  height: 400px !important;
  object-fit: cover !important;
}

.icon-box-100 {
  width: 100px !important;
  height: 100px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.icon-box-100 i {
  font-size: 1.75rem;
}

.section-spacer {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* -----------------------------------------------
   12. 3D CARD CAROUSEL
----------------------------------------------- */
.carousel-container {
  position: relative;
  width: 90%;
  max-width: 1625px;
  height: 500px;
  margin: 2rem auto;
}

@media (max-width: 1599.98px) {
  .carousel-container {
    max-width: 75%;
    /* width: 1200px equivalent */
  }
}

@media (max-width: 1199.98px) {
  .carousel-container {
    max-width: 85%;
  }
}

@media (max-width: 991.98px) {
  .carousel-container {
    max-width: 80% !important;
    height: 450px;
  }
}

@media (max-width: 767.98px) {
  .carousel-container {
    max-width: 95% !important;
    height: 350px;
  }
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-container .card {
  position: absolute;
  top: 0;
  left: 0;
  /* Center the 80% wide card */
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: var(--brand-white);
}

.carousel-container .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* .carousel-container .download-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--brand-one);
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(239, 65, 41, 0.4);
} */

.carousel-container .card.active .download-btn {
  opacity: 1;
  pointer-events: auto;
}

.carousel-container .download-btn:hover {
  background: #d1351e;
  transform: translateX(-50%) scale(1.05);
}

/* Linear Peek States */
.carousel-container .card.prev2,
.carousel-container .card.next2 {
  opacity: 0;
  z-index: 3;
}

.carousel-container .card.active {
  opacity: 1;
  transform: translateX(0) scale(1.05);
  z-index: 5;
}

.carousel-container .card.prev1 {
  opacity: 0.6;
  transform: translateX(-88%) scale(0.9);
  /* Shows about 50-60px of the card */
  z-index: 4;
}

.carousel-container .card.next1 {
  opacity: 0.6;
  transform: translateX(88%) scale(0.9);
  /* Shows about 50-60px of the card */
  z-index: 4;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: var(--brand-one);
  color: #fff;
  border-color: var(--brand-one);
}

.carousel-btn.prev {
  left: 2%;
}

.carousel-btn.next {
  right: 2%;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

@media (max-width: 767px) {
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .carousel-btn.prev {
    left: -10px;
  }

  .carousel-btn.next {
    right: -10px;
  }
}

/* Food & Beverage Category Cards */
.fb-category-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px !important;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

.fb-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

.fb-card-gradient {
  height: 140px !important;
  width: 100% !important;
}

.fb-card-list {
  line-height: 2 !important;
  list-style-type: disc !important;
  padding-left: 20px !important;
  margin-bottom: auto !important;
}

/* ========================================== */
/* UNIQUE SECTION CLASSES (TS SYSTEM)         */
/* ========================================== */

/* Header & Navigation */

/* Section Background Patterns */
.ts-bg-soft-gradient {
  background: linear-gradient(180deg,
      var(--ts-gradient-color) 0%,
      transparent 25%,
      transparent 75%,
      var(--ts-gradient-color) 100%);
}

.ts-luggage-section {
  --ts-gradient-color: rgb(255, 234, 195);
}

.ts-luggage-section,
.ts-apparels-section,
.ts-food-beverages-section,
.ts-outdoor-events-section {
  position: relative;
}

.ts-apparels-section {
  background: linear-gradient(180deg,
      var(--brand-light-red) 0%,
      transparent 25%,
      transparent 75%,
      var(--brand-light-red) 100%);
}

.ts-trip-prep-section {
  background: linear-gradient(180deg,
      var(--brand-light-skyblue) 0%,
      transparent 35%,
      transparent 100%);
}

.ts-food-beverages-section {
  --ts-gradient-color: #fce5d4;
}

.ts-outdoor-events-section {
  background: linear-gradient(180deg,
      var(--brand-light-brown) 0%,
      transparent 25%,
      transparent 75%,
      var(--brand-light-brown) 100%);
}

.ts-electronics-section {
  background: linear-gradient(180deg,
      var(--brand-light-purple) 0%,
      transparent 45%);
}

.ts-auto-accessories-section {
  background: linear-gradient(180deg,
      var(--brand-light-yellow) 0%,
      transparent 65%,
      transparent 100%);
}

.auto-acces-row .swiper-slide img {
  /* background-color: #f8f9fa; */
  border: 1px solid #dee2e6;
  border-radius: 12px;
  /* padding: 30px 0; */
  /* margin-bottom: 2.5rem !important; */
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ts-health-care-section {
  /* background-color: var(--brand-light-green) !important; */
  background: linear-gradient(180deg,
      var(--brand-light-green) 0%,
      transparent 65%,
      transparent 100%);
}

.border-health {
  border: 1px solid #e1dfd8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.border-health-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
  height: 100px;
  /* Fixed height for consistency */
}

.border-health-bottom:hover {
  background-color: #fcfcfc;
}

.border-health-bottom img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* Footer & Information */
.ts-social-media-section {
  background-color: var(--brand-light-wheat);
  /* padding: 4rem 0; */
}

/* Header & Navigation */

.ts-essentials-section .essentialsSwiper {
  z-index: 2 !important;
}

.ts-essentials-section .essentials-container {
  max-width: 1400px !important;
  width: 90%;
  margin: 0 auto;
}

.ts-essentials-section .essentials-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .ts-essentials-section .essentials-img {
    max-height: 250px;
  }
}

/* Product Categories */

/* Promotional & Dynamic Content */
/* Promotional & Dynamic Content */

.ts-final-promo-2 {
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 15%,
      var(--brand-light-yellow) 100%);
}

.ts-final-promo-1 img,
.ts-final-promo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer & Information */

.ts-main-footer {
  background-color: var(--brand-light-biege);
}

.bg-beige {
  background-color: var(--brand-beige) !important;
  color: var(--brand-brown) !important;
}

/* ========================================== */
/* TYPOGRAPHY RESPONSIVENESS                  */
/* Pushed to end to ensure it overrides bases */
/* ========================================== */

@media (max-width: 1599.98px) {
  .nav-link {
    font-size: 14px !important;
    margin: 0 0.25rem !important;
  }

  .fs-4 {
    font-size: 3rem !important;
  }

  .fs-22 {
    font-size: 18px !important;
  }

  .section-main-title {
    line-height: 1;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 3rem;
  }

  h2,
  .section-sub-title {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  .section-main-title {
    font-size: 7vw;
  }

  .fs-32 {
    font-size: 28px !important;
  }

  .fs-25 {
    font-size: 22px !important;
  }

  .fs-22 {
    font-size: 18px !important;
  }

  .ts-hero-section {
    background-color: var(--brand-two);
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }

  h2,
  .section-sub-title {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .brand-logo h1 {
    font-size: 2.2rem;
  }

  .section-main-title {
    font-size: 3rem;
  }

  .fs-32 {
    font-size: 26px !important;
  }

  .fs-25 {
    font-size: 20px !important;
  }

  .fs-22 {
    font-size: 18px !important;
  }

  .fs-18 {
    font-size: 16px !important;
  }

  .vertical-title {
    font-size: 3.5rem !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.2rem;
  }

  .main-title {
    font-size: 2.2rem !important;
  }

  .section-sub-title {
    font-size: 1.8rem !important;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  .brand-logo h1 {
    font-size: 1.8rem;
  }

  .section-main-title {
    font-size: 2.2rem;
  }

  .fs-32 {
    font-size: 24px !important;
  }

  .fs-25 {
    font-size: 20px !important;
  }

  .fs-22 {
    font-size: 18px !important;
  }

  .fs-18 {
    font-size: 16px !important;
  }

  .fs-7 {
    font-size: 4rem !important;
  }

  .fs-4 {
    font-size: 2.5rem !important;
  }

  .vertical-title {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: 2rem !important;
    margin-bottom: 0 !important;
  }

  .header-middle {
    border-bottom: 1px solid #dee2e6;
  }
}

@media (min-width: 992px) {
  .row-cols-lg-7>* {
    flex: 0 0 auto;
    width: 14.285714%;
  }
}

.bg-alpha-overlay {
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Make images transparent to match overlay in electronics bottom scroll */
.ts-electronics-section .alpha-overlay .card-img-holder img {
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
  /* Keep behind overlay */
}

.ts-electronics-section .alpha-overlay .card-img-holder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./images/alpha_tranparent.png) no-repeat center center;
  background-size: cover;
  pointer-events: none;
  /* Let clicks pass through */
  z-index: 2;
  /* Put overlay on top */
}

.explore-all {
  border-radius: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Global Responsive Margin & Padding Fix: Scaled utilities */
@media (max-width: 991px) {
  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .mt-5 {
    margin-top: 2.5rem !important;
  }

  .pt-5 {
    padding-top: 2.5rem !important;
  }

  .pb-5 {
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 767px) {
  .mb-5 {
    margin-bottom: 0.5rem !important;
  }

  .mt-5 {
    margin-top: 0.5rem !important;
  }

  .pt-5 {
    padding-top: 0.5rem !important;
  }

  .pb-5 {
    padding-bottom: 0.5rem !important;
  }
}

/* Brands Ticker Black - Road Background */
.ts-brands-ticker-3 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./images/auto_acces/roads.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fix Health & Pharma Stacking/Wrapping in Narrow Columns */
@media (max-width: 991px) {
  .border-health-bottom {
    padding: 1rem !important;
  }
}

@media (max-width: 767px) {
  .border-health-bottom {
    padding: 0.75rem 0.5rem !important;
  }
}

/* Custom Slider Navigation Buttons */
.custom-nav-btn {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1dfd8;
  transition: all 0.3s ease;
  z-index: 10;
}

.custom-nav-btn:after {
  font-size: 16px !important;
  font-weight: 900;
}

.custom-nav-btn:hover {
  background: #000;
  color: #fff !important;
  border-color: #000;
}

.position-relative .custom-nav-btn.swiper-button-next {
  right: -22px;
}

.position-relative .custom-nav-btn.swiper-button-prev {
  left: -22px;
}

@media (max-width: 1200px) {
  .position-relative .custom-nav-btn.swiper-button-next {
    right: -10px;
  }

  .position-relative .custom-nav-btn.swiper-button-prev {
    left: -10px;
  }
}
/* ============================================================
   CATEGORY PAGE STYLES (from mrdesignhub.com/ts/style.css)
   ============================================================ */

/* Sticky Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  overflow-y: auto;
  padding-right: 10px;
}
.sticky-sidebar::-webkit-scrollbar { width: 4px; }
.sticky-sidebar::-webkit-scrollbar-thumb { background: #eee; border-radius: 10px; }

/* Filter Sections */
.filter-section { border-bottom: 1px solid #eee; padding: 15px 0; }
.filter-title { font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; margin-bottom: 0; }
.filter-content { padding-top: 15px; }
.filter-checkbox-group { display: flex; flex-direction: column; gap: 10px; max-height: 200px; overflow-y: auto; }
.filter-checkbox-item { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #444; cursor: pointer; }
.filter-checkbox-item .form-check-input:checked { background-color: var(--brand-one, #ef4026); border-color: var(--brand-one, #ef4026); }

/* Product Card */
.product-card-shop { border: 1px solid #eee; border-radius: 8px; padding: 15px; transition: all 0.3s ease; height: 100%; position: relative; background: #fff; }
.product-card-shop:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--brand-one); }

/* Product Badges */
.product-badge-group { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.product-badge { font-size: 10px; text-transform: uppercase; font-weight: 700; padding: 2px 6px; border-radius: 2px; }
.badge-featured { color: var(--brand-maroon, #800020); background: rgba(255,0,127,0.05); }
.badge-bestseller { color: var(--brand-green, #2eb086); background: rgba(46,176,134,0.05); }
.badge-new { color: #fff; background: #4caf50; }

/* Product Image */
.product-image-shop { width: 100%; aspect-ratio: 1/1; object-fit: cover; margin-bottom: 15px; background: #f8f8f8; }

/* Product Info */
.product-info-shop .brand-name { font-size: 11px; color: var(--brand-one, #ef4026); font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
.product-info-shop .product-name { font-size: 14px; font-weight: 500; line-height: 1.4; color: #333; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 40px; margin-bottom: 8px; }

/* Product Price */
.product-price-shop { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.current-price { font-size: 16px; font-weight: 700; color: #000; }
.mrp-price { font-size: 12px; color: #999; text-decoration: line-through; }
.discount-percent { font-size: 12px; color: #2eb086; font-weight: 600; }

/* Product Rating */
.product-rating-shop { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #666; }
.stars { color: #333; }

/* Pagination */
.pagination-wrapper { display: flex; align-items: center; justify-content: center; gap: 15px; }
.page-number-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid #eee; background: #fff; color: #333; font-weight: 600; transition: all 0.3s ease; text-decoration: none; }
.page-number-btn:hover { border-color: var(--brand-one); color: var(--brand-one); }
.page-number-btn.active { background: var(--brand-one); color: #fff; border-color: var(--brand-one); }

/* Sub-category Chips */
.subcategory-chip { font-size: 13px; transition: all 0.2s; }
.subcategory-chip:hover { background: var(--brand-one, #ef4026) !important; color: #fff !important; border-color: var(--brand-one, #ef4026) !important; }

/* Category Banner */
.category-banner-section { position: relative; overflow: hidden; }

/* Category page toolbar overrides */
.category-toolbar .btn-group .btn { border-radius: 0; }
.category-toolbar .btn-group .btn:first-child { border-radius: 20px 0 0 20px; }
.category-toolbar .btn-group .btn:last-child { border-radius: 0 20px 20px 0; }

/* Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================================
   END CATEGORY PAGE STYLES
   ============================================================ */

/* DEPRECATED — Old category page styles below (kept for reference, overridden above) */
/* ============================================================
   CATEGORY PAGE - Filter Sidebar Styles
   ============================================================ */
.filter-sidebar.sticky-top {
  top: 120px;
  z-index: 10;
}
.filter-panel {
  padding: 0;
}
.filter-section {
  border-bottom: 1px solid #eee;
  padding-bottom: 0;
}
.filter-title {
  padding: 12px 0;
  cursor: pointer;
  user-select: none;
}
.filter-title:hover {
  color: var(--brand-one, #ef4026);
}
.filter-title .bi-chevron-down {
  transition: transform 0.2s;
}
.filter-title[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}
.filter-content {
  padding-bottom: 12px;
}
.filter-checkbox-item {
  padding: 4px 0;
  cursor: pointer;
}
.filter-checkbox-item:hover {
  color: var(--brand-one, #ef4026);
}
.filter-checkbox-item .form-check-input:checked {
  background-color: var(--brand-one, #ef4026);
  border-color: var(--brand-one, #ef4026);
}
.filter-checkbox-group {
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* ============================================================
   CATEGORY PAGE - Product Card Styles
   ============================================================ */
.product-card-shop {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
}
.product-card-shop:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.product-image-shop {
  width: 100%;
  min-height: 200px;
  max-height: 280px;
  object-fit: contain;
  background: #f8f8f8;
  padding: 12px;
}
.product-info-shop {
  padding: 12px 16px 16px;
}
/* product-badge-group and product-badge defined above at line ~2114 */
.badge-featured {
  color: var(--brand-maroon, #800020);
  background: rgba(255, 0, 127, 0.08);
}
.badge-bestseller {
  color: var(--brand-green, #2eb086);
  background: rgba(46, 176, 134, 0.08);
}
.badge-new {
  color: var(--brand-one, #ef4026);
  background: rgba(239, 64, 38, 0.08);
}
.brand-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-one, #ef4026);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.product-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
}
.product-price-shop {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.mrp-price {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}
.current-price {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.discount-percent {
  font-size: 12px;
  font-weight: 600;
  color: #4caf50;
}
.product-rating-shop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.product-rating-shop .stars-wrapper i {
  font-size: 12px;
}
.rating-count {
  font-size: 12px;
  color: #999;
}

/* ============================================================
   CATEGORY PAGE - Toolbar Styles
   ============================================================ */
.category-toolbar .btn-group .btn {
  border-radius: 0;
}
.category-toolbar .btn-group .btn:first-child {
  border-radius: 20px 0 0 20px;
}
.category-toolbar .btn-group .btn:last-child {
  border-radius: 0 20px 20px 0;
}
.category-toolbar .btn-outline-secondary {
  border-color: #ddd;
  color: #555;
}
.category-toolbar .btn-outline-secondary.active,
.category-toolbar .btn-outline-secondary:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ============================================================
   CATEGORY PAGE - Pagination Styles
   ============================================================ */
.pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-number-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #555;
  background: #f5f5f5;
  transition: all 0.2s;
  border: 1px solid #eee;
}
.page-number-btn:hover {
  background: #eee;
  color: #333;
}
.page-number-btn.active {
  background: var(--brand-one, #ef4026);
  color: #fff;
  border-color: var(--brand-one, #ef4026);
}

/* ============================================================
   CATEGORY PAGE - Banner Section
   ============================================================ */
.category-banner-section {
  overflow: hidden;
}
.category-banner-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}
.category-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 30%, transparent 70%);
}

/* ============================================================
   CATEGORY PAGE - Sub-category chips
   ============================================================ */
.subcategory-chip {
  padding: 8px 16px;
  border: 1px solid #eee;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}
.subcategory-chip:hover {
  background: var(--brand-one, #ef4026);
  color: #fff !important;
  border-color: var(--brand-one, #ef4026);
}

/* ============================================
   PRODUCT PAGE: STACKED GALLERY LAYOUT
   ============================================ */
.product-gallery-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f8f8f8;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.02);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-slide-container {
  position: relative;
  width: 100%;
}
.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}
.gallery-item:hover .video-overlay {
  background: rgba(0,0,0,0.25);
}
.video-play-btn {
  width: 60px; height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.gallery-item:hover .video-play-btn {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .product-detail-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
}

/* Lightbox */
.ts-lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.ts-lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}
.ts-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 15px;
  z-index: 10;
}
.ts-lightbox-nav.prev { left: 20px; }
.ts-lightbox-nav.next { right: 20px; }
