/* =========================================================
   ROOT / GLOBAL
========================================================= */

:root {
  --primary: #e95b78;
  --secondary: #ecb298;
  --accent: #e0ad6d;
  --dark: #222222;
  --gray: #666666;
  --white: #ffffff;
  --light-bg: #e9e9e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;

  color: var(--dark);
}

img {
  display: block;
  max-width: 100%;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #d84d68;
  border-color: #d84d68;
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-outline-dark:hover {
  background-color: var(--dark);
  /* color: var(--white); */
  color: var(--primary);
}

/* =========================================================
   ANNOUNCEMENT / NAVBAR
========================================================= */
/* =========================================
   FIXED / STICKY NAVBAR
========================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
}

.announcement-bar {
  background: var(--secondary);
  color: var(--dark);
  position: relative;
  /* z-index: 10000; */
}

.navbar-brand {
  letter-spacing: 0.18em;
}

.nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  transition: 0.3s ease;
}

.nav-icon-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  background: linear-gradient(135deg, var(--secondary), #fff);
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-card {
  border-radius: 2rem;
  background: var(--white);
}

.hero-image {
  min-height: 820px;
  object-fit: cover;
}

/* =========================================================
   GENERAL CARDS
========================================================= */
.featured-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

@media (max-width: 575.98px) {
  .featured-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .featured-heading {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .featured-image {
    height: 360px;
  }
}

.featured-banner,
.product-card,
.card,
.newsletter-card {
  transition: transform 0.3s ease;
}

.featured-banner:hover,
.card:hover {
  transform: none !important;
}

/* Product card hover disabled */
.product-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.product-hover-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.product-card {
  overflow: hidden;
}

.product-card>div:first-child {
  overflow: hidden;
}

.product-card:hover .product-hover-image {
  transform: scale(1.08);
}

.story-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .story-image {
    height: 420px;
  }
}

@media (max-width: 575.98px) {
  .story-image {
    height: 300px;
    border-radius: 16px;
  }
}

/* .product-hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
    transform-origin:  center;
   
} */

.card {
  overflow: hidden;
}

.card>div:first-child {
  overflow: hidden;
}

/* =========================================================
   NEWSLETTER / FOOTER
========================================================= */

.newsletter-card {
  background: linear-gradient(135deg, var(--secondary), #fff4ee);
}

.footer {
  background: #fcf7f4;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.page-hero {
  background: linear-gradient(135deg, var(--secondary), #fff);
}

.section-heading {
  margin-bottom: 1.25rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(233, 91, 120, 0.15);
}

/* =========================================================
   CATEGORY SECTION
========================================================= */

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.2) 55%,
      transparent);
  z-index: 1;
}

.category-content {
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.507), transparent);
  color: #fff;
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.9),
    0 0 10px rgba(0, 0, 0, 0.5);
}

.category-content h3 {
  letter-spacing: 0.3px;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-link {
  color: white;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.category-link:hover {
  background: white;
  color: #222;
  border-color: white;
}

/* =========================================================
   SHOP WISHLIST
========================================================= */

.shop-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.12);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  z-index: 2;
}

.shop-wishlist-btn:hover {
  transform: scale(1.05);
  background: var(--primary);
  color: var(--white);
}

/* =========================================================
   PRODUCT STICKY CARD
========================================================= */

