:root {
  --brand: #0d6efd;
  --blush: #f8d4d4;
  --ink: #2a2a2a;
  --muted: #f7f7f7;
  --stroke: #ebebeb;
  --soft: #fef2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Lato, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #212529;
  font-size: 13px;
  overflow-x: hidden;
}

h1,
h6,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-theme {
  color: #f15e77;
}

.hr {
  color: #aaa;
  margin-bottom: .875rem;
}

.container {
  max-width: 1500px;
  margin: auto;
  padding: 0 15px;
}

.main-container {
  padding: 0 40px;
}

.navbar-brand {
  color: var(--brand);
}

.card img {
  object-fit: cover;
  height: 200px;
}

.main-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  background: #fff;
  padding: 10px 5px;
  border-top: 1px solid #ddd;
  display: none;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}

.mega-inner {
    display: flex;
    gap: 10px;
}

.mega-menu ul,
.mega-menu h6 {
    margin-left: 0;
    width: max-content;
}

.drawer-header {
  display: none;
}

.mobile-auth i {
  font-size: 20px;
  color: #000;
  margin-left: 3px;
}

.mobile-auth {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* NAV */
.main-nav {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 11px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.2;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}

.main-nav small {
  font-size: 12px;
  color: #777;
}

.main-nav li:hover>a {
  color: #ff2f92;
  text-decoration: none;
}

/* ICONS */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-icons>span {
  margin-left: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-icons .number-of-items {
  font-size: 14px;
}

.header-icons i {
  font-size: 18px;
  cursor: pointer;
  color: #000;
}

.header-icons .desk-login {
  font-size: 12px;
  margin-left: 25px;
}

.header-icons i.bi-search {
  margin: 0;
}

/* TOP BAR */
.top-bar {
  background: #f7f7f7;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: relative;
  width: 100%;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* MEGA MENU */

@media (min-width: 992px) {
  .has-mega:hover .mega-menu {
    display: block;
  }
}

.mega-menu h6 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.mega-menu ul li {
  margin-bottom: 6px;
}

.mega-menu ul a {
  font-size: 12px;
  color: #555;
  text-decoration: none;
}


/* DESKTOP */

@media (max-width: 1580px) {
  .main-nav {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 8px;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1520px) {
  .main-nav {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 8px;
    margin: 0;
    padding: 0;
    margin-right: -40%;
  }

  .main-nav a {
    font-size: 10px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    line-height: 1.2;
  }
}

@media (max-width: 1400px) {
  .main-nav {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 6px;
    margin: 0;
    padding: 0;
    margin-right: -40%;
  }
}

@media (min-width: 992px) {
  .mobile-nav {
    position: static;
    transform: none;
    height: auto;
  }
}

/* MOBILE NAV */
@media (max-width: 991px) {

  .header-icons>span,
  .header-icons .desk-login {
    margin-left: 10px;
  }

  .main-nav {
    flex-direction: column;
    gap: 0;
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .drawer-header .logo img {
    max-width: 150px;
  }

  .menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #000;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    width: 100vw;
    background: #fff;
    padding: 5px 20px 15px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    /* key: max height = viewport - top */
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
    border-top: 1px solid #ddd;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .main-nav {
    margin: 0;
  }

  .main-nav>li {
    width: 100%;
  }

  .main-nav>li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }

  .main-nav>li a {
    font-size: 15px;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav li a {
    position: relative;
  }

  .main-nav li.has-mega>a::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
  }

  .main-nav li.has-mega.open>a::after {
    content: "-";
    font-weight: 300;
    font-size: 2.5rem;
  }

  .main-nav>li a i {
    display: none;
  }

  /* Hide mega menus initially */
  .mega-menu {
    position: static;
    display: none;
    padding: 10px 0;
    width: 100%;
  }

  .mega-menu .container {
    padding: 0;
  }

  .mega-menu ul li {
    margin: 0;
  }

  .mega-menu ul li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }

  .mega-menu li a {
    font-size: 14px;
    padding: 14px 0;
    padding-left: 10px;
  }

  .has-mega.open .mega-menu {
    display: block;
    box-shadow: none;
    padding: 0;
  }

  .mega-menu h6 {
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin: 5px 0;
  }

    .mega-inner {
        display: block;
    }

    .mega-menu ul {
        margin-left: 10px;
    }
    .mega-menu ul,
    .mega-menu h6{
        width: auto
    }
}

/* HAMBURGER */

.menu-toggle {
  background: none;
  border: none;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle .menu-open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle .menu-open span {
  width: 16px;
  height: 2px;
  background: #000;
  display: block;
}

.cart-dropdown {
  display: none;
  position: absolute;
  top: 27px;
  right: -7px;
  width: 340px;
  background-color: #fff;
  box-shadow: 3px -2px 4px rgba(104, 104, 104, .2);
}

.cart-dropdown .cart-header h4 {
  font-size: 15px;
  text-align: left;
  margin-bottom: 10px;
}

.cart-dropdown .cart-body {
  height: 108px;
  overflow-y: auto;
}

.cart-item {
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  margin: 0;
  margin-top: 10px;
}

.cart-item .product-image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.cart-item .product-title,
.cart-item .product-color,
.cart-item .other-info {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin: 0;
}

.cart-item .product-remove a {
  text-decoration: none;
  color: #111;
  font-size: 10px;
  line-height: 1;
}

.cart-bottom .total-parent h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.view-bag-btn {
  width: 100%;
  letter-spacing: 1px;
  font-size: 17px;
  box-shadow: 0 2px 7px #c8c8c8;
  height: 45px;
  line-height: 45px;
  background: #f8b0b2;
  font-weight: 400;
  margin: 0;
  padding: 0 3px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.view-bag-btn i {
  color: #fff;
}

.cart-parent:hover .cart-dropdown {
  display: block;
}

@media screen and (max-width: 767px) {
  .cart-dropdow {
    right: 0;
  }
}

/* Hero / Carousel styles */
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: auto;
}

.hero-carousel .carousel-item img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.hero-carousel .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.hero-carousel .carousel-caption h2,
.hero-carousel .carousel-caption p {
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* Stories */
.stories {
  padding: 12px 10px;
}

.story-item {
  position: relative;
  overflow: hidden;
}

.story-item img {
  aspect-ratio: 1/1;
  object-fit: cover !important;
  object-position: center;
  border-radius: 50%;
  overflow: hidden;
  padding: 1px;
  border: 1px solid #ff768680;
}

.story-item h6 {
  font-size: 11px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 0;
}

/* Category cards */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Products */
.product_section_heading {
  text-transform: capitalize;
}

.product-card {
  position: relative;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 0px;
}

.product-img-wrap {
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  border-radius: 0;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-card .card-body {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  font-size: 15px;
  text-align: start;
}

.product-card .card-title {
  text-transform: uppercase;
  font-weight: 400;
  text-align: start;
  font-size: 1rem;
}

.price-container .original-price,
.wishlist-product .original-price {
  text-decoration: line-through;
  color: #a0a0a0;
}

.price-container .off-percentage {
  color: #FF0000;
  margin-left: 5px;
  font-size: 13px;
}

.off-badge {
  position: absolute;
  top: 23px;
  z-index: 10;
}

.off-badge span {
  background: rgba(255, 0, 0, .8);
  width: auto;
  color: #fff;
  padding: 0 5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  line-height: 17px;
  font-size: 14px;
}

.off-badge span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 50%;
  left: 100%;
  bottom: 0;
  background: linear-gradient(to right top, rgba(255, 0, 0, .8) 50%, transparent 50%);
}

.off-badge span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 50%;
  left: 100%;
  top: 0;
  background: linear-gradient(to right bottom, rgba(255, 0, 0, .8) 50%, transparent 50%);
}

.recommendation .product-card {
  border: none;
  padding: 0;
  margin-bottom: 10px;
}

/* New arrivals horizontal track */
.new-arrivals-track {
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.new-arrivals-track::-webkit-scrollbar {
  height: 0;
  background: transparent;
}

.new-arrivals-track::-webkit-scrollbar-thumb {
  background: transparent;
}

.new-arrivals-track .card {
  min-width: 200px;
  flex: 0 0 auto;
}

.newsletter {
  background-color: #f18f9f1a;
}

.newsletter h5 {
  font-weight: 600;
  color: #f18f9f;
  font-size: 15px;
  letter-spacing: 1px;
}

.newsletter input {
  border-radius: 0;
  border: 1px solid #ccc;
  height: 45px;
  background: #fff;
  border: 1px solid #f18f9f;
}

.newsletter .btn,
.btn-theme {
  color: #fff !important;
  background-color: #f18f9f;
  border-radius: 0;
  border: 1px solid #f18f9f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 10px 20px;
}

.btn-theme:hover {
  background-color: #f18f9f;
  border-color: #f18f9f;
  color: #fff !important;
}

@media (min-width:1200px) {
  .new-arrivals-track .card {
    width: 18%;
  }
}

/* Category track (image-only) */
.category-track {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.category-track::-webkit-scrollbar {
  height: 0;
  background: transparent;
}

/* .category-track .cat-item{ min-width:260px; } */
.category-track .cat-item img {
  height: 160px;
  object-fit: cover;
  display: block;
}

@media (min-width:768px) {
  .category-track .cat-item img {
    height: auto;
  }
}

@media (min-width:1200px) {
  .category-track .cat-item {
    width: 100%;
  }
}

/* Footer */
.footer {
  /* border-top: 1px solid #f3a3ab; */
  font-size: 14px;
  color: #222;
}

/* Footer social icons */
.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: all .15s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: #e9ecef;
  color: var(--brand);
}

.social-link .bi {
  font-size: 18px;
}

.footer-title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 13px;
  line-height: 1.6;
}

.footer-phone {
  color: #ff6f6f;
  text-decoration: none;
}

.app-links img {
  height: 42px;
  margin-right: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: #222;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  text-decoration: none;
  font-weight: bold;
}

.help-btn {
  display: inline-block;
  background: #ff8f9c;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 5px;
}

.footer-bottom {
  font-size: 13px;
  color: #000;
}


.countdown {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.countdown h3 {
  margin: auto 0;
  text-transform: uppercase;
}

.time-box {
  background: #FB412C;
  padding: 5px 10px;
  border-radius: 8px;
}

.time-box span {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: block;
}

.colon-box span {
  font-size: 26px;
  font-weight: bold;
  display: block;
  padding-top: 5px;
}

@media (max-width: 767px) {
  .main-container {
    padding: 0 15px;
  }

  .countdown {
    gap: 2px;
  }

  .countdown h3 {
    font-size: 15px;
  }

  .time-box {
    background: #FB412C;
    padding: 4px;
    border-radius: 4px;
  }

  .time-box span,
  .colon-box span {
    font-size: 1rem;
    line-height: 1;
  }
}

/* MOBILE SAFETY */




@media (min-width: 1201px) and (max-width: 1400px) {

  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 600px;
  }

  .hero-carousel .carousel-item img {
    object-fit: cover;
    object-position: center;
  }
}


@media (max-width:576px) {
  .hero {
    min-height: 300px;
    padding: 3rem 0;
  }

  .category-card img {
    height: 140px;
  }
}

/* PRODUCT DETAILS */
.product-page {
  background: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 650px) 1fr;
  gap: 30px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
}

.thumb-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thumb {
  border: none;
  background: #fff;
  /* padding: 6px; */
  /* border-radius: 6px; */
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.thumb img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.thumb:hover {
  border-color: #d3d3d3;
  transform: translateY(-2px);
}

.thumb.active {
  /* border-color: #f3b6b6; */
  /* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06); */
}

.hero-frame {
  /* border: 1px solid #e9e9e9; */
  background: #fbfbfb;
  /* padding: 12px; */
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  display: block;
  max-height: 760px;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
}

.hero-nav:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.hero-nav.prev {
  left: 12px;
}

.hero-nav.next {
  right: 12px;
}

/* LISTING PAGE */
.listing-body {
  background: #fff;
  font-family: Lato, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.listing-top {
  border-bottom: 1px solid var(--stroke);
}

.breadcrumb-lite {
  letter-spacing: 1px;
}

.view-switch {
  font-size: 12px;
}

.view-btn {
  border: 1px solid #dcdcdc;
  background: #fff;
  width: 36px;
  height: 30px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.view-btn.active {
  background: #f5f5f5;
  border-color: #c5c5c5;
}

.sort-toggle {
  letter-spacing: 1px;
  cursor: pointer;
}

.listing-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  padding-top: 18px;
}

.filter-panel {
  padding-right: 18px;
}

.filter-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.filter-section+.filter-section {
  margin-top: 24px;
}

.filter-scroll {
  height: 100%;
  max-height: 200px;
  overflow-y: scroll;
}

.filter-scroll::-webkit-scrollbar {
  width: 4px;
}

.filter-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.filter-scroll::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 10px;
}

.filter-heading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.filter-list {
  font-family: Arial, sans-serif;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 4px;
  user-select: none;
}

.filter-item input {
  display: none;
}

.filter-item .custom-checkbox {
  width: 16px;
  height: 16px;
  position: relative;
  background: #eee;
}

.filter-item input:checked+.custom-checkbox {
  background: #F8B0B2;
}

.filter-item input:checked+.custom-checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-item .count {
  color: #aaa;
  font-size: 13px;
}

.filter-item input:checked~.label-text {
  font-weight: 600;
}

.filter-item.color .swatch {
  width: 16px;
  height: 16px;
  border: 1px solid #d9d9d9;
  display: inline-block;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 4px;
}

.products-area {
  width: 100%;
}

.products-grid {
  --listing-cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--listing-cols), minmax(0, 1fr));
  gap: 25px;
}

.listing-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 510px;
}

