@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");

/* Common CSS Start */
:root {
  --websiteFont: "Poppins", sans-serif;
  --uniqueFont: "Quicksand", sans-serif;
  --transition: all 0.2s 0s linear;
  --whitecolor: #ffffff;
  --blackcolor: #000000;
  --bodycolor: #474747;
  --headingcolor: #333333;
  --themecolor: #fec80a;
  --themecolor2: #ed3a4e;
  --bordercolor: #b9b9b9;
}

body {
  font-family: var(--websiteFont);
  font-size: 14px;
  color: var(--bodycolor);
}

.overflowvisible {
  overflow: visible !important;
}

.section-padding {
  padding: 80px 0px;
}

.small-section-padding {
  padding: 40px 0px;
}

.section-heading {
  font-family: var(--uniqueFont);
  color: var(--headingcolor);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.section-heading-theme {
  color: var(--themecolor);
}

.btn {
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition);
}

.btn.btn-sm {
  font-size: 12px;
}

.btn-lg {
  font-size: 15px;
  padding: 12px 40px;
}

.btn-default {
  border: 1px solid var(--headingcolor);
  background-color: var(--headingcolor);
  color: #fff;
}

.btn-default:focus,
.btn-default:hover {
  background-color: var(--headingcolor);
  border-color: var(--headingcolor);
  color: var(--whitecolor);
}

.web-btn {
  background-color: #ed3a4e;
  border-color: #ed3a4e;
  color: var(--whitecolor);
}

.web-btn:hover {
  background-color: var(--themecolor);
  border-color: var(--themecolor);
  color: var(--whitecolor);
}

.badge {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--bodycolor);
  transition: var(--transition);
}

a:hover {
  color: var(--themecolor);
}

.web-clr {
  color: var(--themecolor);
}

.badge-primary {
  background-color: var(--themecolor);
  color: var(--whitecolor);
}

.effect-dropdown {
  position: relative;
  display: inline-block;
}

.effect-dropdown .list {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--headingcolor);
  margin: 0px;
  padding: 10px 0px 15px;
  list-style: none;
  z-index: 10;
  border-radius: 10px;
  width: 150px;
  overflow: hidden;
  display: none;
}

.effect-dropdown .list a {
  color: white;
  padding: 8px 20px;
  text-align: left;
  display: block;
  transition: var(--transition);
}

.effect-dropdown .list a:hover {
  opacity: 0.8;
}

.range-slider .price-input {
  width: 100%;
  display: flex;
  margin: 25px 0 0px;
}

.range-slider .price-input .field {
  display: flex;
  width: 100%;
  height: 40px;
  align-items: center;
}

.range-slider .field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 14px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}

.range-slider input[type="number"]::-webkit-outer-spin-button,
.range-slider input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.range-slider .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
}

.range-slider .slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
  padding: 0px;
}

.range-slider .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--headingcolor);
}

.range-slider .range-input {
  position: relative;
}

.range-slider .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--whitecolor);
  border: 2px solid var(--headingcolor);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.range-slider input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #17a2b8;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.custom-radio label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}

.custom-radio label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.custom-radio input:checked ~ label:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  background-color: var(--headingcolor);
  color: var(--whitecolor);
}

.form-control,
.form-select {
  border-radius: 5px;
  padding: 13px 25px;
  background-color: #fff;
  border-color: #fff;
  color: var(--headingcolor);
  box-shadow: none !important;
  font-size: 16px;
  background-position: right 25px center;
}

.form-control::placeholder,
.form-select::placeholder {
  color: var(--headingcolor);
}

.form-control:focus,
.form-select:focus {
  background-color: #eee;
  border-color: var(--headingcolor);
}

textarea.form-control {
  border-radius: 25px;
}

.text-upr {
  text-transform: uppercase;
}

.quantity {
  border: 1px solid black;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 150px;
}

.quantity .minus,
.quantity .plus {
  width: 30.5px;
  height: 30.5px;
  font-size: 20px;
  background: #ed3a4e;
  color: white;
  border: 1px solid #ed3a4e;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  transition: var(--transition);
}

.quantity .minus:hover,
.quantity .plus:hover {
  background-color: var(--headingcolor);
  border-color: var(--headingcolor);
  color: var(--whitecolor);
}

.quantity input {
  height: 36.5px;
  width: calc(100% - 73px);
  text-align: center;
  font-size: 18px;
  border: none;
  display: inline-block;
  vertical-align: middle;
  outline: 0;
}