.product-card-sticky {
  position: sticky;
  top: 90px;
  height: 85vh;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   PRODUCT IMAGE ZOOM
========================================================= */

/* Shop product image height */
.product-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.product-image-wrapper .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-image-wrapper,
.shop-product-image,
.product-image-wrapper,
.product-image-box {
  overflow: hidden;
}

.shop-image-wrapper {
  width: 100%;
  height: 400px;
}

.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.shop-image-wrapper:hover .shop-product-image {
  transform: scale(1.08);
}

.product-image-box {
  width: 100%;
  height: 550px;
}

.product-image-box .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.product-image-box:hover .card-img-top {
  transform: scale(1.08);
}

.product-image-wrapper {
  width: 100%;
  height: 400px;
}

.product-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

@media (max-width: 767px) {
  .product-image {
    height: 300px;
  }
}

.product-image-wrapper:hover .product-image {
  transform: scale(1.08);
}

/* =========================================================
   PRODUCT ACTIONS
========================================================= */

.product-actions {
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial-track,
.testimonial-track-reverse {
  display: flex;
  width: max-content;
  flex-wrap: nowrap !important;
  gap: 24px;
}

.testimonial-track {
  align-items: stretch;
  animation: testimonialScroll 18s linear infinite;
}

.testimonial-track-reverse {
  animation: testimonialScrollReverse 18s linear infinite;
}

.testimonial-slider:hover .testimonial-track,
.testimonial-slider:hover .testimonial-track-reverse {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 480px;
  width: 480px;
  min-width: 480px;
  height: 190px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.testimonial-content {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.testimonial-image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-quote {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: normal;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonialScrollReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ==============================
   ADDITIONAL BENEFITS
================================ */

.benefits-section {
  width: 100%;
}

.benefits-toggle {
  border: 0;
  background: transparent;
  padding: 5px 8px;
  /* color: var(--primary); */
  cursor: pointer;
}

.benefits-toggle i {
  transition: transform 0.3s ease;
}

.benefits-content {
  overflow: hidden;
}

.benefits-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.benefits-slider {
  display: flex;
  gap: 8px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}

.benefit-item {
  flex: 0 0 auto;
  min-width: 250px;
  height: 42px;

  display: flex;
  align-items: center;

  padding: 0 12px;

  background: #f7f7f7;
  border-radius: 8px;

  font-size: 14px;
  white-space: nowrap;
}

.benefit-arrow {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  border: 0;
  border-radius: 50%;

  background: #f5f5f5;
  /* color: var(--primary); */

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.2s ease;
}

.benefit-arrow:hover {
  background: var(--primary);
  color: #fff;
}

/* =========================================================
   PRODUCT MAIN IMAGE / SWIPER
========================================================= */

.productSwiper {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
}

.productSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.productSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   SWIPER ARROWS
========================================================= */

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
  color: var(--primary);
  width: 30px;
  height: 30px;
}

.productSwiper .swiper-button-next::after,
.productSwiper .swiper-button-prev::after {
  font-size: 22px;
}

/* =========================================================
   SWIPER PAGINATION
========================================================= */

.productSwiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.4;
}

.productSwiper .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* =========================================================
   PRODUCT THUMBNAILS
========================================================= */

.thumbnail-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;

  align-items: center;
  justify-content: flex-start;

  width: 100%;
  max-width: 100%;

  gap: 10px;
  margin-top: 12px;

  overflow-x: auto;
  overflow-y: hidden;

  white-space: nowrap;

  scrollbar-width: none;
  -ms-overflow-style: none;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.thumbnail-list::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   THUMBNAIL - DESKTOP
========================================================= */

.thumbnail-list .thumb {
  flex: 0 0 65px;

  width: 65px;
  min-width: 65px;
  max-width: 65px;

  height: 65px;
  min-height: 65px;

  object-fit: cover;

  display: block;

  border: 2px solid transparent;
  border-radius: 7px;

  cursor: pointer;

  opacity: 0.65;

  transition:
    opacity 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.thumbnail-list .thumb:hover {
  opacity: 1;
  transform: scale(1.03);
}

.thumbnail-list .thumb.active {
  opacity: 1;
  border-color: var(--primary);
}

/* =========================================================
   LARGE DESKTOP
   1200px+
========================================================= */

@media (min-width: 1200px) {
  .productSwiper {
    height: 660px;
  }

  .thumbnail-list {
    padding-left: 10px;
    gap: 12px;
  }

  .thumbnail-list .thumb {
    flex-basis: 80px;
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
  }
}

/* =========================================================
   TABLET
   768px - 1199.98px
========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) {
  .productSwiper {
    height: 490px;
    border-radius: 16px;
  }

  .thumbnail-list {
    gap: 8px;
    margin-top: 10px;
    padding-left: 10px;
  }

  .thumbnail-list .thumb {
    flex-basis: 70px;
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    min-height: 70px;
    border-radius: 6px;
  }
}

/* =========================================================
   MOBILE
   Below 767.98px
========================================================= */

@media (max-width: 767.98px) {
  .productSwiper {
    height: 560px;
    border-radius: 14px;
  }

  .thumbnail-list {
    gap: 8px;
    margin-top: 10px;
    padding: 10px;
  }

  .thumbnail-list .thumb {
    flex-basis: 70px;
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    min-height: 70px;
    border-radius: 6px;
  }

  .thumbnail-list .thumb:hover {
    transform: none;
  }
}

/* =========================================================
   SMALL MOBILE
   Below 575.98px
========================================================= */

@media (max-width: 575.98px) {
  .productSwiper {
    height: 400px;
    border-radius: 12px;
  }

  .thumbnail-list {
    gap: 5px;
    margin-top: 5px;
    padding-left: 10px;
  }

  .thumbnail-list .thumb {
    flex-basis: 53px;
    width: 53px;
    min-width: 53px;
    max-width: 53px;
    height: 53px;
    min-height: 53px;
  }
}

/* =========================================================
   PRODUCT HIGHLIGHTS
========================================================= */

.product-highlights {
  position: relative;
  padding: 0 70px;
  margin-top: 60px;
}

.product-purchase-card .delivery-box h6,
.product-purchase-card .product-highlights h6 {
  margin-bottom: 0.5rem;
}

.product-purchase-card .delivery-box .small a {
  text-decoration: none;
  font-weight: 600;
}

.product-purchase-card .product-highlights .col-6 {
  color: var(--gray);
}

.product-purchase-card {
  padding: 0.75rem 1rem;
}

.product-purchase-card .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.product-purchase-card .btn-warning {
  background: #ffd83d;
  border-color: #ffd83d;
}

/* =========================================================
   SIMILAR PRODUCTS
========================================================= */

.similar-products {
  position: relative;
  padding: 0 90px;
  margin-top: 60px;
}

.similar-products h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.products-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.products-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 5px 25px;
}

.products-scroll::-webkit-scrollbar {
  display: none;
}

.similar-card {
  flex: 0 0 190px;
  width: 190px;
  background: #fff;
  overflow: hidden;
}

.similar-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.similar-card h6 {
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}

.product-title {
  font-size: 15px;
  margin: 8px 0 5px;
  line-height: 1.4;
  height: 42px;
  overflow: hidden;
}

/* =========================================================
   SIMILAR PRODUCT RATING
========================================================= */

.similar-card-box {
  position: relative !important;
}

.similar-card-box img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.rating-box {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--secondary);
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
}

.rating-box i {
  font-size: 20px;
}

.similar-card-box .rating-box {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  margin: 0 !important;
  z-index: 5 !important;
  background: #008f5a !important;
  color: #fff !important;
  padding: 4px 7px !important;
  border-radius: 4px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 3px;
}

/* =========================================================
   SIMILAR PRODUCT ARROWS
========================================================= */

.product-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.similar-prev,
.similar-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.similar-prev {
  left: 0;
}

.similar-next {
  right: 0;
}

/* =========================================================
   INSTAGRAM
========================================================= */

.instagram-card {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.instagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.instagram-card:hover .instagram-img {
  transform: scale(1.08);
}

.instagram-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  z-index: 5;
  transition: all 0.3s ease;
}

.instagram-icon:hover {
  background: #111;
  color: #fff;
  transform: scale(1.1);
}

/* =========================================================
   GIFT / REWARD
========================================================= */

.gift-btn {
  position: fixed;
  left: 0;
  bottom: 35px;
  width: 52px;
  height: 55px;
  border: none;
  border-radius: 0 10px 10px 0;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  z-index: 99999;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close-reward {
  position: fixed;
  left: 0;
  bottom: 35px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 0 10px 10px 0;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  z-index: 100001;
  display: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reward-popup {
  position: fixed;
  left: 0;
  bottom: 100px;
  width: 380px;
  max-width: 90vw;
  height: 600px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
  z-index: 100000;
  overflow-y: auto;
  transform: translateX(-110%);
  transition: transform 0.4s ease;
}

.reward-popup.active {
  transform: translateX(0);
}

.reward-header {
  background: var(--primary);
  color: #fff;
  padding: 35px 25px 55px;
  border-radius: 10px 10px 0 0;
}

.reward-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.reward-body {
  padding: 0 25px 25px;
}

.join-card {
  background: #fff;
  margin-top: -35px;
  padding: 28px 20px;
  border-radius: 7px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.join-card h4 {
  margin-bottom: 25px;
  font-size: 19px;
  font-weight: 500;
}

.join-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 15px;
}

.reward-btn {
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 11px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.reward-btn:hover {
  background: #d84d68;
}

.signin-text {
  margin-top: 12px;
  font-size: 12px;
  color: #777;
}

.signin-text a {
  color: #333;
}

.reward-options {
  margin-top: 30px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.reward-option {
  min-height: 53px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #333;
}

.reward-option:last-child {
  border-bottom: none;
}

.reward-option i {
  color: var(--primary);
  margin-right: 10px;
}

.reward-option small {
  color: #777;
}

.partner-btn {
  display: block;
  margin: 20px auto 10px;
  padding: 6px 10px;
  background: #fff;
  color: #333;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

.partner-text {
  text-align: center;
  color: #777;
  font-size: 11px;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE — LARGE TABLET / SMALL LAPTOP
   992px → 1199px
========================================================= */

@media (max-width: 1199.98px) {
  .hero-image {
    min-height: 460px;
  }

  .testimonial-card {
    flex-basis: 400px;
    width: 400px;
    min-width: 400px;
  }

  .similar-products {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* =========================================================
   TABLET
   768px → 991px
========================================================= */

@media (max-width: 991.98px) {
  /* Global */

  body {
    font-size: 15px;
  }

  .hero-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-image {
    min-height: 400px;
  }

  /* Product image */

  .shop-image-wrapper,
  .product-image-box,
  .product-image-wrapper {
    height: 360px;
  }

  /* Testimonials */

  .testimonial-card {
    flex-basis: 360px;
    width: 360px;
    min-width: 360px;
    height: 180px;
  }

  .testimonial-image {
    width: 55px;
    height: 55px;
  }

  /* Benefits */

  .benefit-item {
    min-width: 100%;
  }

  /* Similar products */

  .similar-products {
    padding-left: 40px;
    padding-right: 40px;
  }

  .similar-products h3 {
    font-size: 28px;
  }

  .similar-card {
    flex-basis: 180px;
    width: 180px;
  }

  .similar-card img,
  .similar-card-box img {
    height: 230px;
  }

  .products-scroll {
    gap: 15px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .similar-prev {
    left: 5px;
  }

  .similar-next {
    right: 5px;
  }

  /* Instagram */

  .instagram-card {
    height: 420px;
  }

  /* Product highlights */

  .product-highlights {
    padding: 0 40px;
  }
}

/* =========================================================
   MOBILE LARGE
   576px → 767px
========================================================= */

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  /* Section spacing */

  section.p-5 {
    padding: 2rem 1rem !important;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  /* Hero */

  .min-vh-80 {
    min-height: auto;
  }

  .hero-image {
    min-height: 330px;
  }

  .hero-card {
    border-radius: 1rem;
  }

  /* Categories */

  .category-content {
    padding: 1rem !important;
  }

  .category-content h3 {
    font-size: 1.1rem;
  }

  .category-link {
    font-size: 11px;
    padding: 5px 8px;
  }

  /* Product cards */

  .product-card .card-body {
    padding: 0.75rem;
  }

  .product-card .card-img-top {
    height: 280px !important;
  }

  /* Shop */

  .shop-sort-select {
    min-width: 150px;
  }

  .shop-wishlist-btn {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  }

  .shop-image-wrapper,
  .product-image-box,
  .product-image-wrapper {
    height: 300px;
  }

  /* Testimonials */

  .testimonial-track,
  .testimonial-track-reverse {
    gap: 15px;
  }

  .testimonial-card {
    flex-basis: 300px;
    width: 300px;
    min-width: 300px;
    height: 170px;
  }

  .testimonial-content {
    padding: 15px;
  }

  .testimonial-image {
    width: 50px;
    height: 50px;
  }

  .benefit-item {
    font-size: 12px;
    padding: 8px 10px;
  }

  .benefit-arrow {
    width: 30px;
    height: 30px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 38px;
    height: 38px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }

  /* Product highlights */

  .product-highlights {
    padding: 0 20px;
    margin-top: 40px;
  }

  /* Similar products */

  .similar-products {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 40px;
  }

  .similar-products h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .similar-card {
    flex-basis: 160px;
    width: 160px;
  }

  .similar-card img,
  .similar-card-box img {
    height: 215px;
  }

  .products-scroll {
    gap: 12px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .product-arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .similar-prev {
    left: 0;
  }

  .similar-next {
    right: 0;
  }

  .similar-card h6 {
    font-size: 13px;
    line-height: 18px;
  }

  .rating-box {
    font-size: 10px;
  }

  .similar-card-box .rating-box {
    top: 6px !important;
    left: 6px !important;
    padding: 3px 5px !important;
  }

  /* Instagram */

  .instagram-card {
    height: 360px;
  }

  .instagram-icon {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  /* Reward */

  .gift-btn {
    width: 48px;
    height: 50px;
    bottom: 25px;
    font-size: 20px;
  }

  .close-reward {
    width: 48px;
    height: 50px;
    bottom: 25px;
    font-size: 18px;
  }

  .reward-popup {
    width: 340px;
    max-width: calc(100vw - 20px);
    height: 75vh;
    bottom: 90px;
  }

  .reward-header {
    padding: 25px 20px 45px;
  }

  .reward-header h3 {
    font-size: 19px;
  }

  .reward-body {
    padding: 0 18px 20px;
  }

  .join-card {
    padding: 22px 15px;
  }
}

/* =========================================================
   MOBILE SMALL
   Below 576px
========================================================= */

@media (max-width: 575.98px) {
  body {
    font-size: 13px;
  }

  /* Section */

  section.p-5 {
    padding: 1.5rem 0.75rem !important;
  }

  .section-heading {
    align-items: flex-start !important;
  }

  .section-heading p {
    font-size: 11px !important;
  }

  .section-heading h2 {
    font-size: 1.35rem;
  }

  .section-heading a {
    font-size: 12px;
    white-space: nowrap;
  }

  /* Hero */

  .hero-image {
    min-height: 270px;
  }

  /* Category */

  @media (max-width: 767.98px) {
    .category-scroll {
      display: flex;
      gap: 8px;
      overflow-x: auto;
    }

    .category-item {
      flex: 0 0 calc((100% - 10px) / 3);
      width: calc((100% - 10px) / 3);
    }

    .category-card {
      width: 100%;
      height: 150px;
    }

    .category-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .category-content {
      padding: 6px !important;
    }

    .category-content h3 {
      font-size: 11px;
      line-height: 1.1;
      margin-bottom: 4px !important;
    }

    .category-link {
      font-size: 8px;
      padding: 2px 5px;
    }

    .category-card:hover .category-image {
      transform: scale(1.08);
    }
  }

  @media (max-width: 575.98px) {
    .category-image {
      width: 100%;
      height: 80px;
      object-fit: cover;
    }

    .category-content {
      padding: 8px !important;
    }

    .category-content h3 {
      font-size: 11px;
      line-height: 1.2;
      margin-bottom: 5px !important;
    }

    .category-links {
      gap: 3px;
    }

    .category-link {
      font-size: 8px;
      padding: 3px 5px;
      border-radius: 12px;
    }

    .category-card:hover .category-image {
      transform: scale(1.08);
    }
  }

  /* New arrivals */

  .product-card .card-img-top {
    height: 250px !important;
  }

  .product-card .card-body {
    padding: 0.6rem;
  }

  .product-card h3 {
    font-size: 13px;
  }

  .product-card p {
    font-size: 10px;
  }

  /* Shop products */

  .shop-image-wrapper,
  .product-image-box,
  .product-image-wrapper {
    height: 280px;
  }

  /* Testimonials */

  .testimonial-card {
    flex-basis: 270px;
    width: 270px;
    min-width: 270px;
    height: 160px;
  }

  .testimonial-content {
    padding: 12px;
  }

  .testimonial-image {
    width: 45px;
    height: 45px;
  }

  /* Similar products */

  .similar-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .similar-products h3 {
    font-size: 21px;
  }

  .similar-card {
    flex-basis: 145px;
    width: 145px;
  }

  .similar-card img,
  .similar-card-box img {
    height: 195px;
  }

  .products-scroll {
    gap: 10px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .product-arrow {
    width: 32px;
    height: 32px;
  }

  .similar-prev {
    left: -2px;
  }

  .similar-next {
    right: -2px;
  }

  /* Instagram */

  .instagram-card {
    height: 320px;
  }

  /* Product highlights */

  .product-highlights {
    padding: 0 10px;
    margin-top: 30px;
  }

  /* Reward */

  .gift-btn {
    width: 45px;
    height: 48px;
    bottom: 20px;
    font-size: 19px;
  }

  .close-reward {
    width: 45px;
    height: 48px;
    bottom: 20px;
    font-size: 17px;
  }

  .reward-popup {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    height: 78vh;
    bottom: 78px;
    border-radius: 8px 8px 0 0;
  }

  .reward-header {
    padding: 22px 16px 40px;
  }

  .reward-header h3 {
    font-size: 17px;
  }

  .reward-body {
    padding: 0 14px 15px;
  }

  .join-card {
    margin-top: -25px;
    padding: 18px 12px;
  }

  .join-card h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .reward-btn {
    font-size: 12px;
    padding: 9px 12px;
  }

  .reward-option {
    padding: 12px;
    min-height: 48px;
    font-size: 12px;
  }
}

/* =========================================================
   VERY SMALL DEVICES
   Below 400px
========================================================= */

@media (max-width: 399.98px) {
  .similar-card {
    flex-basis: 135px;
    width: 135px;
  }

  .similar-card img,
  .similar-card-box img {
    height: 180px;
  }

  .products-scroll {
    padding-left: 22px;
    padding-right: 22px;
  }

  .instagram-card {
    height: 280px;
  }

  .reward-popup {
    width: calc(100vw - 5px);
    max-width: calc(100vw - 5px);
  }
}

/* =========================================================
   ACCESSIBILITY / MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
  /* ---------- Common ---------- */

  body {
    overflow-x: clip;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  img {
    max-width: 100%;
  }

  /* ---------- HERO ---------- */

  /* .hero-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    } */

  .hero-card {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    height: 380px;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
  }

  .min-vh-80 {
    min-height: auto;
  }

  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ---------- SECTION HEADINGS ---------- */

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  /* ---------- CATEGORIES ---------- */

  .category-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
  }

  .category-content {
    padding: 10px !important;
  }

  .category-content h3 {
    font-size: 18px;
  }

  .category-link {
    font-size: 11px;
    padding: 5px 8px;
  }

  /* ---------- NEW ARRIVALS / PRODUCT CARDS ---------- */

  .product-card {
    width: 100%;
    overflow: hidden;
  }

  .product-card .card-img-top {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    object-position: center;
  }

  .product-card .card-body {
    padding: 14px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  /* ---------- SHOP PRODUCTS ---------- */

  .shop-products-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .shop-products-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .product-image-box .card-img-top {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
  }

  /* ---------- SHOP GRID ---------- */

  #shop-products {
    margin-left: -6px;
    margin-right: -6px;
  }

  #shop-products>[class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* ---------- SIMILAR PRODUCTS ---------- */

  .similar-products {
    padding-left: 16px;
    padding-right: 16px;
  }

  .similar-products h3 {
    font-size: 22px;
  }

  .products-wrapper {
    width: 100%;
  }

  .products-scroll {
    gap: 12px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .similar-card {
    flex: 0 0 160px;
    width: 160px;
  }

  .similar-card img {
    width: 100%;
    height: 215px;
    object-fit: cover;
  }

  .similar-card h6 {
    font-size: 13px;
  }

  .similar-prev {
    left: 0;
  }

  .similar-next {
    right: 0;
  }

  .product-arrow {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  /* ---------- INSTAGRAM ---------- */

  .instagram-card {
    height: 380px;
    width: 100%;
  }

  .instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ---------- TESTIMONIALS ---------- */

  .testimonial-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    height: auto;
    min-height: 190px;
  }

  .testimonial-content {
    padding: 15px;
  }

  /* ---------- BENEFITS ---------- */

  .benefit-item {
    min-width: 100%;
    font-size: 12px;
    padding: 9px 10px;
  }

  /* ---------- REWARD POPUP ---------- */

  .reward-popup {
    width: calc(100% - 20px);
    max-width: none;

    left: 10px;

    bottom: 100px;

    height: calc(100vh - 130px);

    border-radius: 12px;
  }

  .gift-btn,
  .close-reward {
    width: 50px;
    height: 50px;

    bottom: 30px;
  }

  /* ---------- FOOTER ---------- */

  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 576px) and (max-width: 991.98px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero-image {
    height: 450px;
    min-height: 450px;
    object-fit: cover;
  }

  .product-card .card-img-top {
    height: 350px !important;
    object-fit: cover;
  }

  .product-image-box {
    aspect-ratio: 3 / 4;
  }

  .product-image-box .card-img-top {
    height: 100% !important;
    object-fit: cover;
  }

  .similar-card {
    flex: 0 0 180px;
  }

  .similar-card img {
    height: 240px;
  }

  .instagram-card {
    height: 450px;
  }
}

/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {
  .mobile-filter-btn {
    display: none !important;
  }

  .mobile-filter-header {
    display: none !important;
  }

  .mobile-filter-close {
    display: none !important;
  }
}

/* =========================
   CATEGORY SECTION
========================= */

.categories-section {
  /* padding: 60px 50px; */
  width: 100%;
}

.category-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.05) 65%);
}

.category-content {
  z-index: 2;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-link {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 7px 12px;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  /* .categories-section {
        padding: 30px 10px;
    } */

  .categories-section .section-heading {
    margin-bottom: 25px !important;
  }

  .categories-section .section-heading h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .category-content {
    padding: 12px !important;
  }

  .category-content h3 {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 8px !important;
  }

  .category-links {
    gap: 4px;
  }

  .category-link {
    font-size: 9px;
    padding: 5px 7px;
  }
}

.bestseller-image-wrap {
  height: 500px;
}

@media (max-width: 767px) {
  .bestseller-image-wrap {
    height: 380px;
  }
}

.product-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .product-image {
    height: 240px;
  }
}

/* =========================================================
   FINAL RESPONSIVE SPACING & SIZING
   ========================================================= */

/* ---------- GLOBAL ---------- */

html {
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  width: 100%;
}

.container {
  width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-swiper,
.hero-slide {
  width: 100%;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

/* Desktop */
.hero-slide img {
  width: 100%;
  height: 760px !important;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  padding: 40px 0;
}

.hero-overlay .container {
  padding-left: 40px;
  padding-right: 40px;
}

.hero-overlay h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.15;
}

.hero-overlay p.lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* =========================================================
   CATEGORY SECTION
   ========================================================= */

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content {
  padding: 20px !important;
}

.category-content h3 {
  font-size: 20px;
}

.category-links {
  gap: 6px;
}

.category-link {
  font-size: 12px;
  padding: 5px 8px;
}

/* =========================================================
   FEATURED SECTION
   ========================================================= */

.newsletter-card {
  width: 100%;
}

.newsletter-card img {
  width: 100%;
  height: 550px !important;
  object-fit: cover;
}

.newsletter-card .section-heading {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.newsletter-card .col-lg-6 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.newsletter-card .col-lg-5 {
  padding-left: 30px;
  padding-right: 30px;
}

/* =========================================================
   NEW ARRIVALS
   ========================================================= */

.product-card {
  width: 100%;
}

.product-card img.card-img-top {
  width: 100%;
  height: 320px !important;
  object-fit: cover;
}

.product-card .card-body {
  padding: 15px;
}

.product-card h3 {
  font-size: 15px;
}

/* =========================================================
   STORY SECTION
   ========================================================= */

section img {
  max-width: 100%;
}

.story-section img {
  width: 100%;
  object-fit: cover;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 480px;
  width: 480px;
  min-width: 480px;
}

.testimonial-inner {
  width: 100%;
}

.testimonial-image {
  flex-shrink: 0;
}

/* =========================================================
   INSTAGRAM
   ========================================================= */

.instagram-card {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.instagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */

section.container .newsletter-card {
  width: 100%;
}

.newsletter-card {
  padding: 50px !important;
}

/* =========================================================
   TABLET
   768px - 991px
   ========================================================= */

@media (max-width: 991.98px) {

  /* Global section spacing */
  section {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  /* Hero */
  .hero-slide img {
    /* height: 600px !important; */
    height: 100% !important;
  }

  .hero-overlay .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-overlay h1 {
    font-size: 42px;
  }

  /* Categories */

  /* Featured */
  .newsletter-card img {
    height: 450px !important;
  }

  .newsletter-card {
    padding: 30px !important;
  }

  /* New arrivals */
  .product-card img.card-img-top {
    height: 300px !important;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 420px;
    width: 420px;
    min-width: 420px;
  }

  /* Instagram */
  .instagram-card {
    height: 400px;
  }
}

/* =========================================================
   MOBILE
   576px - 767px
   ========================================================= */

@media (max-width: 767.98px) {

  /* Global */
  section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Remove Bootstrap-like excessive spacing */
  .p-5 {
    padding: 15px !important;
  }

  .ps-5 {
    padding-left: 15px !important;
  }

  .pe-5 {
    padding-right: 15px !important;
  }

  .px-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .py-5 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  /* =====================================================
       HERO
       ===================================================== */

  .hero-slide img {
    /* height: 480px !important;
    min-height: 480px; */
    height: 100% !important;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-slide {
    border-radius: 0 !important;
  }

  .hero-overlay {
    align-items: center !important;
    padding: 20px 0;
  }

  .hero-overlay .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-overlay .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }

  .hero-overlay h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px !important;
  }

  .hero-overlay p.lead {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px !important;
  }

  .hero-overlay p.text-uppercase {
    font-size: 11px;
    margin-bottom: 10px !important;
  }

  .hero-overlay .btn {
    font-size: 13px;
    padding: 9px 15px !important;
  }

  /* =====================================================
       CATEGORY
       ===================================================== */

  .category-content {
    padding: 12px !important;
  }

  .category-content h3 {
    font-size: 14px;
    margin-bottom: 6px !important;
  }

  .category-link {
    font-size: 9px;
    padding: 4px 6px;
  }

  .section-heading {
    margin-bottom: 20px !important;
  }

  .section-heading h2,
  .display-6 {
    font-size: 25px !important;
    line-height: 1.2;
  }

  .section-heading p {
    font-size: 12px !important;
  }

  /* =====================================================
       FEATURED
       ===================================================== */

  .newsletter-card {
    padding: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .newsletter-card .section-heading {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .newsletter-card .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .newsletter-card .col-lg-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .newsletter-card img {
    height: 350px !important;
    min-height: 350px;
    object-fit: cover;
  }

  .newsletter-card h3 {
    font-size: 20px;
  }

  .newsletter-card p {
    font-size: 14px;
  }

  /* =====================================================
       NEW ARRIVALS
       ===================================================== */

  .product-card img.card-img-top {
    height: 230px !important;
    object-fit: cover;
  }

  .product-card .card-body {
    padding: 10px !important;
  }

  .product-card .card-body p {
    font-size: 10px;
  }

  .product-card h3 {
    font-size: 13px;
    line-height: 1.3;
  }

  .product-card .fw-bold {
    font-size: 13px;
  }

  .product-card .text-decoration-line-through {
    font-size: 10px;
  }

  /* =====================================================
       STORY
       ===================================================== */

  .story-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .story-section img {
    height: 350px !important;
  }

  .story-section h2 {
    font-size: 27px;
  }

  /* =====================================================
       TESTIMONIALS
       ===================================================== */

  .testimonial-card {
    flex: 0 0 320px;
    width: 320px;
    min-width: 320px;
    height: auto;
  }

  .testimonial-inner {
    min-height: 150px;
    padding: 12px !important;
  }

  .testimonial-image {
    width: 70px !important;
    height: 90px !important;
    margin-right: 10px !important;
    border-radius: 10px !important;
  }

  .testimonial-inner p {
    font-size: 11px;
    line-height: 1.4;
  }

  .testimonial-inner h3 {
    font-size: 13px;
  }

  .testimonial-inner i {
    font-size: 10px;
  }

  /* =====================================================
       INSTAGRAM
       ===================================================== */

  .instagram-card {
    height: 260px;
    border-radius: 12px !important;
  }

  .instagram-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  /* =====================================================
       NEWSLETTER
       ===================================================== */

  section.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  section.container .newsletter-card {
    padding: 25px 15px !important;
  }

  section.container .newsletter-card h2 {
    font-size: 22px;
  }

  section.container .newsletter-card p {
    font-size: 13px;
  }

  /* .input-group { */
  section.container .newsletter-card .input-group {
    flex-direction: column;
    gap: 8px;
  }

/* .input-group .form-control,
  .input-group .quantity-box.btn { */
  section.container .newsletter-card .input-group .form-control,
  section.container .newsletter-card .input-group .quantity-box.btn {
    width: 100%;
    border-radius: 6px !important;
  }
}

@media (max-width: 767.98px) {
  .category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .category-item {
    flex: 0 0 calc((100% - 10px) / 3);
    width: calc((100% - 10px) / 3);
  }

  .category-card {
    width: 100%;
  }

  .category-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }

  .category-content {
    padding: 5px !important;
  }

  .category-content h3 {
    font-size: 13px;
    line-height: 1.2;
  }

  .category-link {
    font-size: 10px;
  }
}

/* =========================================================
   SMALL MOBILE
   <= 575px
   ========================================================= */

@media (max-width: 575.98px) {

  /* Global */
  section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Hero */
  .hero-slide img {
    height: 100% !important;
    min-height: 100%;
    /* height: 430px !important;
    min-height: 430px; */
  }

  .hero-overlay .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-overlay h1 {
    font-size: 25px;
    line-height: 1.2;
  }

  .hero-overlay p.lead {
    font-size: 13px;
  }

  .hero-overlay .btn {
    font-size: 12px;
    padding: 8px 12px !important;
  }

  /* Category */

  .category-content {
    padding: 8px !important;
  }

  .category-content h3 {
    font-size: 11px;
    line-height: 1.2;
  }

  .category-links {
    gap: 3px;
  }

  .category-link {
    font-size: 7px;
    padding: 3px 5px;
  }

  /* Featured */
  .newsletter-card img {
    height: 280px !important;
    min-height: 280px;
  }

  .newsletter-card {
    padding: 15px !important;
  }

  /* New arrivals */
  .product-card img.card-img-top {
    height: 180px !important;
  }

  .product-card .card-body {
    padding: 8px !important;
  }

  .product-card h3 {
    font-size: 11px;
  }

  .product-card .card-body p {
    font-size: 8px;
  }

  .product-card .fw-bold {
    font-size: 11px;
  }

  .product-card .text-decoration-line-through {
    font-size: 8px;
  }

  /* Story */
  .story-section img {
    height: 280px !important;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 285px;
    width: 285px;
    min-width: 285px;
  }

  .testimonial-image {
    width: 60px !important;
    height: 80px !important;
  }

  /* Instagram */
  .instagram-card {
    height: 200px;
  }

  .instagram-icon {
    width: 27px;
    height: 27px;
  }

  /* Section headings */
  .section-heading h2,
  .display-6 {
    font-size: 21px !important;
  }

  .section-heading p {
    font-size: 10px !important;
  }

  /* Reward popup */
  .reward-popup {
    width: 100%;
    max-width: 100%;
    height: 90vh;
    bottom: 80px;
  }

  .reward-header {
    padding: 25px 18px 45px;
  }

  .reward-body {
    padding: 0 15px 20px;
  }

  .gift-btn,
  .close-reward {
    width: 45px;
    height: 48px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   <= 400px
   ========================================================= */

@media (max-width: 400px) {
  .hero-slide img {
    height: 100% !important;
    min-height: 100%;
    /* height: 400px !important;
    min-height: 400px; */
  }

  .hero-overlay h1 {
    font-size: 22px;
  }

  .hero-overlay p.lead {
    font-size: 12px;
  }

  .category-content h3 {
    font-size: 10px;
  }

  .category-link {
    font-size: 6.5px;
    padding: 2px 4px;
  }

  .product-card img.card-img-top {
    height: 160px !important;
  }

  .card .position-relative,
  .card .product-hover-img {
    /* height: 230px !important; */
  }

  .testimonial-card {
    flex: 0 0 270px;
    width: 270px;
    min-width: 270px;
  }

  .category-card:hover .category-image {
    transform: scale(1.08);
  }
}

/* =========================================
   CATEGORY FIX
========================================= */

.category-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  justify-content: center;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 auto;
  width: 350px;
}

.category-card {
  width: 100%;
  height: 300px;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 12px 12px;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 
.category-image:hover  {
    transform: scale(1.08);
} */

/* Tablet */
@media (max-width: 991.98px) {
  .category-scroll {
    justify-content: flex-start;
    gap: 20px;
  }

  .category-item {
    width: 250px;
  }

  .category-card {
    height: 220px;
  }

  .category-card:hover .category-image {
    transform: scale(1.08);
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .category-scroll {
    justify-content: flex-start;
    gap: 12px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .category-item {
    width: 30px;
  }

  .category-card {
    height: 90px;
    border-radius: 50% 50% 10px 10px;
  }

  .category-content {
    padding: 5px !important;
  }

  .category-content h3 {
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  .category-links {
    gap: 3px;
  }

  .category-link {
    font-size: 7px;
    padding: 3px 5px;
  }

  .category-card:hover .category-image {
    transform: scale(1.08);
  }
}

/* =========================================
   CATEGORY SECTION
========================================= */

.category-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  padding: 10px 0 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 auto;
  width: 350px;
}

/* Category Card */
.category-card {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
  background: #eee;
  border-radius: 50% 50% 12px 12px;
}

/* Image */
.category-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.2) 55%,
      transparent);
  z-index: 1;
}

/* Hover */
.category-card:hover .category-image {
  transform: scale(1.08);
}

/* Content */
.category-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.507), transparent);
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.9),
    0 0 10px rgba(0, 0, 0, 0.5);
}

.category-content h3 {
  letter-spacing: 0.3px;
  font-size: 22px;
  margin-bottom: 10px;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.category-link:hover {
  background: #fff;
  color: #222;
  border-color: #fff;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  .category-scroll {
    gap: 24px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .category-item {
    width: 280px;
  }

  .category-card {
    height: 320px;
  }

  .category-content {
    padding: 18px;
  }

  .category-content h3 {
    font-size: 19px;
  }

  .category-link {
    font-size: 12px;
    padding: 5px 8px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {
  .category-scroll {
    gap: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .category-item {
    width: 125px;
  }

  .category-card {
    height: 170px;
    border-radius: 50% 50% 10px 10px;
  }

  .category-content {
    padding: 10px;
  }

  .category-content h3 {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .category-links {
    gap: 4px;
  }

  .category-link {
    font-size: 8px;
    padding: 3px 5px;
  }
}

/* =========================================
   BEST SELLER IMAGE
========================================= */

.best-seller-image {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.best-seller-image .product-hover-img {
  position: absolute !important;

  top: 0 !important;
  left: 0 !important;

  width: 100% !important;
  height: 100% !important;

  display: block !important;

  object-fit: cover;
  object-position: center;

  margin: 0 !important;
  padding: 0 !important;

  transform: scale(1);
  transform-origin: center center;

  transition: transform 0.5s ease;

  z-index: 0;
}

.best-seller-image:hover .product-hover-img {
  transform: scale(1.08);
}

/* =========================================
   SHOP LAYOUT
========================================= */

.shop-content-section {
  position: relative;
}

.shop-filter-column {
  position: relative;
}

/* FILTER - NO SCROLL */

/* =========================================
   PRODUCT IMAGE
========================================= */

.product-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   SHOP DESKTOP SCROLL SYSTEM
   ========================================= */

@media (min-width: 992px) {

  /* Banner ke baad shop section */
  #shop-content-section {
    position: relative;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  /*
       Filter + Products viewport ke andar rahenge
       jab shop section top par aa jayega
    */
  .shop-layout {
    height: calc(100vh - 30px);
    min-height: 0;
    align-items: flex-start;
  }

  /* =========================
       FILTER
       ========================= */

  .shop-filter-column {
    position: sticky;
    top: 20px;
    height: calc(100vh - 50px);
    align-self: flex-start;
  }

  .shop-sidebar {
    height: 100%;
    overflow: hidden;
  }

  /* =========================
       PRODUCTS
       ========================= */

  .shop-products-column {
    height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;

    /* scrollbar hide */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .shop-products-column::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 991.98px) {
  #shop-content-section {
    padding: 20px !important;
  }

  .shop-layout {
    height: auto;
  }

  .shop-filter-column {
    position: static;
    height: auto;
  }

  .shop-sidebar {
    height: auto;
    overflow: visible;
  }

  .shop-products-column {
    height: auto;
    overflow: visible;
  }
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 10px;
  margin-bottom: 20px;
}

.size-option {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.size-option button {
  min-width: 48px;
  height: 38px;
  padding: 5px 10px;
}

.size-option span {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.size-item {
  width: 58px;
  text-align: center;
}

.size-item button {
  width: 58px;
  height: 36px;
  padding: 0;
  font-size: 14px;
}

.size-item span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
}

/* =========================================
   SIZE CHART
========================================= */

.size-chart-section {
  width: 100%;
}

.size-chart-section {
  background: #fff;
  color: #222;

  padding: 15px 18px;
}

.accordion-button {
  background: #fff;
  color: #222;
}

.size-chart-section .accordion-button:not(.collapsed) {
  background: #fff;
  color: #222;
}

.size-chart-section .accordion-button:focus {
  box-shadow: none;
}

/* .size-chart-section .accordion-item {
    border-color: #e5e5e5 !important;
} */

/* Unit buttons */

.size-unit-switch .btn {
  min-width: 65px;
}

.btn-check {
  background: var(--primary);
}

/* Table */

.size-chart-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.size-chart-table {
  min-width: 720px;
  font-size: 14px;
}

.size-chart-table th {
  font-weight: 600;
  white-space: nowrap;
}

.size-chart-table td,
.size-chart-table th {
  padding: 10px 12px;
  vertical-align: middle;
}

/* Measurement cards */

.measurement-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  height: 100%;
}

.measurement-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
}

.measurement-card h6 {
  font-size: 14px;
}

.measurement-card p {
  line-height: 1.5;
}

/* Mobile */

@media (max-width: 575.98px) {
  .size-chart-section {
    margin-top: 20px;
  }

  .size-chart-section {
    font-size: 14px;
  }

  .size-chart-section .accordion-body {
    padding: 14px;
  }

  .size-chart-table {
    min-width: 720px;
    font-size: 12px;
  }

  .size-chart-table td,
  .size-chart-table th {
    padding: 8px 10px;
  }

  .size-unit-switch .btn {
    min-width: 58px;
  }

  .measurement-card {
    padding: 12px;
  }
}

/* =========================================
   SIZE CHART TABS
========================================= */

.size-chart-tabs {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.size-chart-tab {
  flex: 1;
  border: 0;
  background: #fff;
  padding: 16px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  position: relative;
  cursor: pointer;
}

.size-chart-tab.active {
  color: var(--primary);
  font-weight: 600;
}

.size-chart-tab.active::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -1px;
  height: 2px;
  background: var(--primary);
}

/* =========================================
   TAB CONTENT
========================================= */

.size-chart-content {
  display: none;
}

.size-chart-content.active {
  display: block;
}

/* =========================================
   UNIT ROW
========================================= */

.size-unit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 20px;
}

.size-unit-switch .btn {
  min-width: 60px;
}

/* =========================================
   TABLE
========================================= */

.size-chart-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.size-chart-table {
  min-width: 720px;
  text-align: center;
}

.size-chart-table thead th {
  background: #f7f8fc;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 10px;
  white-space: nowrap;
}

.size-chart-table tbody th {
  font-weight: 600;
}

.size-chart-table tbody td,
.size-chart-table tbody th {
  padding: 12px 10px;
  border-bottom: 1px solid #e5e5e5;
}

/* =========================================
   HOW TO MEASURE
========================================= */

.how-to-measure-content {
  padding: 20px;
}

.measurement-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.measurement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #f8f8f8;
  border-radius: 10px;
}

.measurement-number {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {
  .size-chart-tab {
    font-size: 14px;
    padding: 14px 5px;
  }

  .size-unit-row {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .size-chart-table {
    min-width: 700px;
  }

  .size-chart-table thead th {
    font-size: 12px;
  }

  .size-chart-table tbody td,
  .size-chart-table tbody th {
    font-size: 13px;
    padding: 11px 12px;
  }

  .how-to-measure-content {
    padding: 16px;
  }
}

.size-chart-dropdown,
.size-chart-dropdown .accordion-item,
.size-chart-dropdown .accordion-button {
  width: 100%;
  border: none !important;
  box-shadow: none !important;
}

.size-chart-dropdown .accordion-item {
  border: 0 !important;
}

.size-chart-dropdown .accordion-button {
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Size Chart - remove all borders */
.size-chart-dropdown,
.size-chart-dropdown .accordion,
.size-chart-dropdown .accordion-item,
.size-chart-dropdown .accordion-header,
.size-chart-dropdown .accordion-button,
.size-chart-dropdown .accordion-collapse,
.size-chart-dropdown .accordion-body {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Bootstrap active/open state */
.size-chart-dropdown .accordion-button:not(.collapsed) {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

/* Remove Bootstrap focus border/shadow */
.size-chart-dropdown .accordion-button:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* =========================
   SIZE CHART - NO BORDER
========================= */

#sizeChartAccordion .accordion-item {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#sizeChartAccordion .accordion-button {
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

#sizeChartAccordion .accordion-button:not(.collapsed) {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

#sizeChartAccordion .accordion-button:focus {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

#sizeChartAccordion .accordion-body {
  border: 0 !important;
}

/* =========================
   SHOP FILTER PRIMARY COLOR
   ========================= */

/* Search input focus */
#productSearch:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(233, 91, 120, 0.2) !important;
}

/* Price select focus */
.shop-sidebar .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(233, 91, 120, 0.2) !important;
}

/* =========================
   CHECKBOX
   ========================= */

.shop-sidebar .form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.shop-sidebar .form-check-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(233, 91, 120, 0.15) !important;
}

/* =========================
   SORT / FEATURED SELECT
   ========================= */

.shop-sort-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(233, 91, 120, 0.2) !important;
}

#productSearch:hover,
.shop-sidebar .form-select:hover,
.shop-sort-select:hover {
  border-color: var(--primary) !important;
}

.shop-sort-select option:checked {
  color: var(--primary);
  background-color: #fff;
}

/* =====================================
   SHOP SELECT - PRIMARY COLOR
   ===================================== */

.shop-filter-select:focus,
.shop-sort-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(233, 91, 120, 0.18) !important;
}

/* Native select option */
.shop-filter-select option:checked,
.shop-sort-select option:checked {
  color: var(--primary) !important;
  background-color: #fff !important;
}

.color-filter.active {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  transform: scale(1);
}

@media (max-width: 991.98px) {
  .color-filter.active {
    outline: 0.2px solid var(--primary);
    outline-offset: 0.75px;
    transform: scale(0.25);
  }
}

/* =====================================================
   MOBILE FILTER
   ===================================================== */

@media (max-width: 991.98px) {

  /* Filter column should NOT behave like desktop column */
  .shop-filter-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    background: transparent !important;
  }

  /* ---------------------------------------------
       FILTER BUTTON
       --------------------------------------------- */

  .mobile-filter-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: var(--primary) !important;
    color: #fff !important;

    border: 1px solid var(--primary) !important;
    border-radius: 6px;

    padding: 10px 18px;
    min-height: 42px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;

    margin-bottom: 20px;
  }

  .mobile-filter-btn:hover {
    background: #fff !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  /* ---------------------------------------------
       SIDEBAR - CLOSED
       --------------------------------------------- */

  #shop-sidebar {
    position: fixed !important;

    top: 0 !important;
    bottom: 0 !important;
    left: -75% !important;

    width: 75% !important;
    max-width: 75% !important;
    height: 100vh !important;

    margin: 0 !important;

    background: #fff !important;

    z-index: 10002 !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    padding: 20px !important;

    border: none !important;

    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.18);

    transition: left 0.3s ease !important;
  }

  /* ---------------------------------------------
       SIDEBAR - OPEN
       --------------------------------------------- */

  #shop-sidebar.mobile-filter-open {
    left: 0 !important;
  }

  /* ---------------------------------------------
       MOBILE HEADER
       --------------------------------------------- */

  .mobile-filter-header {
    display: flex !important;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-bottom: 22px;
    padding-bottom: 15px;

    border-bottom: 1px solid #eeeeee;
  }

  .mobile-filter-header h2 {
    margin: 0 !important;
    font-size: 20px;
    font-weight: 600;
  }

  /* ---------------------------------------------
       CLOSE BUTTON
       --------------------------------------------- */

  .mobile-filter-close {
    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0 !important;

    background: #fff !important;
    color: var(--primary) !important;

    border: 1px solid var(--primary) !important;
    border-radius: 50%;

    cursor: pointer;

    transition: all 0.25s ease;
  }

  .mobile-filter-close:hover {
    background: var(--primary) !important;
    color: #fff !important;

    border-color: var(--primary) !important;

    transform: rotate(90deg);
  }

  /* ---------------------------------------------
       DESKTOP FILTER TITLE HIDE
       --------------------------------------------- */

  .desktop-filter-title {
    display: none !important;
  }

  /* ---------------------------------------------
       OVERLAY
       --------------------------------------------- */

  #shopFilterOverlay {
    position: fixed !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(0, 0, 0, 0.38) !important;

    z-index: 10001 !important;

    opacity: 0 !important;
    visibility: hidden !important;

    pointer-events: none !important;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease !important;
  }

  #shopFilterOverlay.active {
    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: auto !important;
  }

  /* ---------------------------------------------
       PRODUCTS
       --------------------------------------------- */

  .shop-products-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* ---------------------------------------------
       INPUT FOCUS
       --------------------------------------------- */

  #shop-sidebar .form-control:focus,
  #shop-sidebar .form-select:focus {
    border-color: var(--primary) !important;

    box-shadow: 0 0 0 3px rgba(176, 24, 143, 0.1) !important;
  }

  /* ---------------------------------------------
       CHECKBOX
       --------------------------------------------- */

  #shop-sidebar .form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  /* ---------------------------------------------
       SIZE
       --------------------------------------------- */

  #shop-sidebar .size-filter.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
  }

  /* ---------------------------------------------
       COLOR
       --------------------------------------------- */

  #shop-sidebar .color-filter.active {
    transform: scale(1.12);

    box-shadow:
      0 0 0 2px #fff,
      0 0 0 3px var(--primary);
  }

  /* ---------------------------------------------
       SIDEBAR SCROLLBAR
       --------------------------------------------- */

  #shop-sidebar::-webkit-scrollbar {
    width: 5px;
  }

  #shop-sidebar::-webkit-scrollbar-track {
    background: #f5f5f5;
  }

  #shop-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
  }
}

/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 575.98px) {
  #shop-sidebar {
    width: 75% !important;
    max-width: 75% !important;

    padding: 18px !important;
  }

  .mobile-filter-btn {
    padding: 9px 15px;
    min-height: 40px;
  }
}