.listing-card.tall .card-media img {
  object-position: top;
}

.listing-card a {
  display: block;
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media img {
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.card-actions {
  /* position: absolute; */
  bottom: 0;
  left: 0;
  right: 0;
  /* display: grid; */
  display: none;
  grid-template-columns: 1fr 1fr;
  /* gap: 1px; */
  background: rgba(255, 255, 255, 0.8);
  /* padding: 10px; */
  /* transform: translateY(100%); */
  transition: transform .3s ease;
}

.listing-card:hover .card-actions {
  display: flex;
}

.listing-card:hover .card-actions {
  transform: translateY(0);
}

.btn-blush {
  border: none;
  background: var(--blush);
  padding: 8px 10px;
  font-size: 12px;
  width: 100%;
}

.btn-ghost {
  border: none;
  background: #fff;
  padding: 8px 10px;
  font-size: 12px;
  width: 100%;
}

.listing-card .card-body {
  padding: 0;
  position: relative;
}

.listing-card .card-title {
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.listing-card .price-row {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.listing-card .price-row .strike {
  color: #9a9a9a;
  text-decoration: line-through;
  font-size: 13px;
}

.listing-card .price-row .price {
  font-weight: 700;
  font-size: 15px;
}

.listing-card:hover .card-body {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1459px) {
  .listing-card {
    min-height: 460px;
  }
}

@media (max-width: 1199px) {

  .products-grid {
    gap: 10px;
  }

  .listing-shell {
    grid-template-columns: 240px 1fr;
  }

  .products-grid {
    --listing-cols: 3;
  }

  .listing-card {
    min-height: 520px;
  }
}

@media (max-width: 1100px) {
  .listing-card {
    min-height: 440px;
  }
}

@media (max-width: 991px) {
  .listing-shell {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .products-grid {
    --listing-cols: 2;
    gap: 10px;
  }

  .listing-card:hover .card-actions {
    display: none;
  }

  .listing-card {
    min-height: unset;
  }

  .listing-card .card-title {
    font-size: 12px;
  }

  .listing-card .price-row .price {
    font-size: 13px;
  }
}

/* CART PAGE */
.cart-body {
  background: #fff;
}

.cart-shell {
  max-width: 1240px;
}

.cart-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cart-progress .step {
  color: #999;
  /* font-weight: 600; */
  font-size: 15px;
  text-transform: capitalize;
}


.cart-progress .step.active {
  color: #e67b8a;
}

.cart-progress .dash {
  flex: 0 0 60px;
  height: 1px;
  background: #dcdcdc;
}

.offer-banner {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 14px 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.offer-banner li {
  font-size: 15px;
  color: #161616;
  margin-bottom: 6px;
  font-weight: 400;
}

.offer-title {
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.bag-area h6 {
  letter-spacing: .4px;
}

.bag-card {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  gap: 16px;
  padding: 14px;
}

.bag-media img {}

.bag-info {
  padding-left: 16px;
}

.bag-info .product-title {
  font-size: 15px;
  font-weight: 400;
}

.bag-price {
  font-size: 24px;
  font-weight: 700;
}

.bag-info .old-price {
  text-decoration: line-through;
}

.chip-select {
  padding: 0 8px;
  background: #F5F5F6;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}

.chip-select select {
  background-color: #F5F5F6;
  background-position: right center;
  padding-right: 18px;
  padding-left: 0;
}

.chip-select select:focus {
  box-shadow: none;
  outline: none;
  border: none;
}


.bag-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
  width: 100%;
}

.bag-actions .link-btn {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #6e6e6e;
  font-weight: 600;
  padding: 4px 20px;
  text-transform: uppercase;
}

.bag-actions .divider {
  height: 16px;
  width: 1px;
  background: #ccc;
}

.link-btn {
  border: none;
  background: none;
  padding: 0;
  font-weight: 600;
  letter-spacing: .3px;
  color: #666;
}

.form-check-input:checked {
  background-color: #e67b8a;
  border-color: #e67b8a;
}

.outline-pill {
  border: 1px solid var(--stroke);
  background: rgba(246, 245, 245, .4);
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
}

.summary-area {
  border-left: 1px solid var(--stroke);
  padding-left: 24px;
  height: 100%;
}

.gst_checkbox {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 12px;
  font-weight: 400;
  font-size: 16px;
  background-color: rgba(246, 245, 245, .4);
  ;
}

.gst_checkbox .form-check-input {
  margin-left: 0 !important;
}

.gst_checkbox label {
  margin-left: 10px !important;
}


.coupon-row .coupon-input {
  border: 1px solid var(--stroke);
  border-radius: 8px 0 0 8px;
  padding: 12px 20px;
  background-color: #f7f7f7;
}

.coupon-row .coupon-input::placeholder {
  color: #aaa;
}

.coupon-apply {
  border-radius: 0 4px 4px 0;
  background: #f5b0b7;
  border: 1px solid #f3a3ab;
  font-weight: 400;
  width: 90px;
  color: white;
}

.coupon-apply:hover,
.purchase-btn:hover {
  background-color: #FB899F;
  color: #fff;
}

.summary-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.55;
}

.summary-total {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 20px;
}

.purchase-btn {
  background: #f5b0b7;
  border: 1px solid #f3a3ab;
  border-radius: 0;
  font-weight: 400;
  padding: 12px;
  color: white;
}

.bag-info .points {
  font-size: 15px;
}

.more-action-btns a {
  display: inline-block;
  color: #000;
  text-align: center;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .cart-progress .step {
    font-size: 12px;
  }

  .cart-progress .dash {
    flex: 0 0 25px;
  }

  .offer-banner {
    border: none;
    border-left: 3px solid #f15e77;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .offer-title {
    font-size: 13px;
  }

  .offer-banner ul {
    padding-left: 8px;
  }

  .offer-banner li {
    font-size: 12px;
  }

  .summary-area {
    border-left: none;
    padding-left: 0;
  }

  .bag-area>h6 {
    border-bottom: 1px solid #bbb;
  }

  .bag-card {
    padding: 10px 0;
    border-radius: 0;
    border: none;
    border-bottom: 4px solid #f1f0f0;
  }

  .bag-info {
    padding-left: 0;
  }

  .bag-info .product-title,
  .bag-price {
    font-size: 12px;
  }

  .bag-info .chip-select,
  .chip-select select {
    font-size: 10px;
  }

  .price-discount,
  .bag-info .points {
    font-size: 10px;
  }

  .bag-actions .link-btn {
    font-size: 10px;
    padding: 4px;
  }

  .bag-actions .divider {
    margin: 0 5px;
  }

  .gst_checkbox {
    background-color: #fff;
    border: none;
    border-top: 4px solid #f1f0f0;
    border-bottom: 4px solid #f1f0f0;
    border-radius: 0 !important;
  }

  .more-action-btns a {
    font-size: 13px;
  }

  .coupon-row .coupon-input {
    font-size: 12px;
  }

  .summary-total span {
    font-size: 14px;
  }

  .summary-area .purchase-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 111;
  }
}

.product-info {
  color: var(--ink);
}

.product-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.price-row .price {
  font-size: 32px;
  font-weight: 700;
}

.price-row .strike {
  text-decoration: line-through;
  color: #9a9a9a;
}

.social-share {
  position: relative;
  border: none;
  background: #fff;
  border-radius: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.social-share.wish {
  border-color: #f3b6b6;
  color: #e25d74;
}

.social-media-icons a {
  margin: 0 6px;
}

.social-media-icons a img {
  max-width: 16px;
}

.social-media-icons {
  display: none;
  background: #fff;
  box-shadow: 0px 0px 6px #c9c9c9;
  padding: 6px 2px;
  position: absolute;
  right: -42%;
  top: 50px;
  -webkit-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  -ms-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}

.social-media-icons:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -0.5em;
  top: 0;
  left: 90%;
  box-sizing: border-box;
  border: 1em solid #000;
  border-color: transparent transparent #fff #fff;
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -2px 3px 3px 0 #c9c9c9;
}

.social-share {
  position: relative;
  right: 16px;
  text-align: right;
  cursor: pointer;
}

.social-share:hover .social-media-icons {
  display: flex;
}

.offer-card {
  background: #fcfcfc;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding: 7px 5px 8px 55px;
  max-width: 400px;
}

.offer-tag {
  margin-top: 0;
  font-family: 'Abhaya Libre';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
  text-transform: lowercase;
  color: #6c6c6c;
  transform: rotate(-90deg);
  height: 34px;
  width: 96px;
  z-index: 100;
  position: absolute;
  top: -2px;
  left: -20px;
}

.offer-tag:before {
  content: '';
  position: absolute;
  border-bottom: 1px dashed #ccc;
  width: 100%;
  bottom: 0;
  left: -15px;
}

.offer_text {
    padding: 10px 0;
}
.offer_text .offer-heading {
    font-style: normal;
    font-weight: 800;
    font-size: 15px;
    line-height: 19px;
    color: #d56768;
    margin-bottom: 7px;
}

.offer_text .offer-detail,
.offer_text .offer-code {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: -.03em;
  color: #797878;
  margin-bottom: 3px;
}

.section-label {
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: capitalize;
}

.color-chip {
  border: none;
  background: #fff;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.color-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 8px; */
}

.color-chip .swatch {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}

.color-chip.active {
  border-bottom: 3px solid #f18f9f;
}

.size-chip {
  position: relative;
  min-width: 65px;
  padding: 9px 14px;
  border: 1px solid #dcdcdc;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.size-chip:hover {
  border-color: #c9c9c9;
}

.size-chip.active {
  border-bottom: 3px solid #fcafb0;
  background: #fcafb0;
  color: #fff;
  border: transparent;
}

.size-chip:disabled::after {
  content: '';
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
}

.supplier-btn {
  all: unset;
  font-size: 13px;
  color: #e25d74;
  text-transform: uppercase;
}

.size-chart-link:hover {
  text-decoration: underline;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 38px;
  border: none;
  background: #f7f7f7;
  font-weight: 700;
  cursor: pointer;
}

.qty-control input {
  width: 50px;
  border: none;
  text-align: center;
  font-weight: 600;
  outline: none;
}

.add-to-bag {
  background: #ffd7d7;
  box-shadow: 0px 0px 10px #d0d0d0;
  border-radius: 3px;
  height: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  transition: all 300ms ease-in-out;
}

.add-to-bag i {
  font-size: 24px;
  font-weight: 400;
  transition: all 300ms ease-in-out;
}

.add-to-bag:hover {
  background: #f15e77;
  color: #fff;
}

.add-to-bag:hover i {
  color: #fff;
}

.icon-button.wish {
  height: 50px;
  width: 50px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  margin: 0;
  padding: 10px;
  background-size: 22px !important;
  float: right;
  background-color: #f7f7f7 !important;
  border: 1px solid #cbcbcb !important;
  border-radius: 3px;
}

.productMainSwiper .icon-button.wish {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  border: none;
  border-radius: 7px;
  height: 40px;
  width: 40px;
  padding: 0;
  line-height: 40px;
}

.delivery-box {
  /* border: 1px solid #e5e5e5;
  padding: 14px;
  border-radius: 10px;
  background: #fafafa; */
}

.pincode-input {
  max-width: 300px;
  border-radius: 0px;
  /* border: 1px solid #dcdcdc; */
  border: 1px solid #fbafb1;
  padding: 8px 16px;

}

.pin_button {
  border-radius: 0px;
  background-color: #fbafb1;
  color: #fff;
  font-size: 12px;
  border: 1px solid #fbafb1;
}

.promo-strip {
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.promo-block {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  height: 100%;
}

.promo-block.primary {
  font-size: 20px;
  font-weight: 500;
  background: #f3a2a9;
}

.promo-block.light {
  font-size: 16px;
  font-weight: 800;
  background: #FFD7D7;
  color: #303030;
}

.promo-block.countdown h3 {
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.product-meta {
  font-size: 14px;
  color: #555;
}

.accordion-list details {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #fff;
}

.accordion-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
}

.accordion-list details[open] summary::after {
  content: "–";
}

.details-body {
  margin-top: 8px;
  color: #666;
  font-size: 14px;
}

@media (max-width: 767px) {
  .promo-strip {
    background: #F8B0B2;
    overflow: hidden;
    padding: 6px;
    padding-bottom: 15px;
  }

  .promo-strip .row {
    border: 1px solid #fff;
    margin: 0;
    border-radius: 5px;
  }

  .promo-block.primary {
    display: block;
    font-size: 12px;
    color: #FB402B;
    background: transparent;
    white-space: nowrap;
    position: relative;
    border-right: 1px solid #fff;
  }

  .promo-block.primary .mob-code {
    font-size: 10px;
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #000;
    padding: 0 10px;
    border-radius: 50px;
  }

  .promo-block.countdown {
    flex-direction: column;
    margin: 4px;
    border-radius: 6px;
    border: none;
  }

  .promo-block.countdown h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .promo-block.countdown::before {
    content: "HR   MN   SC";
    line-height: 16px;
    letter-spacing: 1px;
    margin-bottom: 2px;
    color: #fff;
  }

  .promo-block.countdown::after {
    content: "ENDS IN";
    background: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 0 10px;
    border-radius: 12px;
    position: absolute;
    bottom: -18%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .promo-block.primary .blink {
    animation: blinking 1s ease-in-out infinite;
  }

  @keyframes blinking {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }
}

@media (max-width: 991px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .thumb-rail {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .thumb img {
    height: 80px;
  }

  .hero-image {
    max-height: 520px;
  }
}

/* LOGIN PAGE */

.login-section {
  padding: 100px 0;
}

.login-card {
  width: min(900px, 100%);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  margin: auto;
  padding: 40px 0;
}

.login-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.login-brand-pane {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-brand-logo {
  width: 200px;
  max-width: 100%;
}

.login-form-pane {
  border-left: 1px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
}

.login-form-inner {
  width: min(320px, 100%);
  text-align: center;
}

.login-title {
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 26px;
  text-transform: uppercase;
  font-size: 18px;
}

.login-form {
  display: grid;
  gap: 14px;
}

.phone-input {
  display: grid;
  grid-template-columns: 60px 1fr;
  border: 1px solid #aaa;
  border-radius: 0;
  overflow: hidden;
  height: 40px;
}

.dial-code {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #999;
  letter-spacing: .5px;
  border-right: 1px solid #aaa;
}

.phone-input input {
  border: none;
  padding: 10px 14px;
  outline: none;
  font-size: 13px;
}

.phone-input input::placeholder {
  color: #9e9e9e;
}

.terms {
  font-size: 14px;
  color: #6a6a6a;
  margin: 0;
  line-height: 1.5;
}

.terms a {
  color: #f26c83;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.login-btn {
  outline: none;
  border: none;
  background: #f2778b;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  padding: 10px;
  border-radius: 0;
  width: 100%;
  box-shadow: 0px 0px 6px rgba(0, 0, 4, .35);
  border-radius: 5px;
  -moz-transition: all .3s ease-in-out 0s;
  -webkit-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  -ms-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}

.login-btn:hover {
  background: #ee5d76;
}

.help-text {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6a6a6a;
}

.help-link {
  color: #f26c83;
  text-decoration: none;
}

.help-link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .login-card-grid {
    grid-template-columns: 1fr;
  }

  .login-brand-pane {
    display: none;
  }

  .login-form-pane {
    border-left: none;
    border: none;
  }

  .login-wrap {
    padding: 40px 16px 70px;
  }
}

@media (max-width: 575px) {

  .login-section {
    padding: 50px 0;
  }

  .login-card,
  .login-brand-pane,
  .login-form-pane {
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .phone-input {
    grid-template-columns: 50px 1fr;
  }
}

/* CHECKOUT / DELIVERY ADDRESS */
.checkout-body {
  background: #fdfdfd;
  font-family: Lato, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.checkout-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 20px 80px;
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: none;
  color: #9c9c9c;
  font-weight: 600;
}

.checkout-progress .step {
  font-size: 16px;
}

.checkout-progress .step.active {
  color: #f26c83;
}

.checkout-progress .dash {
  width: 60px;
  height: 1px;
  background: #d8d8d8;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: flex-start;
}

.address-area {
  background: #fff;
  padding: 10px 0;
}

.address-title {
  font-size: 24px;
  font-weight: 700;
}

.add-address-btn {
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 4px;
  padding: 10px 18px;
}

.address-card {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.address-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.address-tag {
  width: 36px;
  height: 16px;
  border: 2px solid #f37b92;
  border-radius: 10px;
}

.address-line {
  margin: 0 0 6px;
  color: #4a4a4a;
  font-size: 15px;
}

.address-add-lite {
  border: 2px dashed #f3d6dc;
  border-radius: 6px;
  padding: 16px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.checkout-summary {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.summary-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.summary-block {
  border-top: 1px solid #e2e2e2;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.summary-line {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #4d4d4d;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.summary-note {
  font-size: 12px;
  color: #8a8a8a;
}

.summary-cta {
  background: #f26c83;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 3px;
  letter-spacing: .5px;
}

.summary-cta:hover {
  background: #ee5d76;
}

/* Address Modal */
.address-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  pointer-events: none;
}

.address-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity .2s ease;
}

.address-modal-content {
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 20px 20px 24px;
  width: min(720px, calc(100% - 28px));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.address-modal.show {
  pointer-events: auto;
}

.address-modal.show .modal-backdrop {
  opacity: 1;
}

.address-modal.show .address-modal-content {
  transform: translateY(0);
  opacity: 1;
  z-index: 99999;
}

.address-modal .modal-section+.modal-section {
  margin-top: 18px;
}

.address-modal input.form-control {
  background: #fafafa;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  height: 46px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .checkout-progress .dash {
    width: 34px;
  }

  .checkout-wrap {
    padding: 24px 14px 60px;
  }

  .address-title {
    font-size: 14px;
    margin: 0;
  }

  .add-address-btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  .address-line,
  .address-modal input.form-control {
    font-size: 13px;
  }

  p.address-line.text-muted {
    font-size: 10px
  }

  h3#modalTitle {
    font-size: 16px;
  }

  .modal-section h6 {
    font-size: 14px;
  }

}

/* Support band */
.support-band {
  padding: 20px 20px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
}

.support-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.support-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.support-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f1f1f5;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #5c5c5c;
}

.support-icon.blush {
  background: #f8d8df;
  color: #d95875;
}

.support-label {
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.support-detail {
  color: #4c4c4c;
  font-size: 15px;
}

.support-kicker {
  font-weight: 700;
  margin-right: 6px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide picture {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: none;
}

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

.swiper-button-prev span,
.swiper-button-next span {
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.15);
}

.hero-carousel .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.9);
}

.hero-carousel .swiper-pagination-bullet-active {
  background: #fff;
}

.hero-slider-item {
  width: 100%;
}

.accordion-item .accordion-button {
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.accordion-button:not(.collapsed) {
  color: #FF0000;
  background-color: #f7f7f7;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item,
.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.accordion-button::after {
  background: none;
  content: '+';
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.accordion-button:not(.collapsed)::after {
  background: none;
  content: '-';
  font-size: 2.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  transform: rotate(360deg);
}

.help-card {
  background-color: #F9D5D6;
  padding: 10px;
  margin: 15px 0;
}

.help-card .icon-box {
  margin-right: 8px;
}

.help-card .icon-box span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FF7687;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  height: 35px;
  width: 35px;
}

.help-card .icon-box span i {
  font-size: 16px;
}

.help-card h6 {
  font-size: 12px;
  margin-bottom: 0;
}

.help-card p {
  font-size: 10px;
}

@media screen and (max-width:767px) {
  .product-card {
    padding: 5px;
  }

  .product_section_heading {
    font-size: 18px;
  }

  .product-card .card-title {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
  }

  .product-card .text-muted {
    font-size: 12px;
    font-weight: 500;
  }

  .product-card .card-body .price-container,
  .price-container .off-percentage {
    font-size: 12px;
  }

  .product-card .card-body .price-container .current-price {
    font-weight: 600;
  }

  .flash-sale-slider .product-card .card-title {
    text-align: start;
  }

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

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 20px;
    width: 20px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 0;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 0;
  }

  .swiper-button-prev span,
  .swiper-button-next span {
    background: none !important;
  }

  .off-badge span {
    font-size: 11px;
    line-height: 1;
    padding: 2px 5px;
  }

  .product_section_heading {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 18px;
  }

  .recommendation .product_section_heading {
    position: relative;
    line-height: 1;
  }

  .recommendation .product_section_heading span {
    background-color: #fff;
    padding: 0 5px;
  }

  .recommendation .product_section_heading::before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 270px;
    height: 1px;
    background-color: #000;
    border-radius: 5px;
    transform: translate(-50%, 0%);
    z-index: -1;
  }

  #celebs .product_section_heading {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #celebs .product_section_heading span:first-child {
    min-width: 60px;
  }

  #celebs .product_section_heading .subtitle {
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 400;
    display: block;
    position: relative;
    padding-left: 8px;
    text-transform: capitalize;
    margin-left: 8px;
  }

  #celebs .product_section_heading .subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #000;
  }
}

.rating i,
.product-rating i {
  color: #ddd;
  transition: all 300ms ease-in-out;
}

.product-review .rating i:hover,
.rating i.active,
.product-rating i.active {
  color: #f26c83;
}

.product-review-comment:not(:last-child) {
  margin-bottom: 15px;
}

.comment-item .thumb img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  max-width: 80px;
  height: auto;
}

.comment-item .date {
  margin: 0;
}

.comment-item .review-img-parent img {
  max-width: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.comment-item .review-img-parent .review-img {
  display: inline-block;
}

input,
textarea {
  outline: none;
  border-radius: 0 !important;
}

input:focus,
textarea:focus {
  border-color: #f26c83 !important;
  box-shadow: none !important;
}

.review-form-content input[type="file"] {
  display: none;
}

.review-form-content .img-upload-parent label {
  display: block;
  position: relative;
  color: #777;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
}

.img-upload-parent .icon-parent {
  vertical-align: middle;
  display: inline-block;
}

.img-upload-parent .icon-parent i {
  font-size: 36px;
  margin-right: 15px;
}

#num-of-files {
  font-size: 13px;
  font-weight: 400;
}

.review-form-content #review-images-parent {
  width: 100%;
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-form-content figure {
  max-width: 120px;
}

.review-form-content img {
  width: 100%;
}

.review-form-content figcaption {
  text-align: center;
  font-size: 14px;
  margin-top: 0.5vmin;
}

.price-row .current-price {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin-right: 13px;
}

.price-row .old-price {
  font-size: 17px;
  color: #969696;
  margin-bottom: 0;
  text-decoration: line-through;
}

.price-row .discount {
  font-size: 17px;
  color: #d56768;
  margin-left: 5px;
}

.share-earn {
  margin: 9px 0 0;
  font-size: 13px;
}

.gallery-wrapper {
  display: flex;
  gap: 0;
}

.productMainSwiper {
  width: 88%;
}

.productMainSwiper .swiper-slide {
  padding: 0 35px;
}

.productMainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.productThumbSwiper {
  width: 12%;
  height: auto;
  max-height: 100%;
  padding: 0;
  box-sizing: border-box;
}

.productThumbSwiper .swiper-slide {
  width: 100%;
  height: auto !important;
  cursor: pointer;
  margin-bottom: 10px;
}

.productThumbSwiper .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid transparent;
}

.productThumbSwiper .swiper-slide-thumb-active img {
  border-bottom: 4px solid #f37b92;
}

/* --- Desktop Navigation Arrows --- */
.gallery-wrapper .swiper-button-next,
.gallery-wrapper .swiper-button-prev {
  background: none;
  border-radius: 50%;
  font-size: 25px;
  color: #000;
}

.gallery-wrapper .swiper-button-next,
.gallery-wrapper .swiper-rtl .swiper-button-prev {
  right: 0 !important;
}

.gallery-wrapper .swiper-button-prev,
.gallery-wrapper .swiper-rtl .swiper-button-next {
  left: 0 !important;
}

.gallery-wrapper .swiper-pagination {
  display: none;
}

.wishlist-product {
  position: relative;
  border: 1px solid #ddd;
}

.wishlist-product .product-info-parent {
  padding: 10px;
  font-size: 15px;
}

.wishlist-product h6 {
  font-size: 16px;
  font-weight: 400;
}

.wishlist-product .bag-btn {
  display: block;
  text-align: center;
  color: #F15E77;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 0;
  border-top: 1px solid #ddd;
}

.wishlist-product .remove {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 20px;
  color: #8f9396;
  background-color: #fff;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .gallery-wrapper {
    flex-direction: column;
    display: block;
  }

  .productThumbSwiper {
    display: none;
  }

  .productMainSwiper {
    width: 100%;
  }

  .productMainSwiper .swiper-slide {
    padding: 0;
  }

  .gallery-wrapper .swiper-button-next,
  .gallery-wrapper .swiper-button-prev {
    display: none;
  }

  .gallery-wrapper .swiper-pagination {
    display: block;
    position: absolute;
    text-align: left;
    left: 15px !important;
    bottom: 15px !important;
    width: auto !important;
    transform: none;
  }

  .gallery-wrapper .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 4px !important;
    border: 1px solid #000;
  }

  .gallery-wrapper .swiper-pagination-bullet-active {
    background: #000000;
    opacity: 1;
  }

  .price-row .old-price,
  .price-row .discount {
    font-size: 15px;
  }

  .action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    margin: 0 !important;
    padding: 7px;
    width: 100%;
    z-index: 111;
  }

  .modal-dialog {
    margin-right: 10px;
    margin-left: 10px;
  }

  .pincode-input {
    max-width: unset;
  }

  .wishlist-product h6,
  .wishlist-product .bag-btn {
    font-size: 13px;
  }

  .wishlist-product .product-info-parent {
    padding: 8px;
  }

  .wishlist-product .bag-btn {
    padding: 7px 0;
  }
}