.creative-tabs {
  border: none;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.creative-tabs .nav-link {
  background-color: #eee;
  border: 1px solid var(--bordercolor);
  color: var(--headingcolor);
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 30px;
}

.creative-tabs .nav-link:hover,
.creative-tabs .nav-link.active {
  background-color: var(--headingcolor);
  border-color: var(--headingcolor);
  color: var(--whitecolor);
}

.creative-tabs + .tab-content {
  border: 1px solid var(--bordercolor);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.password-input {
  position: relative;
}

.password-input .form-control {
  padding-right: 62px;
}

.password-input .toggle-password {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
  cursor: pointer;
}

.modal .modal-content {
  border-radius: 0px;
}

.modal .modal-body {
  padding: 30px;
}

.modal .modal-h {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 30px;
}

.modal .btn-close {
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 1;
  box-shadow: none;
}

.table-dark th {
  background-color: var(--headingcolor);
  font-weight: 600;
}

.carousel-control-next,
.carousel-control-prev {
  width: 10%;
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  background-color: #ddd;
  opacity: 1;
  width: 9px;
  height: 9px;
  border-radius: 50px;
  margin: 0px 5px;
  border: none;
}

.carousel-indicators .active {
  background-color: var(--themecolor);
}

/* Common CSS End */

/* Owl Nav & Dots Start */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 70px !important;
}

.owl-nav .owl-prev {
  left: 15px;
}

.owl-nav .owl-next {
  right: 15px;
}

.owl-dots {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  width: 100%;
  text-align: center;
}

.owl-dots button {
  background-color: #ddd !important;
  opacity: 1;
  width: 9px;
  height: 9px;
  border-radius: 50px;
  margin: 0px 5px;
}

.owl-dots button.active {
  background-color: #ed3a4e !important;
}

/* Owl Nav & Dots End */

/* Flickity Dots Work Start */
.flickity-page-dots .dot {
  width: 9px;
  height: 9px;
  margin: 0px 5px;
  background-color: #ddd;
  opacity: 1;
}

.flickity-page-dots .dot.is-selected {
  background-color: var(--themecolor);
}

/* Flickity Dots Work End */

/* Breadcrumb Work Start */
.bredcrumb-section {
  padding: 20px 0px;
  background-color: #fae9e9;
}

.breadcrumb {
  margin: 0px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 10px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  padding-right: 10px;
}

/* Breadcrumb Work End */

/* Header Work Start */
.top-header {
  background: url("../images/top-header-bg-05.png");
  background-size: 100%;
  padding-top: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.header-top p {
  margin: 0px;
}

.side-icons-nav {
  position: absolute;

  right: 80px;
  bottom: 0px;
}

.nav-menu {
  background-color: #fec80a;
  /* padding: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  border-radius: 5px;
}

.nav-menu a {
  font-family: var(--uniqueFont);
  color: #000;
  font-weight: 500;
  font-size: 18px;
  padding: 20px 0px;
  display: block;
}

/* .header .navbar {
  background-color: #f0f2f5;
  border-bottom: 1px solid #eaeaea;
  box-shadow: -1px 6px 15px -4px rgba(214, 214, 214, 1);
} */
.header .logo {
  height: 100px;
  object-fit: contain;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

.header .nav-link {
  font-size: 25px;
  padding: 10px 15px !important;
  position: relative;
}

.header .nav-link .badge {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 3px;
  top: 6px;
  font-size: 12px;
  border-radius: 50px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

.header .nav-link:hover {
  color: var(--blackcolor);
}

.header .dropdown-toggle::after {
  display: none;
}
.header .header-account-btn.dropdown-toggle::after {
  display: inline-block;
  font-size: 12px;
}

/* Header Login Button */
.header .header-login-btn {
  font-size: 14px !important;
  font-weight: 600;
  background: #ed3a4e;
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(237, 58, 78, 0.3);
}
.header .header-login-btn:hover {
  background: #d42e41;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(237, 58, 78, 0.4);
}
.header .header-login-btn i {
  font-size: 15px;
}

/* Header Account Dropdown Button */
.header .header-account-btn {
  font-size: 14px !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header .header-account-btn i {
  font-size: 18px;
}

/* Mobile: icon-only for header login/account */
@media (max-width: 767.98px) {
  .header .header-account-btn .account-text {
    display: none;
  }
  .header .header-account-btn {
    font-size: 22px !important;
    padding: 10px 8px !important;
  }
  .header .header-account-btn i {
    font-size: 22px;
  }
  .header .header-account-btn.dropdown-toggle::after {
    display: none;
  }
  .header .header-login-btn {
    font-size: 12px !important;
    padding: 6px 14px !important;
  }
}

.header .dropdown-menu {
  left: auto;
  right: -50px;
}

.dropdown-menu {
  min-width: 200px;
  padding: 0;
}

.dropdown-menu a {
  padding: 8px 20px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.dropdown-menu li:last-child a {
  border: none;
}

/* .dropdown-menu a:hover {
  background-color: var(--themecolor2);
  color: white;
} */

.dropdown-menu a i {
  width: 16px;
  text-align: center;
}

.header .search-menu {
  min-width: 300px;
  padding: 0px;
  background-color: transparent;
  border: none !important;
  top: 5px;
  right: 6.4px;
}

.header .search-menu li form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.header .search-menu li.search-result {
  flex-direction: column;
  align-items: start;
  gap: 0px;
}

.header .search-menu li.search-result .item {
  width: 100%;
}

.header .search-menu li.search-result a {
  padding: 10px;
}

.header .search-menu li.search-result h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  padding: 15px;
}

.header .search-menu li.search-result img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.header .search-menu li.search-result p {
  margin: 0px;
  font-size: 12px;
}

.header .search-menu li.search-result .product-title {
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 13px;
}

.header .search-menu .form-control {
  border-radius: 50px;
  padding: 10px 20px;
  background-color: var(--whitecolor);
  border-color: #ddd;
  color: var(--headingcolor);
  box-shadow: none;
  font-size: 14px;
  width: calc(100% - 52px);
}

.header .search-menu .form-control::placeholder {
  color: var(--headingcolor);
}

.header .search-menu .btn {
  width: 42px;
  height: 42px;
  padding: 0px;
  display: flex;
  align-items: center;
}

.header .search-menu .search-result,
.header .search-menu .live-search-loader {
  background-color: var(--whitecolor);
  border: 1px solid #ddd;
}

.header .search-menu .live-search-loader {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .search-menu .live-search-loader p {
  margin: 0px;
}

.header .search-menu .live-search-loader .spinner-grow {
  width: 15px;
  height: 15px;
}

/* Header Work End */

/* Slider Work Start */
.slider {
  padding: 0;
}

.slider img {
  width: 100%;
  height: auto;
}

.slider .img-box {
  height: 100%;
  background-color: #eee;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Slider Work End */

/* Category Work Start */
.categories .section-heading {
  margin-bottom: 20px;
}

.categories .effect-dropdown {
  margin-bottom: 40px;
}

.categories .owl-carousel {
  margin: -10px;
}

.categories .owl-carousel .owl-item {
  padding: 10px;
}

.categories .box {
  transition: var(--transition);
  display: block;
  position: relative;
}

.categories .box span {
  background: #e8e6e6;
  color: #000;
  padding: 5px 15px;
  z-index: 10;
  position: absolute;
  width: calc(100% - 30px);
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
  font-weight: 600;
  text-transform: uppercase;
}

.categories .box:hover {
  transform: scale(1.1);
}

/* Category Work End */

/* Products Work Start */
.filter-tabs {
  margin-bottom: 40px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.filter-tabs button.active {
  color: var(--themecolor);
}

.filter-tabs button {
  font-family: var(--uniqueFont);
  color: var(--headingcolor);
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  padding: 0px;
}

.product-box {
  background: #fefefe;
  height: 100%;
  position: relative;
  transition: all 0.3s linear;
}

.product-box {
  background: #fefefe;
  height: 100%;
  position: relative;
  transition: all 0.3s linear;
  overflow: hidden;
}

.hover-cart-btn {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  z-index: 10;
  /* Make sure it's on top */
  pointer-events: auto;
  /* Allow clicking */
}

.product-box:hover .hover-cart-btn {
  opacity: 1;
  visibility: visible;
}

.product-box:hover {
  /* border: 1px solid #ddd; */
  box-shadow: 5px 5px 5px 5px rgba(209, 209, 209, 1);
}

.product-box .remove-btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  padding: 8px 10px 9px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0px;
}

.product-box .badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: var(--headingcolor);
  padding: 8px 10px 9px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0px;
}

.product-box .img {
  position: relative;
  display: block;
  height: auto;
  background-color: #ebebee;
}

.product-box .img img {
  width: 100%;
  height: auto;
  object-position: center;
}

.product-box .product-img2 {
  opacity: 0;
  transition: var(--transition);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.product-box:hover .product-img2 {
  opacity: 1;
}

.product-box .box-body {
  padding: 15px;
}

.product-box .box-body p {
  margin-bottom: 5px;
}

.product-box .box-body .title {
  color: var(--headingcolor);
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}

.product-box .box-body .price {
  font-weight: 600;
}

.product-box .box-body .size-radio {
  display: inline-block;
}

.product-box .box-body .size-radio label {
  border: 2px solid #ddd;
  padding: 3px 10px;
  min-width: 32px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

.product-box .box-body .size-radio input:checked ~ label {
  border-color: var(--headingcolor);
}

.product-box .box-body .btns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.product-box .box-body .wishlist-btn {
  color: var(--headingcolor);
  font-size: 20px;
}

/* Products Work End */

/* Footer Work Start */
.footer-top {
  background-color: #dedede;
  padding: 30px 0px;
}

.footer-top .box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-top .box .icon {
  background-color: #747b88;
  width: 60px;
  height: 60px;
  color: var(--whitecolor);
  font-size: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top .box .text {
  width: calc(100% - 75px);
}

.footer-top .box .title {
  color: var(--headingcolor);
  font-family: var(--uniqueFont);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-top .box p {
  margin: 0px;
  font-size: 12px;
}

.footer {
  padding: 60px 0px;
}

.footer .footer-h {
  font-family: var(--uniqueFont);
  color: var(--headingcolor);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 27px;
  margin-bottom: 20px;
}

.footer .list {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .list a {
  color: var(--headingcolor);
  font-size: 16px;
}

.footer .logo img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 24px;
}

.social-links a {
  color: var(--headingcolor);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--themecolor);
}

.footer-bottom {
  border-top: 1px solid #8b9198;
  padding: 16px 0px 20px;
}

.footer-bottom p {
  font-family: var(--uniqueFont);
  color: #8b9198;
  font-size: 16px;
}

.footer-bottom img {
  height: 30px;
  width: 100%;
  display: flex;
  object-fit: contain;
  object-position: right;
}

/* Footer Work End */

/* Product-listing Work Start */

/* Product Listing - Check Delivery */
.product-listing .pincode {
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
}

.product-listing .pincode > label {
  font-size: 13px;
  font-weight: 700;
  color: var(--headingcolor);
  letter-spacing: 0.5px;
}

.product-listing .pincode > label i {
  margin-right: 5px;
}

.product-listing .pincode > label a {
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
}

.product-listing .pincode .input-group {
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}

.product-listing .pincode .input-group .form-control {
  background-color: transparent;
  border: none !important;
  padding: 8px 12px;
  font-size: 13px;
  box-shadow: none !important;
  height: auto;
}

.product-listing .pincode .listing-check-btn,
.product-listing .pincode .listing-check-btn:hover,
.product-listing .pincode .listing-check-btn:focus,
.product-listing .pincode .listing-check-btn:active {
  color: #ed3a4e;
  border: none;
  background-color: transparent;
  background: none;
  padding: 8px 12px 8px 0;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: none;
  outline: none;
}

.product-listing .pincode .input-group .btn i {
  font-size: 14px;
  margin-right: 3px;
}

.product-listing .pincode .box {
  background-color: #f8f8f8;
  border-radius: 6px;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #eee;
}

.product-listing .pincode .box .box-title {
  font-size: 12px !important;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2ac39f;
}

.product-listing .pincode .box p {
  margin-bottom: 0;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #555;
}

.product-listing .pincode .box p i {
  width: 14px;
  text-align: center;
  margin-right: 6px;
  font-size: 11px;
}

.product-listing .pincode .text-success {
  color: #2ac39f !important;
}

/* Product Listing - Summary/Description */
.product-listing-summary {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px 18px;
}

.product-listing-summary .listing-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--headingcolor);
  margin-bottom: 5px;
}

.product-listing-summary .listing-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

.product-listing .filter-sidebar .filter-h {
  font-size: 26px;
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: bold;
  color: var(--headingcolor);
}

.product-listing .filter-sidebar .list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-listing .filter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.product-listing .filter-top select {
  width: 300px;
  padding: 10px 45px 10px 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  font-size: 14px;
  background-position: right 20px center;
}

.product-listing .filter-top .filters-btn {
  display: flex;
  gap: 10px;
}

.product-listing .filter-offcanvas {
  width: 100%;
}

.product-listing .filter-offcanvas .offcanvas-body {
  flex-direction: column;
}

.product-listing .offcanvas-header {
  border-bottom: 1px solid #ddd;
}

.product-listing .offcanvas-header .btn-close {
  box-shadow: none;
  opacity: 1;
}

/* Product-listing Work End */

/* Product Details Work Start */
.product-details .row > .col-lg-5 {
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .product-details .row > .col-lg-5 {
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}

.product-details .main-img-show {
  width: 100%;
  height: auto;
  background-color: #ebebee;
  position: relative;
  z-index: 5;
  border: 1px solid var(--bordercolor);
}

.product-details .main-img-show .icons-2 {
  height: 100px !important;
  width: 100px !important;
  position: absolute;
  top: -10px;
  right: -5px;
}

.product-details .main-img-show .icons-1 {
  height: 100px !important;
  width: 100px !important;
  position: absolute;
  top: -10px;
  left: -5px;
}

.product-details .main-img-show .icons-3 {
  height: 100px !important;
  width: 100px !important;
  position: absolute;
  bottom: -10px;
  right: -5px;
}

.product-details .main-img-show .icons-4 {
  height: 100px !important;
  width: 100px !important;
  position: absolute;
  bottom: -10px;
  left: -5px;
}

.product-details .main-img-show > img {
  width: 100%;
  height: auto;
  display: block;
}

.product-details .main-img-show .zoom-panel {
  z-index: 1000;
  background-color: #fff !important;
}

.product-details .small-img {
  width: 100%;
  left: 0;
}

.product-details .show-small-img {
  border: 1px solid var(--bordercolor) !important;
  background-color: white;
  padding: 2px !important;
  object-fit: contain;
}

.product-details .show-small-img[alt="now"] {
  border-color: black !important;
}

.product-details .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--blackcolor);
}

.product-details .category {
  margin-bottom: 12px;
}

.product-details .price {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.product-details .size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  font-weight: 600;
  font-size: 16px;
  color: #007acc;
  background-color: transparent;
  padding: 0px;
  border: none;
}

.product-details .size-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.product-details .form-group {
  margin-top: 20px;
  margin-bottom: 0px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details .form-label {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 0px;
  display: block;
}

.product-details .clr-radio {
  display: inline-block;
  margin-right: 3px;
}

.product-details .clr-radio label {
  border: 2px solid #ddd;
  padding: 3px;
  cursor: pointer;
}

.product-details .clr-radio label img {
  width: 34px;
  height: 50px;
  object-fit: contain;
}

.product-details .clr-radio input:checked ~ label {
  border-color: var(--headingcolor);
}

.product-details .variant {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-details .size-radio {
  display: inline-block;
}

.product-details .size-radio label {
  border: 2px solid #ddd;
  padding: 6px 16px;
  border-radius: 50px;
  min-width: 30px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.cart .product-name p {
  color: #8e8e8e;
  font-size: 12px;
  margin-bottom: 0px;
}

.product-details .size-radio input:checked ~ label {
  border-color: var(--headingcolor);
}

.product-details .qty-and-btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-details .pincode {
  margin-top: 15px;
}

.product-details .pincode .input-group {
  width: 280px;
}

.product-details .pincode label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-details .pincode .input-group {
  border: 1px solid black;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 15px;
}

.product-details .pincode .form-control {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
}

.product-details .pincode .btn {
  color: #ed3a4e;
  border: none;
  background-color: transparent;
  padding: 10px 25px 10px 0px;
  gap: 15px;
}

.product-details .pincode .btn i {
  font-size: 20px;
}

.product-details .pincode p {
  font-size: 12px;
}

.product-details .pincode .box {
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 20px;
}

.product-details .pincode .text-success {
  color: #2ac39f !important;
}

.product-details .pincode .box .box-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--blackcolor);
}

.product-details .pincode .box p {
  margin-bottom: 0px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.product-details .pincode .box p i {
  width: 18px;
  text-align: center;
  margin-right: 10px;
}

.product-details .nav-tabs {
  margin-top: 60px;
}

#sizechartModal .tab-content {
  border-radius: 0px;
  border: none;
  box-shadow: none;
  padding: 0px;
  min-height: 389px;
}

/* Product Tags (SKU, Style, HSN) */
.product-tags-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.product-tag {
  font-size: 12px;
  color: #777;
  background: #f5f5f5;
  padding: 3px 10px;
  border-radius: 4px;
}

.product-tag i {
  margin-right: 4px;
  font-size: 11px;
}

/* Selling Price & MRP */
.product-price.price-section {
  margin-bottom: 0;
}

.product-price.price-section + .d-flex h6 {
  margin-top: 2px;
  margin-bottom: 0;
}

.price-section .selling-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--headingcolor);
}

.price-section .mrp-line {
  font-size: 14px;
  color: #888;
}

.price-section .mrp-line del {
  color: #999;
}

.price-section .discount-badge {
  color: #e74c3c;
  font-weight: 600;
  margin-left: 6px;
}

/* COD Badge */
.cod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #166534;
}

.cod-badge i {
  font-size: 16px;
  color: #16a34a;
}

/* Service Tiles (COD / Return / Shipping) */
.service-tiles {
  display: flex;
  justify-content: flex-start;
  align-items: self-start;
  gap: 24px;
  padding: 14px 0;
}

.service-tile {
  flex: 0 0 auto;
  text-align: center;
  min-width: 90px;
}

.service-tile-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
}

.service-tile-icon > i {
  font-size: 28px;
  color: #1f2937;
}

.service-tile-badge {
  position: absolute;
  bottom: -2px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--themecolor2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.service-tile-text {
  margin: 0;
  font-size: 12px;
  color: #1f2937;
  line-height: 1.3;
}

.service-tile-text strong {
  font-weight: 700;
}

.service-tile-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--themecolor2);
  text-decoration: none;
}

.service-tile-link:hover {
  text-decoration: underline;
  color: var(--themecolor2);
  opacity: 0.85;
}

@media (max-width: 575px) {
  .service-tiles {
    gap: 6px;
  }
  .service-tile-icon > i {
    font-size: 24px;
  }
  .service-tile-text,
  .service-tile-link {
    font-size: 11px;
  }
}

/* Wash Care List */
.wash-care-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wash-care-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.wash-care-list li:last-child {
  border-bottom: none;
}

.wash-care-list li i {
  width: 20px;
  text-align: center;
  color: #888;
  font-size: 15px;
}

/* Product Details Work End */

/* Cart Work Start */
.cart .table {
  border: 1px solid var(--bordercolor);
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}

.cart .table tr th {
  font-weight: 600;
}

.cart .table tr th,
.cart .table tr td {
  padding: 15px 15px;
  vertical-align: middle;
}

.cart .table tr th:first-child,
.cart .table tr td:first-child {
  text-align: left;
}

.cart .table .quantity {
  margin: 0px auto;
}

.cart .table del {
  opacity: 0.6;
  font-weight: normal;
}

.cart .table .product-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.cart .table .product-name img {
  width: 80px;
  height: 100px;
  object-fit: contain;
  border: 1px solid var(--bordercolor);
  padding: 3px;
}

.cart .table .btn-danger {
  padding: 0px;
  width: 35px;
  height: 35px;
}

.cart .table .input-group {
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 50px;
  width: 350px;
}

.cart .table .input-group .form-control {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
}

.cart .table .input-group .btn {
  border-radius: 50px !important;
}

/* .cart .right-box {
  border: 1px solid var(--bordercolor);
  padding: 20px;
} */
.cart .right-box .box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 30px;
}

.cart .right-box .btn {
  text-transform: uppercase;
}

.cart .right-box .table {
  border: none;
  font-size: 16px;
  text-align: left;
  color: var(--bodycolor);
  margin: -15px 0px;
}

.cart .right-box .table tr th,
.cart .right-box .table tr td {
  padding: 10px 0px;
  border-color: #ddd;
}

.cart .right-box .table tr:last-child th,
.cart .right-box .table tr:last-child td {
  border: none;
}

.cart .right-box .table tr th {
  white-space: nowrap;
  font-weight: 600;
  color: var(--bodycolor);
}

.cart .right-box .table tr td {
  padding-left: 35px;
}

.cart .right-box .table .total {
  font-size: 20px;
  font-weight: 600;
}

.cart .right-box .table .total th {
  color: var(--blackcolor);
}

.cart .right-box .btn {
  margin-top: 30px;
}

/* Cart Work End */

/* Checkout Work Start */
.checkout .checkout-form {
  position: sticky;
  top: 20px;
}

.checkout .form-control,
.checkout .form-select {
  font-size: 16px;
  padding: 13px 25px;
  background-position: right 25px center;
}

.checkout .product-added-box {
  border: 1px solid #eee;
  border-radius: 10px;
  /* padding: 20px; */
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.checkout .product-added-box .item {
  padding: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.checkout .product-added-box .item:last-child {
  border-bottom: none;
}

.checkout .product-added-box .img-box {
  width: 50px;
  height: 70px;
  border: 1px solid var(--bordercolor);
  background-color: var(--whitecolor);
  padding: 5px;
  position: relative;
}

.checkout .product-added-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout .product-added-box .img-box .badge {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -5px;
  top: -5px;
  font-size: 12px;
  border-radius: 50px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1px;
}

.checkout .product-added-box .content {
  width: calc(100% - 65px);
}

.checkout .product-added-box .content p {
  margin: 5px 0px;
  font-weight: 600;
}

.checkout .product-added-box .content .title {
  font-size: 16px;
  color: var(--blackcolor);
}

.checkout .product-added-box .content .price del {
  opacity: 0.6;
  font-weight: normal;
  margin-right: 5px;
}

.checkout .apply-coupon {
  margin-top: 15px;
}

.checkout .apply-coupon .input-group {
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 50px;
  width: 100%;
}

.checkout .apply-coupon .input-group .form-control {
  background-color: transparent;
  border: none;
}

.checkout .apply-coupon .input-group .btn {
  border-radius: 50px !important;
}

.checkout .right-box {
  margin-top: 20px;
  border: 1px solid #ddd;

  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.checkout .right-box .box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;

  padding: 20px 20px;
}

.checkout .right-box .btn {
  text-transform: uppercase;
}

.checkout .right-box .table {
  border: none;
  font-size: 16px;
  text-align: left;
  color: var(--bodycolor);
  /* margin: -15px 0px; */
}

.checkout .right-box .table del {
  opacity: 0.6;
  font-weight: normal;
}

.checkout .right-box .table tr th,
.checkout .right-box .table tr td {
  padding: 10px 20px;
  border-color: #ddd;
}

.checkout .right-box .table tr:last-child th,
.checkout .right-box .table tr:last-child td {
  border: none;
}

.checkout .right-box .table tr th {
  white-space: nowrap;
  font-weight: 600;
  color: var(--bodycolor);
}

.checkout .right-box .table tr td {
  padding-left: 35px;
}

.checkout .right-box .table .total {
  font-size: 20px;
  font-weight: 600;
}

.checkout .right-box .table .total th {
  color: var(--blackcolor);
}

.checkout .right-box .btn {
  margin-top: 30px;
}

.checkout .payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.checkout .payment-methods .payment-radio {
  width: calc(100% - 5px);
}

.checkout .payment-methods .payment-radio label {
  border: 2px solid #ddd;
  padding: 15px;
  cursor: pointer;
  height: 70px;
  width: 100%;
  position: relative;
}

.checkout .payment-methods .payment-radio label img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout .payment-methods .payment-radio input:checked ~ label {
  border-color: var(--headingcolor);
}

.checkout .payment-methods .payment-radio input:checked ~ label:before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: 0px;
  right: 5px;
  color: var(--blackcolor);
  font-size: 20px;
}

.checkout .checkout-policy {
  margin: 20px 0px;
}

.checkout .checkout-policy label {
  color: var(--headingcolor);
}

.checkout .checkout-policy p {
  margin: 10px 0px;
}

.checkout .add-address-box {
  background-color: #faf5f5;
  border: 2px solid #a09a9a;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 25px;
}

.checkout .radio-address-box {
  position: relative;
  height: 100%;
}

.checkout .radio-address-box input {
  display: none;
}

.checkout .radio-address-box .box {
  border: 1px solid var(--bordercolor);
  padding: 20px;
  width: 100%;
  cursor: pointer;
  position: relative;
  height: 100%;
}

.checkout .radio-address-box .box:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.checkout .radio-address-box input:checked ~ label:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  background-color: var(--themecolor2);
  color: var(--whitecolor);
}

.checkout .radio-address-box input:checked ~ label {
  border-color: var(--themecolor2);
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.checkout .radio-address-box .box .box-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 20px;
  padding-left: 30px;
  width: 60%;
}

.checkout .radio-address-box .box .address-item {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout .radio-address-box .box .address-item p {
  flex: 1 1 calc(50% - 20px);
  line-break: anywhere;
  margin: 0px;
  font-size: 12px;
  line-height: 16px;
}

.checkout .radio-address-box .box .address-item p b {
  font-weight: 600;
}

.checkout .radio-address-box .edit-address {
  padding: 5px 15px;
  position: absolute;
  top: 20px;
  right: 55px;
}

.checkout .radio-address-box .delete-address {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Checkout Work End */

/* Login Work Start */
.login .box {
  padding: 0px;
  /* border: 1px solid #ddd; */
  background: linear-gradient(to right, #fec80a, #ed3a4e);
  padding: 20px;
  border-radius: 5px;
}

.login .nav-tabs {
  border: none;
}

.login .nav-tabs .nav-item {
  width: 50%;
}

.login .nav-tabs .nav-link {
  background-color: #eee;
  width: 100%;
  border-radius: 0px;
  border: 1px solid #ddd;
  color: var(--headingcolor);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 15px;
}

.login .nav-tabs .nav-link.active {
  background-color: var(--themecolor);
  border-color: var(--themecolor);
  color: var(--whitecolor);
}

.login .tab-content {
  padding: 30px;
}

.login {
  background: url("../images/sec-login.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: unset;
}

/* .thankyou{
  background: url('../images/sec-login.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: unset;
} */
/* Login Work End */

/* My Account Work Start */
.myaccount .my-account-btn {
  margin-bottom: 20px;
  justify-content: space-between;
}

.myaccount .myaccount-mobile-menu {
  height: auto;
  background: linear-gradient(to right, #fff 0%, #f3f3f3 100%);
}

.myaccount .myaccount-mobile-menu .btn-close {
  position: absolute;
  opacity: 1;
  top: 10px;
  right: 10px;
  font-size: 15px;
  box-shadow: none;
}

.myaccount .myaccount-mobile-menu .offcanvas-body {
  padding: 30px 40px;
}

.myaccount .myaccount-mobile-menu .myaccount-menus {
  background: none;
  padding: 0px;
}

.myaccount .section-heading {
  margin-bottom: 30px;
}

.myaccount .myaccount-menus {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  /* padding: 40px 50px; */
  position: sticky;
  top: 20px;
}

.myaccount .myaccount-menus .nav-pills {
  gap: 10px;
}

.myaccount .myaccount-menus .nav-link {
  padding: 20px 20px;
  color: var(--headingcolor);
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
  background-color: transparent;
  border-radius: 0;
  border: none;
}

.myaccount .myaccount-menus .nav-link i {
  font-size: 20px;
  width: 23px;
  text-align: center;
}

.myaccount .myaccount-menus .nav-link.active {
  font-weight: 600;
  color: white;
  background-color: var(--themecolor2);
  /* border-bottom: 1px dashed var(--themecolor2); */
}

.myaccount .box {
  border: 1px solid var(--bordercolor);
  padding: 20px;
  margin: 30px 0px;
}

.myaccount .box .box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 30px;
}

.myaccount .table {
  font-weight: 500;
  margin: 0px;
  text-align: center;
}

.myaccount .table tr th:first-child,
.myaccount .table tr td:first-child {
  text-align: left;
}

.myaccount .table tr th {
  font-weight: 600;
  background-color: #eee;
  white-space: nowrap;
}

.myaccount .table tr th,
.myaccount .table tr td {
  padding: 15px;
}

.myaccount .table del {
  opacity: 0.6;
  font-weight: normal;
}

.myaccount .wishlist .img {
  height: 200px;
}

.myaccount .addresses .add-address-box {
  background-color: #eee;
  border: 2px solid #ddd;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 25px;
}

.myaccount .addresses .address-box {
  border: 1px solid var(--bordercolor);
  padding: 20px;
}

.myaccount .addresses .address-box .box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.myaccount .addresses .address-box .box-title .text {
  width: calc(100% - 100px);
}

.myaccount .addresses .address-box .box-title .btns {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: -5px;
}

.myaccount .addresses .address-box .box-title .btn {
  padding: 5px 15px;
}

.myaccount .addresses .address-box .box-title .delete-address {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myaccount .addresses .address-box .username {
  font-weight: 600;
  margin-bottom: 5px;
}

.myaccount .addresses .address-box p {
  margin: 0px;
}

.myaccount .addresses .address-box .address-item {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.myaccount .addresses .address-box .address-item p {
  flex: 1 1 calc(50% - 20px);
  line-break: anywhere;
  margin: 0px;
  font-size: 12px;
  line-height: 16px;
}

.myaccount .addresses .address-box .address-item p b {
  font-weight: 600;
}

/* My Account Work End */

/* Invoice Work Start */
.invoice {
  background-color: #eee;
}

.invoice .invoice-box {
  background-color: var(--whitecolor);
  padding: 30px 30px 100px 30px;
  position: relative;
}

.invoice .invoice-box .thankyou-text {
  position: absolute;
  left: 30px;
  bottom: 30px;
  margin: 0px;
}

.invoice .invoice-box h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  color: #2065e5;
  margin-bottom: 15px;
}

.invoice .invoice-box .logo {
  height: 80px;
}

.invoice .invoice-box .barcode {
  width: 100%;
  height: 35px;
  margin-bottom: 15px;
  object-fit: contain;
  object-position: left;
}

.invoice .invoice-box p {
  margin-bottom: 0px;
  line-break: anywhere;
}

.invoice .invoice-box .big-text {
  font-size: 20px;
}

.invoice .table tr th,
.invoice .table tr td {
  text-align: center;
}

.invoice .table tr th:first-child,
.invoice .table tr td:first-child {
  text-align: left;
}

.invoice .table tr th:nth-child(2),
.invoice .table tr td:nth-child(2) {
  text-align: left;
}

.invoice .table tr th:last-child,
.invoice .table tr td:last-child {
  text-align: right;
}

.invoice .table .total {
  font-size: 18px;
}

/* Invoice Work End */

/* Order Details Work Start */
.order-details .section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-details .section-heading .btn {
  text-transform: capitalize;
  font-family: var(--websiteFont);
  font-weight: 600;
  gap: 10px;
}

.order-details .box {
  border: 1px solid var(--bordercolor);
  padding: 20px;
  margin-top: 20px;
}

.order-details .box .box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 10px;
}

.order-details .box p {
  margin: 0px;
  line-break: anywhere;
}

.order-details .product-added-box {
  border: 1px solid var(--bordercolor);
  margin-top: 20px;
}

.order-details .product-added-box .item {
  padding: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.order-details .product-added-box .item:last-child {
  border-bottom: none;
}

.order-details .product-added-box .img-box {
  width: 50px;
  height: 70px;
  border: 1px solid var(--bordercolor);
  background-color: var(--whitecolor);
  padding: 5px;
  position: relative;
}

.order-details .product-added-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-details .product-added-box .img-box .badge {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -5px;
  top: -5px;
  font-size: 12px;
  border-radius: 50px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1px;
}

.order-details .product-added-box .content {
  width: calc(100% - 65px);
}

.order-details .product-added-box .content p {
  margin: 5px 0px;
  font-weight: 600;
}

.order-details .product-added-box .content .title {
  font-size: 16px;
  color: var(--blackcolor);
  font-weight: 600;
}

.order-details .product-added-box .content .price del {
  opacity: 0.6;
  font-weight: normal;
  margin-right: 5px;
}

.order-details .right-box {
  border: 1px solid var(--bordercolor);
  padding: 20px;
  position: sticky;
  top: 20px;
}

.order-details .right-box .box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 30px;
}

.order-details .right-box .table {
  border: none;
  font-size: 16px;
  text-align: left;
  color: var(--bodycolor);
  margin: -15px 0px;
}

.order-details .right-box .table del {
  opacity: 0.6;
  font-weight: normal;
}

.order-details .right-box .table tr th,
.order-details .right-box .table tr td {
  padding: 10px 0px;
  border-color: #ddd;
}

.order-details .right-box .table tr:last-child th,
.order-details .right-box .table tr:last-child td {
  border: none;
}

.order-details .right-box .table tr th {
  white-space: nowrap;
  font-weight: 600;
  color: var(--bodycolor);
}

.order-details .right-box .table tr td {
  padding-left: 35px;
}

.order-details .right-box .table .total {
  font-size: 20px;
  font-weight: 600;
}

.order-details .right-box .table .total th {
  color: var(--blackcolor);
}

/* Order Details Work End */

/* About Us Work Start */
.aboutus p {
  font-size: 18px;
  text-align: justify;
}

.aboutus img {
  width: 100%;
}

/* About Us Work End */

/* Contact Us Work Start */
.contactus .section-heading {
  margin-bottom: 10px;
}

.contactus .section-heading + p {
  font-size: 18px;
  margin-bottom: 40px;
}

.contactus .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid var(--bordercolor);
  padding: 30px;
}

.contactus .contact-info .box {
  display: flex;
  gap: 30px;
}

.contactus .contact-info .box i {
  width: 30px;
  text-align: center;
  font-size: 30px;
  margin-top: 5px;
  color: var(--themecolor2);
}

.contactus .contact-info .box .text {
  width: calc(100% - 60px);
}

.contactus .contact-info .box .box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-bottom: 10px;
}

.contactus .contact-info .box p {
  margin: 0px;
  font-size: 18px;
}

/* Contact Us Work End */

/* Thank you work start */
.thankyou .page-title {
  color: var(--themecolor2);
  font-weight: 600;
  margin-bottom: 20px;
}

.thankyou .msg {
  margin-bottom: 40px;
}

.thankyou .sub-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--blackcolor);
}

.thankyou .table {
  margin-bottom: 40px;
}

.thankyou .table tr th {
  width: 90px;
  font-weight: 600;
}

.thankyou .table tr th,
.thankyou .table tr td {
  padding: 0px;
  border: none;
  padding: 5px 0px;
  background-color: transparent;
}

.thankyou .order-summary-box {
  background-color: #eee;
  position: relative;
  margin-left: 50px;
}

.thankyou .zigzag {
  position: absolute;
  left: 0;
  bottom: -23px;
  height: 25px;
  object-fit: cover;
  object-position: top;
}

.thankyou .order-summary-box:after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 25px;
  border-radius: 50px;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background-color: #eee;
}

.thankyou .order-summary-box .box-body {
  padding: 30px;
}

.thankyou .order-summary-box .summary-h {
  color: var(--blackcolor);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.thankyou .order-summary-box hr {
  border-color: #ddd;
  margin: 20px 0px;
  opacity: 1;
}

.thankyou .order-summary-box .summary-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.thankyou .order-summary-box .summary-info .data {
  width: calc(32% - 7.5px);
  position: relative;
}

.thankyou .order-summary-box .summary-info .data:not(:first-child):before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #ddd;
  width: 1px;
  height: 100%;
}

.thankyou .order-summary-box .summary-info .data p {
  margin: 0px;
  font-size: 12px;
  line-break: anywhere;
}

.thankyou .order-summary-box .summary-info .data p b {
  font-weight: 600;
  font-size: 14px;
}

.thankyou .order-summary-box .line {
  border-top: 3px dashed #ddd;
  position: relative;
}

.thankyou .order-summary-box .line:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translate(0, -56%);
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50px;
}