/* =====================================================
   FINAL MOBILE FILTER SIDEBAR
===================================================== */

@media (max-width: 991.98px) {

  /* Filter button */
  .mobile-filter-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 9px 16px;

    background: var(--primary) !important;
    color: #fff !important;

    border: 1px solid var(--primary) !important;
    border-radius: 6px;

    cursor: pointer;
  }

  .mobile-filter-btn:hover {
    background: #fff !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  /* IMPORTANT:
       mobile par sidebar static/sticky nahi rahega */
  #shop-sidebar {
    position: fixed !important;

    top: 0 !important;
    left: -75vw !important;

    width: 75vw !important;
    max-width: 75vw !important;

    height: 100vh !important;

    margin: 0 !important;

    background: #fff !important;

    z-index: 10002 !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    transition: left 0.3s ease !important;
  }

  /* OPEN */
  #shop-sidebar.mobile-filter-open {
    left: 0 !important;
  }

  /* Desktop title hide */
  .desktop-filter-title {
    display: none !important;
  }

  /* Mobile title + close */
  .mobile-filter-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
  }

  .mobile-filter-close {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid var(--primary) !important;
    border-radius: 50%;

    background: #fff !important;
    color: var(--primary) !important;

    cursor: pointer;
  }

  .mobile-filter-close:hover {
    background: var(--primary) !important;
    color: #fff !important;
  }

  /* Overlay */
  #shopFilterOverlay {
    position: fixed !important;
    inset: 0 !important;

    background: rgba(0, 0, 0, 0.35) !important;

    z-index: 10001 !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  #shopFilterOverlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Products remain underneath */
  .shop-products-column {
    position: relative;
    z-index: 1;
  }
}