@media screen and (max-width:475px) {
  .price-row {
    /* flex-direction: column;
    align-items: start !important; */
    gap: .3rem !important;
  }

  .price-row .product-rating {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
  }
}


.size-chart-btn {
  all: unset;

}

.size-chart-btn span {
  color: #f26c83;
  text-decoration: underline;
}

.modal-content {
  border-radius: 0;
}

.modal-header {
  justify-content: center;
  position: relative;
  border: none;
  padding-bottom: 0;
}

#sizeModal .modal-header .btn-close {
  margin: 0;
  position: absolute;
  right: 10px;
  border: 1px solid #bbb;
  border-radius: 50%;
  padding: 7px;
  font-size: 12px;
}

#sizeModal .modal-title {
  font-size: 22px;
  text-transform: uppercase;
  color: #f18f9f;
  letter-spacing: 2px;
  font-weight: 500;
}

.modal-inner-title {
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 500;
}

.size-chart-table {
  background-color: #f5f5f5;
  padding: 5px 0;
}

.size-table {
  margin: 0;
  overflow-x: auto;
}

.size-table th,
.size-table td {
  background-color: #f5f5f5;
  text-align: center;
  vertical-align: middle;
  border: none;
  padding: 6px;
}

.size-table th {
  font-weight: 700;
  font-size: 15px;
}