.thankyou .order-summary-box .line:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translate(0, -56%);
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50px;
}

.thankyou .product-added-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.thankyou .product-added-box .item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.thankyou .product-added-box .item:last-child {
  border-bottom: none;
}

.thankyou .product-added-box .img-box {
  width: 50px;
  height: 70px;
  border: 1px solid var(--bordercolor);
  background-color: var(--whitecolor);
  padding: 5px;
  position: relative;
}

.thankyou .product-added-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thankyou .product-added-box .content {
  width: calc(100% - 65px);
}

.thankyou .product-added-box .content p {
  margin: 5px 0px;
  font-weight: 600;
}

.thankyou .product-added-box .content .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.thankyou .product-added-box .content .title {
  font-size: 16px;
  color: var(--blackcolor);
  font-weight: 600;
}

.thankyou .product-added-box .content .heading p {
  margin: 0px;
}

.thankyou .product-added-box .content .price del {
  opacity: 0.6;
  font-weight: normal;
  margin-right: 5px;
}

.thankyou .order-summary-box .table tr:first-child td {
  padding-top: 0px;
}

.thankyou .order-summary-box .table tr:last-child td {
  padding-bottom: 0px;
}

.thankyou .order-summary-box .table tr th:last-child,
.thankyou .order-summary-box .table tr td:last-child {
  text-align: right;
}