/* Desktop */
@media (min-width: 992px) {

  .mobile-filter-btn,
  .mobile-filter-header,
  .mobile-filter-close {
    display: none !important;
  }

  #shop-sidebar {
    position: sticky !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
  }

  #shopFilterOverlay {
    display: none !important;
  }
}

/* =========================================
   DESKTOP FILTER INTERNAL SCROLL
========================================= */

@media (min-width: 992px) {
  .shop-filter-column {
    position: sticky !important;
    top: 20px !important;

    height: calc(100vh - 50px) !important;

    align-self: flex-start;
  }

  #shop-sidebar {
    position: sticky !important;
    top: 0 !important;

    width: 100% !important;
    height: 100% !important;

    max-height: 100% !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #shop-sidebar::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

@media (max-width: 991.98px) {
  #shop-sidebar {
    overflow-y: auto !important;
    overflow-x: hidden !important;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #shop-sidebar::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  #shop-sidebar::-webkit-scrollbar-track,
  #shop-sidebar::-webkit-scrollbar-thumb {
    display: none !important;
  }
}

/* =========================================
   SIZE FILTER - DESKTOP + MOBILE
========================================= */

.size-filter {
  background: transparent !important;
  color: var(--dark) !important;

  border: 1px solid #adb5bd !important;
  border-radius: 6px;

  transition: all 0.25s ease;
}