.size-table .label {
  font-size: 15px;
  text-align: center;
  font-weight: 700;
}

.unit {
  font-size: 12px;
}

#supplierModal .modal-content {
  padding: 5px 10px;
}

#productDetailAccordion .accordion-item {
  background-color: #F8F8F8;
  border: none;
  margin-bottom: 10px;
}

#productDetailAccordion .accordion-item .accordion-button {
  font-weight: 400;
  background-color: #f8f8f8;
}

#productDetailAccordion .accordion-collapse {
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  color: #FF0000;
  background-color: #f7f7f7;
}

.accordion-button:focus {
  box-shadow: none;
}


#productDetailAccordion .accordion-button:not(.collapsed)::after {
  font-weight: 400;
}

ul {
  padding-left: 1rem;
  margin: .5rem;
}

.help-section h6 {
  font-size: 14px;
}

.breadcrumbs {
  display: flex;
  justify-content: space-between;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 5px;
  font-size: 10px;
  text-transform: uppercase;
}

.breadcrumbs .items .item {
  position: relative;
}

.breadcrumbs .items .item:not(:last-child) {
  padding-right: 10px;
  color: #949494;
}

.breadcrumbs .items .item:not(:last-child)::after {
  content: '/';
  position: absolute;
  top: 0;
  right: 0;
}