.thankyou .order-summary-box .table tr th {
  font-size: 18px;
  font-weight: 600;
  padding: 0px;
}

/* Thank you work end */

/* Policy Page Work Start */
.policy-page {
  font-size: 18px;
}

.policy-page p,
.policy-page ul,
.policy-page ol {
  margin-bottom: 20px;
}

.policy-page .content h1,
.policy-page .content h2,
.policy-page .content h3,
.policy-page .content h4,
.policy-page .content h5,
.policy-page .content h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.policy-page .content b,
.policy-page .content strong {
  font-weight: 600;
}

/* Policy Page Work End */

/* Mobile Footer Work Start */
.mobile-footer {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: -2px;
  z-index: 51;
  background-color: var(--whitecolor);
  border-top: 1px solid #ddd;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.mobile-footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: center;
  text-align: center;
}

.mobile-footer ul li {
  flex: 1 1 0;
  min-width: 0;
}

.mobile-footer ul li a,
.mobile-footer ul li button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 2px;
  font-weight: 500;
  font-size: 10px;
  color: #7f7f7f;
  position: relative;
  background: none;
  border: none;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-footer ul li a i,
.mobile-footer ul li button i {
  font-size: 18px;
  margin-bottom: 2px;
}

.mobile-footer ul li a .badge,
.mobile-footer ul li button .badge {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 9px;
  top: 6px;
  font-size: 12px;
  border-radius: 50px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

.mobile-footer ul li a.active,
.mobile-footer ul li button.active {
  color: var(--blackcolor);
}

/* Mobile Footer Account Dropdown */
.mob-account-dropdown {
  position: relative;
}
.mob-account-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 5px;
  font-weight: 500;
  color: #7f7f7f;
  background: none;
  border: none;
  width: 100%;
  font-size: inherit;
  cursor: pointer;
}
.mob-account-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 150px;
  padding: 8px 0;
  z-index: 100;
}
.mob-account-menu::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  rotate: 45deg;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}
.mob-account-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.mob-account-menu a:hover {
  background: #f5f5f5;
}
.mob-account-menu a i {
  width: 18px;
  text-align: center;
}
.mob-account-dropdown.open .mob-account-menu {
  display: block;
}