/* Hover */
.size-filter:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

/* Selected */
.size-filter.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

/* Focus */
.size-filter:focus,
.size-filter:focus-visible {
  background: transparent !important;
  color: var(--dark) !important;
  border-color: var(--primary) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Selected + Focus */
.size-filter.active:focus,
.size-filter.active:focus-visible {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .shop-results-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .mobile-filter-btn {
    margin-bottom: 0 !important;
    flex: 0 0 auto;
  }

  .shop-results-bar .shop-filter-select {
    margin-bottom: 0 !important;
    flex: 0 0 auto;
    width: auto !important;
    min-width: 140px;
  }

  .shop-results-text {
    position: absolute;
    visibility: hidden;
  }
}

/* =========================================
   FEATURED / SORT DROPDOWN
========================================= */

/* Desktop */
@media (min-width: 992px) {
  .shop-results-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-filter-select {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

/* Mobile */
@media (max-width: 991.98px) {
  .shop-results-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }

  .shop-results-text {
    flex: 1;
    margin: 0 !important;
  }

  .shop-results-bar .shop-filter-select {
    /* margin-left: auto !important;
        margin-right: 0 !important; */
    margin: top 0;
    width: auto !important;
    min-width: 135px;

    margin-bottom: 10px !important;
  }
}

.quantity-box {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 150px;
}

.quantity-box button {
  flex: 0 0 45px;
}

.quantity-box input {
  width: 60px;
  min-width: 0;
  flex: 1 1 auto;
}

/* Quantity always stays in one row on mobile */
.quantity-box {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 150px !important;
}

.quantity-box .btn {
  flex: 0 0 45px !important;
  width: 45px !important;
}

.quantity-box .form-control {
  flex: 1 1 auto !important;
  width: 60px !important;
  min-width: 0 !important;
}

@media (max-width: 767px) {
  .quantity-box {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }
}

/* =====================================
   QUANTITY BOX
   Always horizontal - all screen sizes
===================================== */

.quantity-box {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  width: 150px !important;
  height: 40px !important;
}

.quantity-box .quantity-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 45px !important;
  width: 45px !important;
  min-width: 45px !important;
  max-width: 45px !important;

  height: 40px !important;
  padding: 0 !important;
}

.quantity-box .quantity-input {
  display: block !important;

  flex: 1 1 auto !important;
  width: 60px !important;
  min-width: 0 !important;
  max-width: 60px !important;

  height: 40px !important;
  padding: 0 5px !important;

  text-align: center !important;
}

.quantity-box {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 150px !important;
  height: 38px;
}

.quantity-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 45px !important;
  min-width: 45px !important;
  height: 38px;

  padding: 6px 12px;

  background-color: transparent;
  border: 1px solid #6c757d;
  color: #6c757d;

  cursor: pointer;
  transition: 0.15s ease-in-out;
}