.grid-switcher li {
  cursor: pointer;
  color: #777;
  padding: 0 5px;
}

.grid-switcher li.active {
  color: #000;
  font-weight: 600;
}

.grid-switcher li:first-child {
  color: #000;
}

@media (max-width: 991px) {

  .grid-switcher {
    position: absolute;
    z-index: 1;
  }

  .grid-switcher li {
    padding: 0;
    font-size: 16px;
  }

  .grid-switcher .icon i:last-child {
    display: none;
  }

  .grid-switcher li.active .icon i:first-child {
    display: none;
  }

  .grid-switcher li.active .icon i:last-child {
    display: inline-block;
  }
}


.product-count {
  font-style: italic;
  color: #949494;
}

.sort-dropdown {
  position: absolute;
  top: 0;
  right: 0;
}

.sort-toggle {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sort-toggle .arrow {
  font-size: 12px;
}

.sort-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 140px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 3px 6px;
  margin: 5px 0 0;
  display: none;
  z-index: 10;
  text-align: left;
}

.sort-menu li {
  padding: 3px;
  font-size: 12px;
  cursor: pointer;
  color: #000;
}

.sort-menu li.active {
  color: #ff4f7b;
}

.insta-slider {
  padding-bottom: 35px;
}


.insta-item video {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.insta-slider .swiper-button-lock {
  display: block;
}

.insta-slider .swiper-button-prev,
.insta-slider .swiper-button-next {
  background-color: #fff;
  color: #000;
  font-size: 24px;
  font-weight: 800;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta-slider .swiper-wrapper {
  padding-bottom: 20px;
}

/* .insta-slider .swiper-pagination-bullet-active {
  background: #f15e77;
} */

@media (min-width: 576px) {
  #sizeModal .modal-dialog {
    max-width: 1000px;
  }
}


@media (max-width: 991px) {

  .wishlist-product .remove {
    height: 22px;
    width: 22px;
    opacity: .8;
    right: 14px;
  }

  .filter-btn-parent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }

  .filter-btn {
    width: 100%;
    padding: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0;
    color: #333;
    line-height: 17px;
    position: relative;
    display: block;
    background: #fff;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .3);
    position: relative;
  }

  .filter-btn:after {
    content: '';
    height: 7px;
    width: 7px;
    position: absolute;
    top: 14px;
    margin: 4px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    -webkit-transform: rotate(133deg);
    -moz-transform: rotate(133deg);
    -ms-transform: rotate(133deg);
    transform: rotate(133deg);
    font-weight: 300;
  }

  /* Overlay */
  .filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
  }

  /* Panel */
  .filter-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85vw;
    max-width: 320px;
    /* min-height: 100vh; */
    background: #fff;
    transform: translateX(-100%);
    transition: 0.35s ease;
    z-index: 9999;
    overflow-y: auto;
    padding: 15px;
    padding-bottom: 20px;
  }

  /* Active states */
  .filter-panel.active {
    transform: translateX(0);
  }

  .filter-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Header */
  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .filter-close {
    font-size: 22px;
    border: none;
    background: none;
    cursor: pointer;
  }

  .insta-slider .swiper-button-prev,
  .insta-slider .swiper-button-next {
    height: 30px;
    width: 30px;
    font-size: 20px;
  }

  .insta-slider .swiper-button-prev,
  .insta-slider .swiper-rtl .swiper-button-next {
    left: 5px;
  }

  .insta-slider .swiper-button-next,
  .insta-slider .swiper-rtl .swiper-button-prev {
    right: 5px;
  }
}
.product-description {
    line-height: 1.5;
}

    .product-description hr {
        margin: 8px 0; /* पहले ज्यादा था */
    }

    .product-description .section-title {
        display: block;
        margin: 8px 0 4px 0; /* 🔥 PERFECT GAP */
        font-weight: 600;
    }

    .product-description br {
        display: none; /* 🔥 unwanted space remove */
    }