.mobile-footer ul li a i,
.mobile-footer ul li button i {
  font-size: 18px;
  margin-bottom: 8px;
}

.search-offcanvas {
  max-height: 86px !important;
  bottom: 75px;
  z-index: 50;
}

.search-offcanvas + .offcanvas-backdrop {
  display: none;
}

.search-offcanvas form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-offcanvas form .form-control {
  width: calc(100% - 61px);
}

.search-offcanvas form .btn {
  width: 51px;
  height: 51px;
  padding: 0px;
}

/* Mobile Footer Work End */

/* Page Banner Work Start */
.page-banner img {
  width: 100%;
  height: auto;
}

/* Page Banner Work End */

/* Empty Cart Work Start */
.empty-cart {
  text-align: center;
}

.empty-cart img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  opacity: 0.8;
}

/* Empty Cart Work End */

/* Sidebar Work Start */
.sidebar-btn {
  padding: 0px;
  font-size: 20px;
  color: var(--bs-nav-link-color);
  margin-right: 15px;
}

.mobile-sidebar {
  width: 300px !important;
}

.mobile-sidebar .logo {
  height: 50px;
  object-fit: contain;
}

.mobile-sidebar .btn-close {
  opacity: 1;
  margin: 0px 0px 0px auto;
  padding: 0px;
  font-size: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-sidebar .offcanvas-body {
  padding: 0px;
}

.mobile-sidebar ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  border-top: 1px solid #d7d7d7;
}