.quantity-btn:first-child {
  border-radius: 6px 0 0 6px;
}

.quantity-btn:last-child {
  border-radius: 0 6px 6px 0;
}

.quantity-btn:hover {
  background-color: #6c757d;
  color: #fff;
}

.quantity-input {
  width: 60px !important;
  min-width: 0 !important;
  height: 38px;

  padding: 6px 8px;

  text-align: center;

  border-top: 1px solid #6c757d;
  border-bottom: 1px solid #6c757d;
  border-left: 0;
  border-right: 0;

  outline: none;
}

.quantity-input:focus {
  border-color: #6c757d;
  box-shadow: none;
}

/* 4.7 rating box */
.rating-box {
  margin: 0 20px 10px 0 !important;
  padding: 15px 0 !important;
}

/* =========================================
   RATINGS & REVIEWS - MOBILE
========================================= */

@media (max-width: 767px) {

  /* Main review content */
  .review-content {
    padding: 5px !important;
  }

  /* 4.7 rating box */
  .rating-box {
    width: 100% !important;
    margin: 0 10px 25px 0 !important;
    padding: 5px 5px !important;
  }

  .rating-box h2 {
    font-size: 40px !important;
  }

  /* Rating progress bars */
  .rating-bars {
    width: 70% !important;
    padding: 0 !important;
  }

  .rating-bars .d-flex {
    width: 100%;
  }

  .rating-bars .progress {
    min-width: 0;
  }

  /* Review heading */
  #reviewContent h4 {
    font-size: 22px;
  }

  /* Review name + date */
  .border-top .d-flex.justify-content-between {
    gap: 10px;
  }

  .border-top .d-flex.justify-content-between small {
    white-space: nowrap;
  }

  /* Review text */
  .border-top p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* View all button */
  .review-content .text-center button {
    width: 100%;
  }
}