.mobile-sidebar ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid #d7d7d7;
  font-weight: 500;
}

.mobile-sidebar ul li a.active {
  background-color: var(--themecolor2);
  color: var(--whitecolor);
}

.mobile-sidebar ul li a i {
  width: 20px;
  text-align: center;
}

/* Sidebar Work End */

.google-btn {
  padding: 3px 36px 3px 5px;
  background-color: #eee;
  border: 1px solid #ddd;
  margin-left: 5px;
}

.google-btn img {
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50px;
  margin-right: 15px;
}

.google-btn:hover {
  background-color: var(--themecolor2);
  border-color: var(--themecolor2);
  color: white;
}

/* Filter Searchbar Work Start */
.filter-searchbar form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.filter-searchbar .form-control,
.form-select {
  padding: 8.5px 25px;
  background-color: var(--whitecolor);
}

.filter-searchbar .breadcrumb {
  justify-content: center;
}

/* Filter Searchbar Work End */

/* Sportswear Work Start */
.sportswear {
  overflow: hidden;
}

.sportwear-slider .carousel-cell {
  width: 18%;
  height: auto;
  margin-right: 10px;
  background: #eee;
  counter-increment: gallery-cell;
}

.sportwear-slider img {
  width: 100%;
  object-fit: cover;
}

/* Sportswear Work End */

/* Size Chart Modal Work Start */
.size-chart-modal .creative-tabs .nav-link {
  font-size: 12px;
  padding: 10px 20px;
}

/* Size Chart Modal Work End */

/* Whatsapp Work Start */
.whatsapp-icon {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Whatsapp Work End */

.swal-button--confirm {
  background-color: var(--bodycolor) !important;
}

.mid-banner {
  overflow: hidden;
}

.mid-banner .mid-page-banner {
  width: 100%;
  height: auto;
}

.products {
  position: relative;
}

.products .icons-1 {
  position: absolute;
  right: 30px;
  top: 10px;
}

.products .icons-1 img {
  width: 100px;
  height: 100px;
}

.products .icons-2 {
  position: absolute;
  left: 30px;
  top: 10px;
}

.products .icons-2 img {
  width: 100px;
  height: 100px;
}

.product-box .discount-percentage {
  background-color: #1ba5b8;
  /* Teal-like color */
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 3px;
  z-index: 10;
}

.product-box .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 3px;
  z-index: 10;
}

.product-box .box-body {
  text-align: center;
}

.product-box .box-body .price-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}

.product-box .box-body .price-sec .price {
  color: #8e8e8e;
}

.footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 0 40px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  border-top: 10px solid #f3c35f;
}

.footer-title {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-sub-list {
  padding-left: 15px;
  margin-top: 5px;
  list-style: square;
}

.footer-sub-list li a {
  font-size: 14px;
  font-weight: 300;
  /* color: #666; */
}

.footer-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #222;
  padding: 15px 0;
  color: #aaa;
  font-size: 13px;
}

.payment-img {
  max-height: 30px;
}