/* ==========================================
   SIMILAR PRODUCTS
========================================== */

.products-wrapper {
  position: relative;
  width: 100%;
}

.products-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;

  padding: 0 5px;
}

.products-scroll::-webkit-scrollbar {
  display: none;
}

/* ==========================================
   SIMILAR CARD
========================================== */

.similar-card {
  flex: 0 0 220px;
  min-width: 220px;
}

.similar-card-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.similar-card-box img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ==========================================
   RATING STRIP
========================================== */

.similar-rating-box {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  background: #198754;
  color: #fff;
  padding: 4px 9px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .products-scroll {
    gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .similar-card {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .similar-card-box {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .similar-card-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  /* Rating stays inside image */
  .similar-rating-box {
    left: 0;
    bottom: 0;

    width: auto !important;

    padding: 4px 7px;

    font-size: 11px;

    white-space: nowrap;

    display: inline-flex;
    align-items: center;
    gap: 2px;
  }
}

@media (max-width: 767px) {
  .similar-rating-box {
    top: 0;
    left: 0;
    bottom: auto;

    width: auto !important;

    padding: 4px 7px;
    font-size: 11px;

    white-space: nowrap;
  }
}

/* =========================================
   CUSTOMER REVIEW IMAGES
========================================= */

.review-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.review-images img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: transform 0.2s ease;
}

.review-images img:hover {
  transform: scale(1.05);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .review-images {
    gap: 8px;
  }

  .review-images img {
    width: 70px;
    height: 70px;
  }
}

/* Auto Scroll Banner Pagination Dots */

.swiper-pagination-bullet {
  background-color: var(--primary) !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  opacity: 1;
}

/* ================================
   NORMAL MARQUEE
================================ */

.announcement-bar {
  position: relative;
  width: 100%;
  /* z-index: 1051; */
}

/* ================================
   NORMAL NAVBAR
================================ */

.navbar {
  position: relative;
  width: 100%;
  z-index: 1050;
  background: #fff;
}

/* ================================
   STICKY MARQUEE
================================ */

.announcement-bar.marquee-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1051;
  animation: marqueeSlideDown 0.25s ease-out;
}

/* ================================
   STICKY NAVBAR
================================ */

.navbar.navbar-sticky {
  position: fixed;
  top: 42px;
  /* marquee ki height */
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  /* animation: navbarSlideDown 0.25s ease-out; */
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-item {
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .product-page {
    position: relative !important;
    overflow: visible !important;
  }

  .product-main-row {
    position: relative !important;
    align-items: stretch !important;
  }

  .product-image-section {
    position: relative !important;
    align-self: stretch !important;
    height: auto !important;
    overflow: visible !important;
  }

  .product-image-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 85px !important;
    z-index: 10 !important;
  }

  .product-details-section {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
  }
}

/* =========================================
   SIZE CHART - FULL WIDTH
========================================= */

.size-chart-section {
  width: 100% !important;
}

.size-chart-section .accordion {
  width: 100% !important;
}

.size-chart-section .accordion-item {
  width: 100% !important;
}

.size-chart-section .accordion-button {
  width: 100% !important;
}

.product-content>.mt-5,
.product-content>.size-chart-section {
  width: 100% !important;
}

/* SIZE CHART WIDTH INCREASE */
.size-chart-section {
  width: calc(100%) !important;
  margin-left: 0;
}

.size-chart-section .accordion,
.size-chart-section .accordion-item,
.size-chart-section .accordion-button {
  width: 100% !important;
}

.size-chart-section .accordion-button {
  position: relative;
  /* padding-right: 50px !important; */
}

.size-chart-section .accordion-button {
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.size-chart-section {
  padding: 0 !important;
}

.size-chart-section {
  padding-left: 0 !important;
  padding-right: -25px !important;
}