@media screen and (max-width: 767px) {
  .footer {
    text-align: left;
  }

  .footer .col-6 {
    margin-bottom: 30px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom img {
    margin-top: 10px;
  }
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  transform: scale(1.15);
  color: #fff;
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #1da851;
}

.facebook-btn {
  background-color: #1877F2;
}

.facebook-btn:hover {
  background-color: #0d65d9;
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-btn:hover {
  background: linear-gradient(45deg, #e08025, #d4572e, #c91e38, #b81d5a, #a8147a);
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #fae9e9;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.product-details .product-descrption {
  margin-bottom: 25px;
  margin-top: 25px;
}

.product-details .product-descrption h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.product-details .product-descrption p {
  color: #939598;
}

.product-details .detail {
  margin-bottom: 25px;
}

.product-details .detail h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.product-details .pincode h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.categories .category-tab-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  transition: all 0.5s linear;
}

.categories .category-tab-img:hover {
  transform: scale(1.05);
}

.cat-img {
  overflow: hidden;
  border-radius: 10px;
}

.product-filter h4 {
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.header-dimention {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-bg img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.cart {
  background-color: #fefefe;
}

.cart .table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.cart .table thead th {
  background-color: #f9f9f9;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.cart .table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.cart .product-name {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.cart .product-name img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #eee;
}

.cart .left-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Right Box */
.cart .right-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.cart .box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  padding: 15px;
}

.cart .right-box table {
  width: 100%;
  font-size: 16px;
}

.cart .right-box table th,
.cart .right-box table td {
  padding: 10px 0;
}

.cart .right-box .total {
  border-top: 1px solid #eee;
  font-weight: bold;
}

.modal .modal-body .form-control {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

.my-account-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
}

.myaccount .section-heading {
  font-size: 24px;
}

/* Base form styling */
.custom-contact-form .form-control,
.custom-contact-form textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 14px 18px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #fafafa;
  box-shadow: none;
}

/* Focus effect */
.custom-contact-form .form-control:focus,
.custom-contact-form textarea:focus {
  border-color: var(--themecolor2);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
}

/* Label and input spacing */
.custom-contact-form .form-group {
  margin-bottom: 1.5rem;
}

/* Button styling */

/* Optional heading styles */

.custom-contact-form p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

.pagination .active > .page-link,
.page-link.active {
  background-color: var(--themecolor2);
  border: 1px solid var(--themecolor2);
  color: #fff;
}

.pagination .page-link {
  padding: 10px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.myaccount .wishlist .img {
  height: 200px;
  overflow: hidden;
}

.myaccount .wishlist .img img {
  height: 180px !important;
  object-fit: contain;
  object-position: bottom;
}

/* Hover dropdown open */
.nav-menu .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -5px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-toggle .fa-chevron-down {
  font-size: 0.7rem;
  margin-left: 5px;
}

.dropdown-toggle .fa-chevron-right {
  font-size: 0.7rem;
  float: right;
  margin-top: 4px;
}

.dropdown-submenu.age-submenu:hover > .dropdown-menu {
  display: none !important;
}

.dropdown-submenu.age-submenu > .dropdown-menu {
  display: block !important;
  position: static;
  margin-left: 0;
  box-shadow: none;
  border: none;
  padding-left: 15px;
}

/* === Mega Dropdown Styles (for All Categories) === */
.mega-dropdown {
  position: static !important;
  /* Prevents narrow positioning */
}

.mega-dropdown .dropdown-menu {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  margin-top: 0;
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  /* default hidden */
}

.nav-menu .mega-dropdown > .dropdown-menu {
  display: none;
}

.nav-menu .mega-dropdown:hover > .dropdown-menu {
  display: block !important;
}

/* parent */
.nav-menu .mega-dropdown {
  position: relative;
}

/* dropdown hidden state */
/* .nav-menu .mega-dropdown > .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;

  opacity: 0;
  visibility: hidden;

  transform: translateY(0);
  transition: opacity 0.2s ease;

  pointer-events: none;

  margin-top: 0;
  padding-top: 15px;
} */

/* invisible hover bridge to prevent gap */
.nav-menu .mega-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  bottom: -20px;
}

/* show on hover */
.nav-menu .mega-dropdown:hover > .dropdown-menu,
.nav-menu .mega-dropdown > .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-menu .mega-dropdown,
.nav-menu .mega-dropdown > .dropdown-menu {
  margin: 0;
}

/* Inside mega menu – force grid layout */
/* .mega-menu .row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
} */

.mega-menu .col-md-4 {
  padding: 20px;
  min-width: 250px;
  border-right: 1px solid #eee;
}

.mega-menu .col-md-4:last-child {
  border-right: none;
}

/* Titles */
.mega-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #222;
}

/* Links */
.mega-menu a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.mega-menu a:hover {
  color: #e63946;
}

/* =====> Mega menu fixes — put this AFTER your existing dropdown CSS <===== */

/* anchor container so absolute positioning is relative to the nav */
.nav-menu {
  position: relative;
}

/* clear any inline min-width coming from old markup */
.nav-menu .mega-dropdown > .dropdown-menu {
  min-width: 0 !important;
}

/* target only the mega dropdown so other dropdowns keep current behaviour */
.nav-menu .mega-dropdown > .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  display: none;
  padding: 18px 0 !important;
  background: #fff;
  border-radius: 0;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* show on hover / keyboard focus (accessibility) */
.nav-menu .mega-dropdown:hover > .dropdown-menu,
.nav-menu .mega-dropdown:focus-within > .dropdown-menu {
  display: block !important;
}

/* inner container constrained to site width */
.nav-menu .mega-menu .container {
  max-width: 1200px;
}

/* make columns */
/* .nav-menu .mega-menu .row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0 15px;
} */

/* column visual */
.nav-menu .mega-menu .col-md-4 {
  padding: 12px 18px;
  min-width: 220px;
  border-right: 1px solid #f3f3f3;
}

.nav-menu .mega-menu .col-md-4:last-child {
  border-right: none;
}

/* ensure nested submenu lists inside the mega are visible as simple lists */
.nav-menu .mega-menu .dropdown-submenu > .dropdown-menu {
  display: block !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* link styles inside mega */
.nav-menu .mega-menu a.dropdown-item,
.nav-menu .mega-menu a {
  display: block;
  padding: 3px 0;
  color: #333;
  font-size: 12px;
  text-decoration: none;
}

.nav-menu .mega-menu a:hover {
  color: #e63946;
  text-decoration: none;
}

/* small screen fallback: keep it stacked and avoid absolute positioning */
@media (max-width: 991px) {
  .nav-menu .mega-dropdown > .dropdown-menu {
    position: static !important;
    width: auto !important;
    padding: 8px 12px !important;
    display: none;
  }

  .nav-menu .mega-dropdown:hover > .dropdown-menu,
  .nav-menu .mega-dropdown:focus-within > .dropdown-menu {
    display: block !important;
  }

  .nav-menu .mega-menu .row {
    display: block;
  }

  .nav-menu .mega-menu .col-md-4 {
    border-right: none;
    padding: 8px 0;
  }
}

.hover-effect {
  padding: 15px !important;
  transition: all 0.3s linear;
  border: 1px solid #eee !important;
  border-radius: 12px;
  flex: 0 1 250px;
}

.hover-effect:hover {
  background-color: #f8f8f8;
  border-color: var(--themecolor) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hover-effect.active {
  background-color: #fff0f1;
  border-color: var(--themecolor) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #ed3a4e;
  color: #fff !important;
}

.accordion-body {
  max-height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.accordion-body::-webkit-scrollbar {
  width: 5px;
  /* scrollbar width */
}

.accordion-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* track (background) */
  border-radius: 10px;
}

.accordion-body::-webkit-scrollbar-thumb {
  background: #888;
  /* scroll line color */
  border-radius: 10px;
}

.accordion-body::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* darker on hover */
}

.filters-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.filters-top .filter-btn {
  color: #ed3a4e;
  text-decoration: underline;
}

.filters-top h3 {
  font-size: 20px;
  margin-bottom: 0px;
}

.filter-chip {
  background: #fff;
  border: 1px solid var(--web-clr, #e91e63);
  color: var(--web-clr, #e91e63);
  border-radius: 999px;
  padding: 4px 10px 4px 14px;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.filter-chip:hover {
  text-decoration: none;
  background: var(--web-clr, #e91e63);
  color: #fff;
}

.filter-chip .chip-label {
  margin-right: 6px;
}

.filter-chip .chip-close {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--web-clr, #e91e63);
  color: #fff;
}

.filter-chip:hover .chip-close {
  background: #fff;
  color: var(--web-clr, #e91e63);
}

.selected-filters .clear-filters-link {
  font-size: 13px;
  color: #6b7280;
  text-decoration: underline;
}

.selected-filters .clear-filters-link:hover {
  color: var(--web-clr, #e91e63);
}

.about-body h1,
.about-body h2,
.about-body h3,
.about-body h4,
.about-body h5,
.about-body h6 {
  font-size: 18px;
}

.about-body p {
  font-size: 14px;
  line-height: 1.8;
}

.about-body ul li {
  font-size: 14px;
  line-height: 1.8;
}

.about-image {
  height: 600px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.size-chart-wrapper {
  position: relative;
  display: inline-block;
}

.size-chart-img {
  max-width: 100%;
}

.size-chart-wrapper img {
  width: 100%;
}

.girl-size-wrapper .sc-bottom {
  bottom: 10px;
  left: 104px !important;
}

.girl-size-wrapper .sc-chest {
  top: 89px;
  right: 28% !important;
}

.girl-size-wrapper .sc-waist {
  bottom: 60px;
  right: 188px;
}

.girl-size-wrapper .sc-sleeve {
  top: 43px;
  right: 170px !important;
}

.girl-size-wrapper .sc-inseam {
  bottom: -7px !important;
  right: 306px;
}

.girl-size-wrapper .sc-shoulder {
  top: -3px;
  right: 300px;
}

.girl-size-wrapper .sc-length {
  top: 39px;
  left: 120px;
}

.boy-size-wrapper .sc-length {
  top: 30px;
  right: 55px;
}

.boy-size-wrapper .sc-bottom {
  bottom: 8px;
  right: 30px;
}

.boy-size-wrapper .sc-waist {
  bottom: 65px;
  left: 95px;
}

.boy-size-wrapper .sc-sleeve {
  top: 50px;
  left: 109px;
}

.boy-size-wrapper .sc-chest {
  top: 160px;
  left: 38px;
}

.boy-size-wrapper .sc-inseam {
  bottom: 55px;
  right: 145px;
}
.boy-size-wrapper .sc-shoulder {
  top: 10px;
  left: 200px;
}

.sc-label {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background: #fff;
  padding: 1px 4px;
  border-radius: 4px;
}

.size-chart-list {
  display: none;
}

.btn-group .btn.active {
  background-color: #4aa3df;
  color: #fff;
  border-color: #4aa3df;
}

@media (max-width: 768px) {
  .size-chart-img {
    padding: 35px 0;
  }

  .sc-label {
    font-size: 11px;
  }

  .girl-size-wrapper .sc-sleeve {
    top: 10px;
    right: 15px !important;
  }

  .girl-size-wrapper .sc-waist {
    bottom: 20px;
    right: 26px;
  }

  .girl-size-wrapper .sc-inseam {
    bottom: -15px !important;
    right: 100px;
  }

  .girl-size-wrapper .sc-chest {
    top: 34px;
    right: 30px !important;
  }

  .girl-size-wrapper .sc-shoulder {
    top: -10px;
    right: 110px;
  }

  .girl-size-wrapper .sc-length {
    top: 8px;
    left: -15px;
  }

  .boy-size-wrapper .sc-shoulder {
    top: 50px;
    left: 113px;
  }

  .boy-size-wrapper .sc-sleeve {
    left: 35px;
    top: 68px;
  }

  .boy-size-wrapper .sc-length {
    top: 69px;
    right: -17px;
  }

  .boy-size-wrapper .sc-chest {
    top: 145px;
    left: 12px;
  }

  .boy-size-wrapper .sc-inseam {
    right: 50px;
    bottom: 72px;
  }
  .boy-size-wrapper .sc-waist {
    bottom: 60px;
    left: 55px;
  }

  .boy-size-wrapper .sc-bottom {
    bottom: 20px;
    right: 11px;
  }

  .girl-size-wrapper .sc-bottom {
    bottom: 15px;
    left: -20px !important;
  }

  .product-box .img img {
    height: auto;
  }
}

/* Small mobile: use desktop label positions and scale the whole chart down proportionally */
@media (max-width: 500px) {
  .size-chart-wrapper {
    zoom: 0.85;
  }

  .size-chart-img {
    padding: 0 !important;
  }

  .sc-label {
    font-size: 12px;
  }

  /* Girl labels: position around the image edges (not over the dress) */
  .girl-size-wrapper .sc-shoulder {
    top: -8px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  .girl-size-wrapper .sc-length {
    top: 25px !important;
        left: 30px !important;
        right: auto !important;
  }
  .girl-size-wrapper .sc-sleeve {
    top: 15px !important;
    right: -8px !important;
    left: auto !important;
  }
  .girl-size-wrapper .sc-chest {
    top: 50px !important;
        right: 80px !important;
        left: auto !important;
  }
  .girl-size-wrapper .sc-waist {
    top: 160px !important;
    left: -8px !important;
    right: auto !important;
    bottom: auto !important;
  }
  .girl-size-wrapper .sc-inseam {
    bottom: 25px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  .girl-size-wrapper .sc-bottom {
    bottom: 5px !important;
    left: -8px !important;
    right: auto !important;
  }

  /* Reset boy labels back to desktop positions */
  .boy-size-wrapper .sc-length {
    top: 30px !important;
    right: 55px !important;
    left: auto !important;
  }
  .boy-size-wrapper .sc-bottom {
    bottom: 8px !important;
    right: 30px !important;
    left: auto !important;
  }
  .boy-size-wrapper .sc-waist {
    bottom: 65px !important;
    left: 95px !important;
    right: auto !important;
  }
  .boy-size-wrapper .sc-sleeve {
    top: 50px !important;
    left: 80px !important;
    right: auto !important;
  }
  .boy-size-wrapper .sc-chest {
    top: 155px !important;
    left: 30px !important;
    right: auto !important;
  }
  .boy-size-wrapper .sc-inseam {
    bottom: 55px !important;
    right: 145px !important;
    left: auto !important;
  }
  .boy-size-wrapper .sc-shoulder {
    top: 5px !important;
    left: 175px !important;
    right: auto !important;
  }
}

@media (max-width: 440px) {
  .size-chart-wrapper {
    zoom: 0.75;
  }
}

@media (max-width: 390px) {
  .size-chart-wrapper {
    zoom: 0.65;
  }
}

@media (max-width: 350px) {
  .size-chart-wrapper {
    zoom: 0.55;
  }
}
