* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background-color: #F6F3EF;
  font-weight: 400;
  direction: rtl;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F6F3EF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.perfume-bottle-wrapper {
  position: relative;
  width: 150px;
  height: 180px;
  margin: 0 auto;
}

.perfume-bottle {
  width: 100%;
  height: 100%;
}

.nozzle-head {
  animation: pressNozzle 2s infinite ease-in-out;
}

.spray-mist circle {
  opacity: 0;
  animation: sprayAnimation 2s infinite ease-out;
}

.spray-mist circle:nth-child(1) {
  animation-delay: 0.5s;
}

.spray-mist circle:nth-child(2) {
  animation-delay: 0.55s;
}

.spray-mist circle:nth-child(3) {
  animation-delay: 0.6s;
}

.spray-mist circle:nth-child(4) {
  animation-delay: 0.65s;
}

.spray-mist circle:nth-child(5) {
  animation-delay: 0.7s;
}

.spray-mist circle:nth-child(6) {
  animation-delay: 0.75s;
}

.spray-mist circle:nth-child(7) {
  animation-delay: 0.8s;
}

.spray-mist circle:nth-child(8) {
  animation-delay: 0.85s;
}

.spray-mist circle:nth-child(9) {
  animation-delay: 0.9s;
}

.loading-text {
  margin-top: 20px;
  font-size: 24px;
  letter-spacing: 8px;
  color: #222;
  font-weight: 500;
  animation: pulseText 2s infinite ease-in-out;
}

@keyframes pressNozzle {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(3px);
  }

  50% {
    transform: translateY(0);
  }
}

@keyframes sprayAnimation {
  0% {
    transform: translateX(0) scale(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateX(40px) translateY(var(--y-offset, 0px)) scale(1.5);
    opacity: 0;
  }
}

/* Add varied movement to spray circles */
.spray-mist circle:nth-child(3n) {
  --y-offset: -10px;
}

.spray-mist circle:nth-child(3n+1) {
  --y-offset: 10px;
}

.spray-mist circle:nth-child(3n+2) {
  --y-offset: 0px;
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 0.5;
    letter-spacing: 8px;
  }

  50% {
    opacity: 1;
    letter-spacing: 12px;
  }
}

/* Search Overlay Styles */
.search-full-width {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #F6F3EF;
  z-index: 999;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.search-full-width.active {
  height: 120px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.search-container-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 2px solid #222;
  padding: 10px 0;
}

.search-input-full {
  width: 90%;
  background: transparent;
  border: none;
  font-size: 28px;
  /* font-family: 'Cormorant Garamond', serif; */
  color: #222;
  padding: 5px 0;
}

.search-input-full:focus {
  outline: none;
}

.search-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.search-close:hover {
  transform: rotate(90deg);
}

.search-close img {
  width: 20px;
}


a img {
  border: none;
  text-decoration: none;
  outline: none;
}

a {
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-decoration: none;
}

/*
a:hover{color:var(--secondary-color)}
*/
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  font-size: 16px;
  color: #252525;
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ol,
ul,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

input:focus {
  outline: none;
}


textarea {
  outline: none;
  resize: none;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.p0 {
  padding: 0px;
}

:root {
  --primary-color: #B72629;
  --secondary-color: #f7f8fa;
}

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

::-webkit-input-placeholder {
  /* Edge */
  color: rgb(34, 34, 34, .7);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(34, 34, 34, .7);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

::placeholder {
  color: rgb(34, 34, 34, .7);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.btn-theme {
  background-color: #9F86D9;
  border: 1px solid #9F86D9;
}

.w100 {
  width: 100%;
}

.container {
  max-width: 1350px;
  width: 96%;
}



.radius-20-10 {
  border-radius: 20px;
}

/*header .left-blk{padding-top:20px;padding-bottom:20px;}*/
header {
  width: 100%;
  /* position: absolute; */
  z-index: 55;
  background-color: #F6F3EF;
  padding-top: 30px;
  padding-bottom: 30px;
  /* top: 20px; */
}

/* .affix {
  position: fixed;
  z-index: 99;
  top: 0px;
} */

header .searchblock {
  width: calc(100% - 45%);
}

header .search-bar {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 10px;
  padding: 10px 90px 10px 10px;
}

header .search_btn {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 60px;
  height: 30px;
  border: none;
  border-radius: 50px;
  background-color: #FFA500;
}

header .search-group {
  position: relative;
}

header .right-blk ul li {
  display: inline-block;
}

.search_btn i {
  color: #fff;
  font-size: 16px;
}

/* header .inner-wrap {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
} */


.top-bar .container,
.banner-sec .container,
header .container {
  max-width: 1350px;
}

.down_arrow {
  font-size: 12px;
  margin-right: 5px;
}

.menu-ul li a {
  padding: 10px 15px;
}

.right-blk li a {
  display: block;
  padding-left: 7px;
  padding-right: 7px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.right-blk li a img {
  width: 25px;
}

/* 
.right-blk li:last-child a img {
  width: 30px;
} */

.custom_ic {
  position: relative;
}

.cartCout {
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50px;
  background-color: #B72629;
  display: block;
  position: absolute;
  top: -10px;
  left: 25px;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.cart-amount {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  margin-right: 7px;
  top: 3px;
  position: relative;
}

header .inner-wrap .logo a {
  display: block;
}

.bottom-fixed,
.empty-space {
  display: none;
}

.bottom-fixed ul {
  display: flex;
  justify-content: space-between;
}

/* .bottom-fixed ul li {
  width: 25%;
  text-align: center;
} */

.close-ic img {
  width: 35px;
}

.right-blk .dropdown-menu {
  /*width: 200px;*/
  border-top: 5px solid var(--primary-color);
  padding-top: 5px;
  padding-top: 5px;
}

.right-blk .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.right-blk .dropdown-menu li {
  display: block;
}

.right-blk .dropdown-toggle::after {
  display: none;
}

.right-blk .dropdown-menu li a {
  color: #000;
  padding: 5px 15px;
}


.right-blk .dropdown-menu li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.right-blk .dropdown-menu li a.active{background-color: var(--primary-color);color: #fff;}

@keyframes slideup {
  from {
    transform: translateY(-20%);
  }

  to {
    transform: translateY(0);
  }
}

.title {
  font-weight: 500;
  color: #222222;
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.custompad {
  padding-top: 40px;
  padding-bottom: 40px;
}

.custompad-2 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.theme-color {
  color: var(--primary-color) !important;
}

.search-dropdown .form_fi {
  border: none;
  border-bottom: 1px solid #222222;
  border-radius: 0px;
  padding-bottom: 7px;
  padding-left: 30px;
}

.btn-search {
  position: absolute;
  left: 0px;
  background-color: transparent;
  padding: 0;
  border: 0;
  top: -2px;
}

.fa-search {
  width: 20px;
}

/* .logo img {
  width: 350px;
} */

.banner-sec {
  position: relative;
}

.logo a img {
  width: 180px;
}

.mySwiperBanner .swiper-slide {
  overflow: hidden;
}

/* .mySwiperBanner .swiper-slide img {
  transform: scale(1.15);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mySwiperBanner .swiper-slide-active img {
  transform: scale(1);
} */

.mySwiperBanner .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  opacity: 1;
  margin: 0 4px !important;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mySwiperBanner .swiper-pagination-bullet-active {
  background-color: #222;
  width: 30px;
  height: 3px;
}

/* Product Slider Styles */
.product-card {
  transition: all 0.3s ease;
}

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

.img-box img {
  transition: transform 0.5s ease;
}

.img-box {
  background-color: #f7f7f7;
  overflow: hidden;
  position: relative;
  text-align: center;
  /* Ensure image is centered */
}

.badge-custom {
  position: absolute;
  top: 20px;
  left: 20px;
  border: 1px solid #B72629;
  color: #B72629;
  padding: 3px 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  z-index: 10;
  border-radius: 5px;
  background-color: #F9EFED;
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn img {
  width: 18px;
}

.product-title {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  font-size: 20px;
  color: #000;
  font-weight: normal;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
}

.price del {
  color: grey;
  font-weight: 400;
  margin-right: 10px;
  font-size: 16px;
  text-decoration-color:#B72629; 
  text-decoration-thickness: 2px;
}

.btn-cart {
  background-color: #B72025;
  color: #fff;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
  display: block;
  border: none;
  transition: all 0.3s ease;
}

.btn-cart:hover {
  background-color: #8f191d;
  color: #fff;
}


.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #000 !important;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1) !important;
  height: 3px !important;
  position: relative !important;
  margin-top: 20px;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.view-all-btn a {
  color: #222222;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.strip-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}


.strip-item .content h4 {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  letter-spacing:1px;
  font-weight: 700;
  color: #000;
}

.strip-section .swiper {
  /*border-bottom: 1px solid #222222;*/
  padding-top: 20px;
  padding-bottom: 20px;
}

.strip-section .wrap .icon {
  max-width: 40px;
}

.price-ic img {
  width: 24px;
}

.striked-price-ic img {
  width: 24px;
  opacity: 0.5;
}

.price-ic {
  position: relative;
  top: -2px;
  font-style: normal;
}

/* Cart Sidebar Styles */
.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 400px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-sidebar .cart-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar .cart-sidebar-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.cart-sidebar .close-cart-sidebar {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}

.cart-sidebar .close-cart-sidebar:hover {
  color: #000;
}

.cart-sidebar .cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-sidebar .cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.cart-sidebar .cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-sidebar .cart-item-image {
  width: 80px;
  flex-shrink: 0;
}

.cart-sidebar .cart-item-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  background: #f9f9f9;
}

.cart-sidebar .cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-sidebar .cart-item-details h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
  line-height: 1.4;
}

.cart-sidebar .cart-item-details .variant {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cart-sidebar .price-qty {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar .cart-price {
  font-size: 16px;
  font-weight: 600;
  /* Approx Gold Color */
}

.cart-sidebar .qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 2px 8px;
  margin-top: 5px;
}

/* Scoped button styles for sidebar */
.cart-sidebar .qty-control .qty-btn {
  background: none;
  border: none;
  font-size: 12px;
  cursor: pointer;
  color: #666;
  padding: 2px 5px;
}

.cart-sidebar .qty-control input {
  width: 30px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  pointer-events: none;
  background: transparent;
}

.cart-sidebar .item-details-link {
  font-size: 12px;
  color: #222;
  text-decoration: underline;
  transition: color 0.2s;
}

.cart-sidebar .item-details-link:hover {
  color: #C19D60;
}

.cart-sidebar .remove-item {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s;
}

.cart-sidebar .remove-item:hover {
  color: #B72629;
  /* Primary Red */
}

.cart-sidebar .cart-item-tag {
  position: absolute;
  top: 0;
  left: -10px;
  background: #C19D60;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-weight: 600;
  letter-spacing: 1px;
}

.cart-sidebar .cart-sidebar-footer {
  padding: 20px;
  background: #fdfdfd;
  border-top: 1px solid #eee;
}

.cart-sidebar .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.cart-sidebar .cart-total small {
  font-size: 12px;
  color: #888;
  font-weight: 400;
  margin-right: 5px;
}

/* .cart-sidebar .total-amount {
  color: #C19D60;
} */

.cart-sidebar .cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-sidebar .btn-view-cart {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
}

.cart-sidebar .btn-view-cart:hover {
  background: #b08d55;
  color: #fff;
  border-color: #b08d55;
}

.cart-sidebar .btn-continue-shopping {
  background: transparent;
  color: #222;
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.cart-sidebar .btn-continue-shopping:hover {
  border-color: #222;
}

@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
  }
}

.striked-price-ic {
  position: relative;
  top: -2px;
  font-style: normal;
}

.fa-shopping-bag {
  position: relative;
  top: -3px
}

.icon {
  max-width: 35px;
}

/* .category-links {
  font-size: 20px;
  font-weight: 600;
} */

.category-links {
  margin-right: auto;
}

.category-links ul li {
  display: inline-block;
  margin-right: 20px;
  /* font-size: 18px;
  font-weight: 600; */
}

.category-links ul li a,
.category-links ul li .nav-link {
  color: #222222;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.category-links ul li a.active,
.category-links ul li .nav-link.active {
  color: #B72025;
  border-bottom: 1px solid #B72025;
}

.category-links ul li .nav-link:hover {
  color: #B72025;
  /* Optional hover effect */
}

/* Wishlist Animations */
.wishlist-btn.active {
  background-color: #B72629;
}

.wishlist-btn.active img {
  filter: brightness(0) invert(1);
}

.wishlist-btn.animating {
  animation: wishlistPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes wishlistPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.cartCout.pulse-badge {
  animation: badgePulse 0.5s ease;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
    background-color: #f00;
  }

  100% {
    transform: scale(1);
  }
}

.search-btn {
  color: #fff;
  border: none;
  background-color: var(--primary-color);
  padding: 7px 15px;
}

.bg-image {
  background-image: url(../images/perfume_bg.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Media Section Styles */
.media-section {
  background-color: #0b0b0b;
  overflow: hidden;
}

.arrow-box {
  display: flex;
  gap: 0px;
  z-index: 10;
}

.arrow-box button {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-box button:hover {
  transform: scale(1.1);
}

.media-swiper {
  padding: 20px 0;
}

.media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}

.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.7; */
  transition: opacity 0.5s ease;
}

.media-swiper .swiper-slide-active .media-card {
  border: 2px solid #b72629;
  /* box-shadow: 0 10px 30px rgba(183, 38, 41, 0.3); */
}

.media-swiper .swiper-slide-active video {
  opacity: 1;
}

.media-swiper .swiper-slide {
  transition: all 0.5s ease;
  transform: scale(0.9);
  /* opacity: 0.5; */
}

.media-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
  transform: scale(0.8);
  z-index: 1;
}

.media-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  margin-top: 30px;
}

.ourhappy-customers .testi-card {
  padding: 130px 30px 30px;
  border-radius: 20px;
  background-color: #E5E4E2;
  background-image: url(../images/testi-icon.png);
  background-repeat: no-repeat;
  background-position: right 30px top 30px;
}

.ourhappy-customers .testi-card p {
  font-size: 20px;
  font-weight: 400;
  color: #222222;
}

.ourhappy-customers .testi-footer {
  margin-top: 50px;
}

.ourhappy-customers .testi-footer i img {
  width: 70px;
  margin-right: 20px;
  border-radius: 50px;
}

.ourhappy-customers .testi-footer h5 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.ourhappy-customers .testi-footer p {
  color: rgb(0, 0, 0, .5);
  margin-bottom: 0px;
  font-size: 14px;
  text-transform: uppercase;
}

.ourhappy-customers .arrow-box {
  top: -10px;
  position: relative;
}

/* Site Footer Styles */
.site-footer {
  background-color: rgb(183 32 37 / 94%);
  color: #FFFFFF;
  padding: 40px 0 0px 0;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  margin-bottom: 20px;
}


.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* .social-links .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links .social-icon:hover {
  background-color: #FFFFFF;
  color: #4C3939;
  border-color: #FFFFFF;
  transform: translateY(-2px);
} */

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

.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-nav li a:hover {
  opacity: 0.7;
  color: #000000;
}

.footer-ghost-text {
  width: 100%;
  margin-top: 40px;
  position: relative;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
  /* opacity: 0.1; */
}

.ghost-text-scroll {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.ghost-text-scroll img {
  width: auto;
  max-width: none;
  height: auto;
  display: block;
  padding-right: 100px;
  /* Adjust spacing between loops */
}

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

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

.addSwiper .swiper-pagination {
  display: none;
}

.empty-space {
  height: 80px;
}

.login-modal .modal-content {
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
}

.login-modal .modal-header {
  border-bottom: none;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}

.login-modal .modal-body {
  padding: 0;
  text-align: center;
}

.login-modal .modal-body-content {
  padding: 30px;
  background: #f2f2f2;
}

.login-modal .login-header {
  color: #1E1E1E;
  text-align: left;
  font-size: 30px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 10px;
}

.login-modal .login-subtext {
  color: #1E1E1E;
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.5;
}

.login-modal input.form-control {
  border-radius: 8px;
  /* margin-bottom: 15px; */
  padding: 10px;
}

.login-modal .btn-login {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  width: 100%;
  border-radius: 8px;
  height: 50px;
  font-size: 20px;
}

.login-modal .social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.login-modal .social-login button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
}

.login-modal .form-control {
  color: #1e1e1e;
  text-align: left;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.4;
  background-color: #fff;
  height: 50px;
}

.form-control-label {
  color: #222222;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  /* margin-bottom:10px; */

}

.login-modal .top-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.login-modal .top-icons img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* otp */

.otp-wrapper>h2 {
  color: #1e1e1e;
  text-align: left;
  font-size: 30px;
  line-height: 150%;
  font-weight: 600;
  margin-bottom: 10px;
}

.otp-wrapper p {
  color: #1e1e1e;
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.5;
}

.otp-wrapper .resend {
  font-size: 14px;
  color: rgb(34, 34, 34, .5);
  cursor: pointer;
  margin-right: 5px;
}

.resend span {
  color: var(--primary-color)
}

.back-login {
  color: #1e1e1e;
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.5;
  width: 100%;
  display: flex;
  margin-bottom: 14px;
}

.back-login:hover {
  text-decoration: underline;
}

.register {
  text-align: right;
  color: rgba(30, 30, 30, 0.5);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  width: 100%;
}

.register>span {
  font-size: 14px;
  color: #f37021;
  cursor: pointer;
  margin-right: 5px;
}

.btn-closeme {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 44;
  padding: 0px;
  background-color: transparent;
  border: none;
  opacity: 0.5;
}

.password-toggle {
  position: absolute;
  top: 75%;
  right: 15px;
  transform: translateY(-75%);
  cursor: pointer;
  color: #6c757d;
}

.password-toggle3,
.password-toggle4 {
  position: absolute;
  top: 58%;
  left: 15px;
  transform: translateY(-75%);
  cursor: pointer;
  color: #6c757d;
}

.fg-pwd {
  color: rgb(30, 30, 30, .5);
  margin-bottom: 10px;
  text-decoration: underline;
}

.fg-pwd:hover {
  text-decoration: underline;
}

.clikregister {
  font-size: 14px;
  color: rgb(30, 30, 30, .5);
}

.login-modal .modal-dialog {
  max-width: 600px;
}

.backtome {
  color: rgb(30, 30, 30, .5);
  font-size: 16px;
  margin-bottom: 14px;
}

.login-with {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}

.login-with::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgb(34, 34, 34, .5);
}

.login-with span {
  color: rgb(34, 34, 34, .5);
  background-color: #f2f2f2;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.fa-whatsapp {
  color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.fa-google {
  color: var(--primary-color);
}

/* .whtsapp,
.with-email {
  display: flex;
  justify-content: center;
  cursor: pointer;
} */

.login-with-icon i {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  /* keep items in one line */
  overflow-x: auto;
  /* enable horizontal scroll */
  white-space: nowrap;
  /* prevent wrapping */
  scrollbar-width: thin;
  /* Firefox thin scrollbar */
  align-items: center;
}

.bread-crumb-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
}

.breadcrumb li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgb(34, 34, 34, .5);
}

.breadcrumb-item.active {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #000;
}

.breadcrumb-item+.breadcrumb-item::before {
  font-size: 18px;
}

.inner-header {
  /*box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);*/
  background-color:#fff;
}

.product-top h1 {
  font-weight: 400;
  font-size: 36px;
  font-weight: normal
}
.sort-by{max-width:300px;float:right;position:absolute;left:0px;top:-70px;}
.sort-by label {
  color: #B72629;
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
  min-width: 75px;
  text-align: left;
}

.sort-by .form-select {
  background-color: transparent;
  border: 1px solid rgb(0, 0, 0, .5);
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  /*max-width: 180px;*/
  height: 45px;
  border-radius: 50px;
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 30px 0 0;
}

.page {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #222222;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

/* active page */
.page.active {
  background: #222222;
  color: #fff;
  border-color: #222222;
}

/* hover effect */
.page:hover:not(.active) {
  background: #222222;
  color: #fff;
}

/* prev / next special styling */
.page.prev,
.page.next {
  border: none;
}

.custom-select {
  border-radius: 7px;
  border: 1px solid rgb(0, 0, 0, .5);
  padding: 10px;
  background-color: transparent;
}

/* Active Filters */
.active-filters {
  gap: 10px;
}

.filter-chip {
  background-color: #e0e0e0;
  color: #333;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-chip:hover {
  background-color: #d0d0d0;
}

.filter-chip i {
  font-size: 12px;
  color: #555;
  cursor: pointer;
}

.filter-chip i:hover {
  color: #000;
}

.clear-all-filters {
  color: #b72629;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.clear-all-filters:hover {
  color: #8a1c1e;
  text-decoration: none;
}

.filter-container .col-blk2 {
  width:25%;
  min-width: 0;
  margin-left:15px;
  font-size:16px;
}
.filter-container .col-blk {margin-left:15px;font-size:16px;}
.filter-container .col-blk2:last-child{margin-left:0px;}
.filter-container {
  display: flex;
  gap: 0px;
  width: 100%;
}

.product-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.product-section .product-col {
  margin-bottom: 10px;
}

.product_cat {
  font-size: 16px;
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}


.product_description {
  padding-left: 20px;
}

.product_description .stars {
  font-size: 14px;
}

.stars i {
  color: #FFA500;
}

.tot-reviews {
  color: #222222;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.custom-ic .icon-h {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50px;
  background-color: #ffffff;
  display: inline-block;
  color: #222222;
  font-size: 24px;
}

.custom-ic {
  gap: 10px;
  display: flex;
}

.custom-ic li {
  display: inline-block;
}

.price-blk p {
  color: #222222;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 0px;
}

.price-blk .withtax {
  color: rgb(34, 34, 34, .5);
  font-size: 16px;
  font-weight: normal;
  font-family: "Inter", sans-serif;
}

/* .mrp-price {
  margin-top: 11px;
  margin-right:10px;
} */

.mrp-price p {
  color: rgb(34, 34, 34, .5);
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-decoration: line-through;
}

.mrp-price span {
  color: #008000;
}

.product_description h3 {
  font-size: 30px;
  font-weight: normal;
  line-height: normal;
}

.radio-wrapper-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-wrapper {
  flex: 1 1 calc(100% / 7 - 8px);
  /* Divides each item by 7 with some spacing */
  max-width: calc(100% / 7 - 8px);
  /* Ensures each item stays within container */
  box-sizing: border-box;
}

.radio-wrapper label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  /* Adjust height as needed */
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.radio-wrapper input[type="radio"] {
  display: none;
}

.radio-wrapper input[type="radio"]:checked+label {
  border-color: #ff406c;
}

.radio-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.select-size {
  font-size: 16px;
  font-weight: 400;
  color: rgb(34, 34, 34, .5);
  margin-top: 25px;
  font-family: "Inter", sans-serif;
}

.select-size span {
  font-weight: 700;
  font-size: 16px;
  color: rgb(34, 34, 34, 1);
  font-family: "Inter", sans-serif;
}

.size-guide {
  font-size: 16px;
  /* text-decoration: underline; */
  cursor: pointer;
  color: #000;

}


.size-guide:hover {
  color: #000;
}

.size-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.size-container label {
  width: auto;
}

.size-button {
  position: relative;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  border: 1px solid #CCCCCC;

}

.size-button.selected {
  border: 1px solid #B72629;
}

.size-container input[type="radio"] {
  display: none;
  /* Hide the actual radio button */
}

/* .size-container input[type="radio"]:checked+.size-button {
  border-color: var(--primary-color);
  background-color:rgb(67, 160, 71,.1);
  color: var(--primary-color);
} */

.item-left {
  position: absolute;
  bottom: -25px;
  color: #FF0000;
  /* Red color for low stock */
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.quantity-container .input-group {
  width: 130px;
  height: 55px;
  flex-direction: row-reverse;

}


.quantity-input {
  text-align: center;
  padding: 0px;
}

.quantity-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-blk {
  width: calc(100% - 130px);
  gap: 12px;
}

.quantity-container .input-group {
  border-radius: 5px;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
}

.quantity-container .input-group .btn {
  width: 40px;
  height: 55px;
  padding: 0px;
  border: none;
  font-size: 20px;
  color: #222222;
  font-weight: 500;
}

.btn-add {
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 7px;
  text-align: center;
  width: 50%;
}

.add-cart {
  background-color: #B72629;
  color: #fff;
}
.add-cart:hover {
  color: #fff;
}
.add-cart i {
  color: #fff;
}

.buy-now {
  color: #B72629;
  border: 1px solid #B72629;
}

.quantity-container .input-group .decrement-btn,
.quantity-container .input-group .increment-btn {
  font-size: 13px
}

.quantity-container .input-group .btn:hover {
  background-color: transparent;
}

.quantity-input {
  text-align: center;
  font-size: 20px;
  border: none;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #222222;
}

/* .btn-blk {
  width: calc(100% - 112px);
} */



.btn-buy-now:hover {
  color: #fff;
}

/* .quantity-container .input-group .btn:hover {
  background-color: transparent;
  color: #222222;
} */

.btn-add-to-bag,
.btn-buy-now {
  font-size: 12px;
  height: 40px;
}

.nutritional-box {
  background: #f5f5f5;
  padding: 20px 20px;
  border-radius: 10px;
}

.h16 {
  font-size: 16px;
  font-weight: 500;
}

.nutritional-card {
  background: #fff;
  border-radius: 0.75rem;
  /* rounded-3 */
  padding: 1rem;
  text-align: center;
}

.nutritional-label {
  font-size: 16px;
  font-weight: 300;
}

.nutritional-value {
  font-size: 24px;
  font-weight: 500;
}

.enter_pincode {
  width: 100%;
}

.pin-holder {
  height: 50px;
  border: 1px solid #DFDFDF;
  padding: 0px 20px;
  border-radius: 5px;
  width: 100%;
}

.check-pin {
  color: #FF406C;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  right: 20px;
  top: 15px;
}

.check-pin a {
  color: var(--primary-color);
}

.delivery-option h4 {
  min-width: 190px;
  margin-bottom: 5px;
}

.delivery-option {
  padding-left: 3%;
}

.delivery-option p {
  font-size: 14px;
  color: rgb(34, 34, 34, 0.5);
}

.delivery-location {
  margin-bottom: 30px;
}

.delivery-container p {
  font-size: 16px;
  color: rgb(34, 34, 34, 0.5);
  line-height: normal;
  margin-bottom: 0px;
}

.delivery-location p {
  font-size: 14px;
  color: rgb(34, 34, 34, 0.5);
}


.all-flavors.style-2 h2 {
  font-size: 20px;
}


.specs-table {
  width: 100%;
  border: none;
}

.specs-table th {
  font-weight: 500;
  color: #222222;
  width: 30%;
  padding: 8px 0;
  border: none;
  font-size: 16px;
}

.specs-table td {
  font-weight: 300;
  color: #222222;
  padding: 8px 0;
  border: none;
}

.user-review-post {
  display: flex;
  justify-content: space-between;
}

.custom-tabs .nav-link.style-2 {
  font-size: 20px;
}

.trythis-combo {
  padding-top: 30px;
  padding-bottom: 30px;
}

.trythis-combo .tab-pane .row {
  margin-left: -50px;
  margin-right: -50px;
}

.trythis-combo .tab-pane .col-blk {
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  margin-top: 15px;
}

.trythis-combo .tab-pane .col-blk::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: url(../images/combo-plus.png);
  background-position: center;
  right: -15px;
  background-repeat: no-repeat;
  z-index: 5555;
  width: 30px;
  height: 30px;
  margin: auto;
}

.trythis-combo .tab-pane .col-blk:last-child::after {
  display: none;
}

.addto-cart-combo {
  padding: 20px 20px;
  background-color: rgb(67, 160, 71, .1);
  border-radius: 15px;
}

.about-product p {
  color: rgb(34, 34, 34, .5)
}

.item-count {
  font-size: 20px;
  color: rgb(34, 34, 34, .7);
  font-weight: 400;
}


.cart-container {
  gap: 0px;
  padding: 0px;
}


/* .cart-items {
  margin-bottom: 30px;
} */

.cart-items .cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cart-items:last-child {
  margin-bottom: 0px;
}

.cart-item img:not(.price-ic img) {
  width: 130px;
  height: auto;
  margin-left: 20px;
  border-radius: 10px;
}


/* .item-details {
  flex: 1;
  width: calc(100% - 150px - 15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.item-details .color {
  font-size: 14px;
  font-weight: 400;
}

.item-details .color span {
  font-weight: 600;
  margin-right: 18px;
  color: rgb(34, 34, 34, 0.8);
}

.item-details .size {
  font-size: 14px;
}

.item-details .size span {
  color: rgb(34, 34, 34, 0.8);
  font-weight: 600;
  margin-right: 25px;
}

.item-details h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-items .cart-price {
  font-weight: normal;
  color: #222222;
  font-size: 30px;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: end;
}

.cart-items .original-price {
  text-decoration: line-through;
  color: rgb(34, 34, 34, 0.5);
  margin-right: 10px;
  font-size: 16px;
  font-weight: normal;
}

.cart-items .discount {
  color: #008000;
  margin-right: 5px;
  font-size: 16px;
  font-weight: 400;
}

.cart-items .qty {
  margin-top: 5px;
  color: rgb(34, 34, 34, .7);
  font-size: 20px;
  font-family: "Inter", sans-serif;

}

.cart-items .item-options {
  margin-top: 10px;
  text-align: right;
}

.cart-items .item-options a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.cart-items .delivery {
  margin-right: 10px;
  color: #666;
  font-size: 0.9em;
}

.cart-summary {
  border: 1px solid #777777;
  padding: 20px;
  border-radius: 10px;
}

.cart-summary h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 15px;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  color: #222222;
}

.cart-summary p span {
  font-weight: 500;
}

.cart-summary.style-2 {
  height: 100%;
}

.cart-summary.style-2 p {
  margin: 15px 0px;
}

.cart-summary.style-2 p.grand-total {
  font-size: 20px;
}

.cart-summary.style-2 p.grand-total span {
  font-size: 24px;
}

.disc-color {
  color: #008000;
}

.cart-summary .total {
  font-weight: 600;
  font-size: 18px;
  color: #222222;
}

.cart-summary .total span {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.cart-summary .free_delivery_tip {
  color: #008000;
}

.remove-cart {
  font-size: 16px;
  text-decoration: underline;
  color: #222222;
  margin-right: 15px;
}

.place-order {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  display: block;
  border-radius: 5px;
}

.place-order:hover {
  color: #fff;
}

.quantity-container2 {
  margin-right: 30px;
}

.quantity-container2 .input-group {
  width: 70px;
}


.quantity-input {
  text-align: center;
  padding: 0px;
}

.quantity-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}


.quantity-container2 .input-group {
  border-radius: 0px;
}

.quantity-container2 .input-group .btn {
  width: 20px;
  height: 30px;
  padding: 0px;
  border: none;
  background-color: #D0D0D0;
}

.quantity-container2 .quantity-input {
  text-align: center;
  font-size: 14px;
  border: none;
  background-color: #ebebeb;
}

.quantity-container label {
  font-size: 16px;
  color: #222222;
  font-weight: 400;
  margin-top: 3px;
}

.cart-right {
  padding-left: 20px;
}

.cart-right h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.cart-right h4 span {
  font-weight: 400;
  color: rgb(34, 34, 34, .5);
  font-size: 16px;
}

/* .minus-margin {
  margin-left: -20px;
  margin-right: -20px;
} */

.address-option {
  border: 1px solid rgb(119, 119, 119, .5);
  padding: 20px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.address-option input[type="radio"] {
  margin-left: 10px;
}

.address-option label {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}

.address-option p {
  font-size: 14px;
  color: #1E1E1E;
  margin-top: 5px;
  margin-bottom: 0px;
}

.address-tag {
  background-color: rgb(183, 38, 41, .2);
  color: #222222;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 50px;
  display: inline-block;
}

.or-divider {
  text-align: center;
  color: #FF406C;
  font-weight: 600;
  margin: 20px 0;
}

.or-divider span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: rgb(34, 34, 34, .1);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  color: #222222;
}

.address_wrap {
  padding: 20px 20px;
  border: 1px solid #DFDFDF;
  border-radius: 20px;
}

.address_wrap .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.address_wrap .form-group input,
.address_wrap .form-group textarea {
  flex: 1;
  padding: 12px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9em;
  resize: none;
  width: 100%;
}

.address-type {
  font-weight: 500;
  margin-top: 20px;
  font-size: 16px;
  color: rgb(34, 34, 34, 0.8);
}

.address-type-options {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.address-type-options label,
.default-address label {
  font-weight: 400;
  color: rgb(34, 34, 34, .5);
  font-size: 14px;
}

.edit_field {
  color: var(--primary-color);
  font-size: 16px;
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.buttons {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.buttons button {
  /* padding: 10px 20px; */
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.cancel-btn {
  color: black;
  background-color: transparent;
  margin-left: 1rem;
  height: 40px;
  line-height: 40px;
  text-align: center;

}

.save-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  min-width: 140px;
  border-radius: 5px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.add_address h4,
.price-details h4 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.price-details h4 span {
  font-weight: 300;
}

.select-address .modal-dialog {
  max-width: 1000px;
}

.f-24 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.c_close {
  background-color: transparent;
  border: none;
  padding: 0;
}

.select-address .modal-body {
  padding: 30px 30px;
}

.select-address .address-option {
  background-color: #fff;
  padding-right: 50px;
}

.select-address .modal-content {
  background-color: #F4F4F4;
  border-radius: 30px;
}

.c_radio {
  position: absolute;
  right: 15px;
  width: 20px;
  height: 20px;
  background-color: #F4F4F4;
}

.edit_pen {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50px;
  top: 15px;
  color: #222222;
  font-size: 8px;
  background-color: #F2F2F2;
  text-align: center;
}

.address-option.selected {
  border: 1px solid #B72629;
  background-color: rgb(183, 38, 41, .1);
}

.address-option.selected .edit_pen {
  background-color: #fff;
}

.wallet-points {
  border: 1px solid #f0f0f0;
  padding: 20px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.custom-check {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.wallet-points label {
  font-size: 18px;
  font-weight: 500;
}

.wallet-points p {
  padding-left: 27px;
}

.wallet-amount {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
}

.payment-container {
  border-radius: 10px;
}

.payment-container h6 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.payment-tab ul li a {
  font-size: 14px;
  color: #222222;
}

.payment-tab .nav-link {
  border-radius: 0;
  padding: 15px;
  text-align: left;
  /* border: 1px solid #ddd; */
  margin-bottom: 5px;
  font-weight: 400;
  width: 100%;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 0px;
  background-color: #F2F2F2;
  color: rgb(34, 34, 34, .5);
  align-items: center;
}

.payment-tab .nav-link.active {
  background: #f8f9fa;
  border-left: 5px solid var(--primary-color);
  color: #000;
}

.payment-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.payment-box h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.payment-box p {
  font-size: 14px;
  color: rgb(34, 34, 34, .5);
}

.payment-box input.form-control {
  border-radius: 5px;
}

.btn-verify {
  background-color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  height: 50px;
  border: none;
  color: #fff;
  width: 80px;
}

.thank-yoyu-message {
  padding: 30px 30px;
  border-radius: 15px;
  border: 1px solid #777777;
  margin-bottom: 50px;
}

.thank-yoyu-message p {
  font-size: 20px;
  color: rgb(34, 34, 34, 0.5);
  font-weight: 400;
}

.thank-yoyu-message p a {
  color: rgb(34, 34, 34, 0.5);
}

.thank-yoyu-message p .c_font {
  font-weight: 600;
  color: #222222;
}

.goto-shoping {
  padding: 12px 16px;
  background: var(--primary-color);
  border-radius: 5px;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.goto-shoping:hover {
  color: #fff;
}

.deliver-details {
  padding: 30px 30px;
  margin-top: 30px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #777777;
}

.deliver-details h3 {
  font-size: 18px;
  font-weight: 500;
  color: rgb(34, 34, 34, .5);
  margin-top: 3px;
  margin-bottom: 3px;
}

.deliver-details h4 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(30, 30, 30, .5);
}

.deliver-details p {
  color: #1E1E1E;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0px;
}

.deliver-details h3 span {
  color: rgb(34, 34, 34);
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.summary {
  background-color: #FAFAFA;
  padding: 25px 25px;
  margin-top: 25px;
  border-radius: 20px;
}

.summary h4 {
  font-size: 20px;
  font-weight: 600;
}

.deliver-details .box2 {
  text-align: right;
}

.cart-summary.style-2 {
  background-color: #F5F5F5;
  bordeR: none;
}

.border-style-2 {
  border-color: #fff;
}

.order_number {
  margin-bottom: 30px;
}

.custom_bg {
  background-color: #F4F4F4;
}

.my-account-tab {
  background-color: #FFFFFF;
  padding: 15px 15px;
  border-radius: 10px;
}

.my-account-tab ul li {
  margin-bottom: 15px;
}

.my-account-tab ul li:last-child {
  margin-bottom: 0px;
}

.my-account-tab ul li a {
  padding: 15px 15px;
  display: block;
  background-color: #F4F4F4;
  color: #222222;
  border-radius: 10px;
  font-size: 20px;
}

.icon-c2 {
  margin-left: 15px;
}

.icon-c2 img {
  filter: brightness(0);
}

.my-account-tab ul li a:hover {
  background-color: rgb(183, 38, 41, .2);
  color: var(--primary-color);
}


.my-account-tab ul li a.active {
  background-color: rgb(183, 38, 41, .1);
  color: var(--primary-color);
}

.my-account-tab ul li a.active .icon-c2 img {
  filter: brightness(1);
}

.person-info {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 10px;
}

.person-info .img-box {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  background-color: rgb(183, 38, 41, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
}

.person-info .img-box h3 {
  font-size: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.person-info .img-box img {
  border-radius: 50%;
  object-fit: cover;
}

.person-info h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

.person-info p {
  font-size: 16px;
  margin-bottom: 3px;
  color: rgb(33, 33, 33, .5)
}

.edit_pro {
  padding: 12px 30px;
  border-radius: 10px;
  background-color: rgb(183, 38, 41, .1);
  color: var(--primary-color);
  display: inline-block;
  text-align: center;
}

.order-info {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 20px;
}

.order-info h5,
.can-reason h5 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.icon-h3 {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #43A047;
  line-height: 50px;
  text-align: center;
}

.icon-h3.returned {
  background-color: #FFA500;
}

.order-info2 h3 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.order-info2 p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(34, 34, 34, .7);
}

.c_btn {
  padding: 10px 20px;
  bordeR: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-block;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  cursor: pointer;
}

.c_btn2 {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-block;
  font-family: "Inter", sans-serif;
}

.order-details {
  padding: 15px 15px;
  background-color: #F4F4F4;
  margin-top: 20px;
  border-radius: 15px;
  position: relative;
}

.order-details .img-thumb {
  width: 90px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.order-details.cancelled-order .img-thumb {
  width: 100px;
}

.order-details.cancelled-order .img-thumb img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.order-details h4 {
  color: #222222;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}

.order-details p {
  font-size: 12px;
  color: rgb(34, 34, 34, .7);
  margin-bottom: 2px;
}

.order-details ul {
  width: 90%;
}

.order-details ul li:first-child a {
  padding-top: 0;
}

.order-details ul li:last-child a {
  padding-bottom: 0;
  border-bottom: none;
}

.order-details ul li a {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
}

.goto {
  position: absolute;
  left: 20px;
  top: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  transform: scaleX(-1);
}

.icon-h3.cancelled {
  background-color: #E52B36;
}

.select-blk {
  min-width: 150px;
}

.backto {
  font-size: 20px;
  color: #222222;
  display: block;
  font-family: "Inter", sans-serif;
}

.dwld-invoice {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}

.order-details2 {
  padding: 15px 15px;
  background-color: #F4F4F4;
  margin-top: 20px;
  border-radius: 15px;
  position: relative;
}

.order-details2 h4 {
  color: #222222;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-bottom: 5px;
}

.order-details2 p {
  font-size: 16px;
  color: rgb(34, 34, 34, .7);
  margin-bottom: 0;
}

.icon-h4 {
  width: 100px;
  height: 1000px;
  border-radius: 50px;
  background-color: #43A047;
  line-height: 50px;
  text-align: center;
}

.order-details.cancelled-order h4 {
  font-size: 16px;
}

.order-details.cancelled-order p {
  font-size: 16px;
}

.order-details2 .img-thumb2 {
  width: 100px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.cancelled-or {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.return-item {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.cancel-btn2 {
  background-color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  margin-top: 20px;
  display: inline-block;
  font-family: "Inter", sans-serif;
}

.return-btn {
  background-color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  color: #222222;
  margin-top: 30px;
  display: inline-block;
  font-family: "Inter", sans-serif;
}

.cencel-order-modal .modal-dialog {
  max-width: 700px;
}

.cencel-order-modal .modal-body {
  padding: 30px 30px;
}

.cencel-order-modal .modal-content {
  background-color: #F4F4F4;
  border-radius: 20px;
}

.cencel-order-modal .order-info {
  padding: 20px 20px
}

.cencel-order-modal h5 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.c-select {
  padding: 10px 20px;
}

.form-select:focus,
.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: none;
  /* border: none; */
}

.buttons-wrap {
  justify-content: end;
  gap: 10px;
  display: flex;
}

.linkc.bg-empty {
  color: #222222;
  background-color: transparent;
}

.linkc {
  background-color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
}

.edit-modal .modal-dialog {
  max-width: 700px;
}

.edit-modal .modal-body {
  padding: 30px 30px;
}

.edit-modal .modal-content {
  background-color: #F4F4F4;
  border-radius: 20px;
}

.edit-modal .order-info {
  padding: 20px 20px
}

.edit-modal h5 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
}

.form-label {
  color: rgb(34, 34, 34, .5);
}

.form-control {
  padding: 12px 15px
}

.date-fi {
  background: url(../images/cal-ic.png) right 15px top 15px #ffff;
  background-repeat: no-repeat;
}

.quantity-input {
  padding: 0px;
  background-color: transparent;
}

.share-review {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}

.share-review p {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  font-family: "Inter", sans-serif;
  margin-top: 5px;
}

.write_review {
  color: #222222;
  font-weight: 500;
  text-decoration: underline;
  font-size: 16px;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
}

.write_review:hover {
  text-decoration: underline;
}

.share-review .star {
  font-size: 30px;
  line-height: 30px;
  color: rgb(34, 34, 34, .5);
}

.refund-details h3 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.refund-details .wrap {
  padding: 20px 20px;
  background-color: #F2F2F2;
  border-radius: 10px;
  margin-top: 20px;
}

.refund-details .wrap p {
  color: rgb(34, 34, 34, .7);
  font-size: 16px;
}

.refund-details .wrap p:first-child span {
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.success-tick {
  color: #43A047;
  font-size: 16px;
  font-weight: 500;
}

.cancel-btn3 {
  background-color: #FF4B4B;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  margin-top: 30px;
  display: inline-block;
}

.cancel-btn3.style2 {
  background-color: #FFA500;
}

.add_add_link {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}

.address-wrap {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 20px;
}

.edit_pen2 {
  position: absolute;
  right: 50px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  top: 15px;
  color: #222222;
  font-size: 8px;
  background-color: #F2F2F2;
  text-align: center;
}

.delete_pen {
  position: absolute;
  right: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  top: 15px;
  color: #222222;
  font-size: 8px;
  background-color: #F2F2F2;
  text-align: center;
}

.edit_pen2 i,
.delete_pen i {
  font-size: 15px;
  color: rgb(34, 34, 34, .7);
  font-size: 12px;
}

.label-holder {
  background-color: #43A047;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 20px;
}

.address-option .radio-blk {
  display: inline-block;
  position: relative;
  padding: 6px 40px 6px 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  background-color: #F2F2F2;
  color: #222222;
  font-size: 14px;
  border-radius: 20px;
}

.radio-blk.selected {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Hide the browser's default checkbox */
.radio-blk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.radio-blk .checkmark {
  position: absolute;
  top: 8px;
  left: 10px;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border-radius: 20px;
}

/* On mouse-over, add a grey background color */
.radio-blk:hover input~.checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.radio-blk input:checked~.checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.radio-blk .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.radio-blk input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.radio-blk .checkmark:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.address-option.active {
  border: 1px solid var(--primary-color);
}

.address-option.active .radio-blk {
  background-color: var(--primary-color);
  color: #ffffff;
}

.wallet-points-page .box {
  padding: 20px 20px;
  text-align: center;
}

.wallet-points-page .box h3 {
  font-size: 24px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 0px;
}

.wallet-points-page .box p {
  color: rgb(34, 34, 34, .7);
  margin-bottom: 5px;
}

.wallet-points-amount {
  font-size: 40px;
  font-weight: 500;
  color: var(--primary-color);
}

.wallet-points-page .nav-pills .nav-link.active {
  background-color: #43A047;
  border-radius: 10px;
  color: #fff;
}

.wallet-points-page .nav-pills .nav-link {
  font-size: 20px;
  background-color: #FFFFFF;
  color: #222222;
  padding: 15px 30px;
  border-radius: 10px;
  margin-right: 15px;
}

.statment-history {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
}

.statment-history span.creditamount {
  color: var(--primary-color);
  font-size: 16px;
}

.statment-history h4 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 500;
  color: #222222;
}

.statment-history p {
  font-size: 16px;
  color: #222222;
}

.statment-history span.debitamount {
  color: #FD3838;
  font-size: 16px;
}

.bigPara {
  font-size: 20px;
  line-height: 38px;
  color: rgb(30, 30, 30, .7);
}

/* .blog-wrap .blog-content {
  background-color: #FAF7F2;
  padding: 20px 20px
} */
.blog {
  padding-top: 30px;
  padding-bottom: 50px;
}

.blog-wrap .blog-img {
  margin-bottom: 15px;
}

.blog-wrap .blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
}

.blog-wrap .blog-content p {
  line-height: 28px;
  margin-bottom: 10px;
  color: rgb(34, 34, 34, .7);
}

.date {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  color: rgb(30, 30, 30, .5);
}

.read_more {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}

.blog-img img {
  border-radius: 20px;
}


.blog .row-1>* {
  margin-bottom: 10px;
  margin-top: 10px;
}

.blog-large-img {
  border-radius: 20px;
  margin-bottom: 30px;
}

.blog-content h1 {
  font-size: 44px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.blog-grid img {
  border-radius: 20px;
}

.blog-img img {
  width: 100%;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-details h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
  margin-top: 20px;
}

.recent-blog {
  padding-top: 40px
}

.recent-blog h4 {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

/* .recent-blog .blog-wrap .blog-content {
  background-color: #fff;
} */

.terms-page h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 20px;
  color: #222222;
  font-family: "Inter", sans-serif;
}

.terms-page p {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  color: rgb(34, 34, 34, .7);
}

.terms-page ul {
  padding-left: 33px;
}

.terms-page ul li {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  color: rgb(34, 34, 34, .7);
  list-style: disc;
}

.bold {
  color: rgb(34, 34, 34, 1);
  font-weight: 500;
}

.about .content {
  text-align: center;
}

.about .content h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about .content p {
  font-size: 20px;
  color: rgb(34, 34, 34, .7);
  line-height: 36px;
}

.custom-style {
  background: linear-gradient(90deg, #dc3545 0%, #F89B29 40%, #FF0F7B 70%, #FF0F7B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Firefox support */
  color: transparent;
}

.special_label {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}

.special_text {
  background: linear-gradient(90deg, #FF0F7B, #FF3300, #FF0F7B);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.office-address {
  display: flex;
  align-items: center;
  gap: 15px;
  /* space between icon and text */
  padding-top: 40px;
  padding-right: 25px;
  padding-left: 10px;
  padding-bottom: 40px;
  height: 100%;
}

.office-address .icon-box {
  background: rgb(183, 38, 41, .1);
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.office-address .icon-box img {
  width: 55px;
}

.office-address .text-box h4 {
  font-size: 24px;
  font-weight: 500;
  color: #222;
}

.office-address .text-box p {
  margin: 3px 0 0;
  font-size: 16px;
  color: #444;
  line-height: 1.4;
  font-weight: 400;
}

.office-address .text-box a {
  color: #444;
}

.gradient-border {
  border-right: 1px solid transparent;
  border-radius: 12px;
  border-image: linear-gradient(90deg, #B72629, #FFC0C2) 1;

}

.custom_border {
  margin-top: 40px;
  margin-bottom: 0px;
  border-top: 3px solid transparent;
  border-radius: 12px;
  border-image: linear-gradient(180deg, #B72629, #FFC0C2) 1;
}

.feel-free-to-visit {
  background: url(../images/feel_free_BG.jpg);
  border-radius: 30px;
  padding: 50px 50px;
  background-size: cover;
}

.gmap {
  height: 400px;
}

.gmap iframe {
  border-radius: 30px;
  height: 100%;
  width: 100%;
}

.feel-free-to-visit h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 45px;
}

ul.social-share {
  margin-top: 20px;
}

ul.social-share li {
  display: inline-block;
  margin-right: 15px;
}

.social-share .ico-hold {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #ffffff;
  display: inline-block;
  line-height: 60px;
  text-align: center;
}

.feel-free-to-visit .box-left {
  padding-right: 15px;
}

.descr {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}

.feel-free-to-visit .box-left p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.social-share li:nth-child(1) .ico-hold:hover {
  box-shadow: 0 0 12px rgba(59, 89, 152, 0.6);
  /* Facebook blue */
}

.social-share li:nth-child(2) .ico-hold:hover {
  box-shadow: 0 0 12px rgba(193, 53, 132, 0.6);
  /* Instagram pink */
}

/* .logreg-modal .modal-dialog {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.logreg-modal .modal-content {
  border-radius: 30px;
  background-image: url(../images/login_BG.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.login-box {
  max-width: 800px;
  margin: 80px auto;
  text-align: center;
}

.login-box h2 {
  text-align: left;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 30px;
}

.login-box p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgb(255, 255, 255, .7);
  text-align: left;
}

.login-box p a {
  color: rgb(255, 255, 255, .7);
  cursor: pointer;
}

.login-box .form-control {
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
}

.login-box .btn-login {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-size: 20px;
  font-weight: 500;
}

.btn-login:hover {
  background: #43a047;
}

.divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #fff;
}

.divider span {
  margin: 0 10px;
  font-size: 14px;
  color: #fff;
} */

.social-login {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-login a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.c_custom {
  position: absolute;
  right: 30px;
  top: 30px;
}

.logoinmodal {
  width: 320px;
}

.trackorder-modal .modal-dialog {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

.tracking-header h5 {
  font-size: 18px;
  color: rgb(34, 34, 34, .5);
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.tracking-header h5 span {
  color: #222222;
}

.progress-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* gray base line */
.progress-track .step::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 10px;
  background: #ffffff;
  z-index: 0;
}

/* green progress line */
.progress-track .step.completed::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  height: 10px;
  background: #43A047;
  z-index: 1;
  width: 100%;
  transition: width 0.4s ease;
}

.progress-track .step:last-child:before {
  display: none;
}

/* steps: evenly spaced */
.progress-track .step {
  position: relative;
  z-index: 3;
  flex: 1;
  width: 100%;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #CCCCCC;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 4;
}

.step.completed .circle {
  border-color: #fff;
  background: #43A047;
  color: #fff;
}

.step.active .circle {
  border-color: #fff;
  background: #43A047;
  color: #fff;
}

.progress-track .step .label {
  font-size: 18px;
  margin-top: 5px;
  color: #999;
  font-weight: 400;
}

.step.completed .label {
  color: var(--primary-color);
  font-weight: 400;
}

.step.active .label {
  color: #43A047;
  font-weight: 400;
}

.progress-1::after {
  width: 0%;
}

.progress-2::after {
  width: 33%;
}

.progress-3::after {
  width: 66%;
}

.progress-4::after {
  width: 100%;
}


/* Timeline */
.tracking-updates {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 20px;
}

.tracking-updates h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.timeline li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  z-index: 55;
}

.timeline li.completed::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.timeline li .title-sm {
  font-weight: 500;
  font-size: 14px;
  color: rgb(34, 34, 34, .5);
  display: flex;
  font-family: "Inter", sans-serif;
}

.timeline li .date {
  color: rgb(34, 34, 34, .5);
  font-size: 12px;
  margin-right: 8px;
  font-weight: 400;
  margin-bottom: 0px;
}

.timeline li p {
  margin: 5px 0 0;
  font-size: 14px;
  color: rgb(34, 34, 34, .5);
}

.trackorder-modal .modal-content {
  background-color: #F4F4F4;
}

.timeline li.completed::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: calc(100% + 25px);
  background: var(--primary-color);
}

.timeline li.completed .title-sm {
  color: var(--primary-color)
}

.timeline li.completed .date {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 12px;
  margin-top: 3px;
}

.progress-track .step.completed:last-child:after {
  display: none;
}

.progress-track .step:last-child {
  flex: 0;
  width: 70px;
}

/* Preloader container */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  /* background color */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Logo animation */
.logo-grow {
  width: 100px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Pulse effect */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Hide preloader after load */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* .select_block {
    display: flex;
    flex-wrap: wrap;
    background: var(--primary-color);
    border-radius: 10px;
    padding-left: 13px;
    padding-right: 20px;
} */

/*.dropdown {*/
/*  position: relative;*/
/*  width: 146px;*/
/*  font-family: sans-serif;*/
/*}*/
/*.custom-dropdown-select .dropdown-menu{min-width:150px;}*/
.product-page .product-box-img-wrap {
  height: 300px;
}

.sold-status {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.yr-warranty {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.not-txt-block {
  display: flex;
  align-items: center;
}

.not-txt-block span {
  color: var(--primary-color);
  font-weight: 600;
  margin-right: 10px;
}

.rating-block {
  background: rgba(238, 130, 34, 0.1);
  padding: 5px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bottom-box p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 7px;
}

.spec-review .custom_accordion .accordion-button {
  color: #222222;
  font-size: 20px;
  font-weight: 500;
  border: 0;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.spec-review .custom_accordion:first-child .accordion-button {
  border-top: none;
}

/*
.custom_accordion .accordion-button:not(.collapsed) {
  color: #222222;
  background-color: #DFDFDF;
}
  */

.spec-review .custom_accordion .accordion-collapse {
  border-left: none;
  border-right: none;
  padding-bottom: 20px;
}

.spec-review .custom_accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.spec-review .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.spec-review .accordion-button:not(.collapsed) {
  background-image: url(../images/ic_round-minus.svg);
  background-position: right;
  /*transform: rotate(180deg);*/
}

.spec-review .accordion-button {
  background-image: url(../images/ic_round-plus.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  background-position: center right 0px;
}

.spec-review .custom_accordion .accordion-button:last-child {
  border-bottom: none;
}

.user-review-post {
  display: flex;
  justify-content: space-between;
}

.custom-tabs .nav-link.style-2 {
  font-size: 20px;
}

.trythis-combo {
  padding-top: 30px;
  padding-bottom: 30px;
}

.trythis-combo .tab-pane .row {
  margin-left: -50px;
  margin-right: -50px;
}

.trythis-combo .tab-pane .col-blk {
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  margin-top: 15px;
}

.trythis-combo .tab-pane .col-blk::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: url(../images/combo-plus.png);
  background-position: center;
  right: -15px;
  background-repeat: no-repeat;
  z-index: 5555;
  width: 30px;
  height: 30px;
  margin: auto;
}

.trythis-combo .tab-pane .col-blk:last-child::after {
  display: none;
}

/* side product */

.side-product-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.side-product-card-image-container {
  position: relative;
  background: #ffffff;
  padding: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  border-radius: 20px;
}

.side-product-card-image {
  width: auto;
  max-height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  max-width: 100%;
}

.side-product-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #00c9a7;
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  text-transform: capitalize;
}

.side-product-card-checkbox {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: #ff8533;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.side-product-card-checkbox::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.side-product-card-info {
  margin-top: 15px;
}

.side-product-card-title {
  color: #222222;
  font-size: 14px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}

.side-product-card-price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.side-product-card-current-price {
  color: #222222;
  text-align: left;
  font-size: 18px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.side-product-card-original-price {
  color: #222222;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.7;
}

.side-product-card-discount {
  color: #008000;
  font-size: 14px;
  font-weight: 500;
}

.side-product-add-button-wtapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  align-items: center;
}

.side-product-add-button {
  background: none;
  border: none;
  outline: none;
}

.side-product-add-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  cursor: pointer;
}

/* .my-accordion-button {
  color: #222222;
  font-size: 22px;
  line-height: 150%;
  font-weight: 500;
  border: none;
  background: none;
  outline: none;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
} */

/* .my-accordion-button img {
  width: 10px;
  height: 15px;
  object-fit: contain;
  margin-left: 10px;
} */

.my-accordion-button[aria-expanded="true"] img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* .my-accordion-button img {
  width: 10px;
  height: 15px;
  object-fit: contain;
  margin-left: 10px;
  transition: transform 0.3s ease; 
} */

.Together-block {
  width: 100%;
  padding: 7%;
  border-radius: 15px;
  background: #f2f2f2;
}

.buynow_btn {
  background-color: var(--primary-color);
  width: 100%;
  display: block;
  border-radius: 10px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  margin-top: 15px;
  border: 1px solid var(--primary-color);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.combo-check {
  position: absolute;
  right: 20px;
  top: 20px;
}

.combo-check .form-check-input {
  width: 20px;
  height: 20px;
}


.frequent-bought .my-accordion-button {
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  border: none;
  padding: 0px;
  padding-bottom: 20px;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.rating-review {
  padding-top: 30px;
  padding-bottom: 30px;
}

.review-imgages img {
  border-radius: 5px;
}

.frequent-bought .my-accordion-button img {
  width: 17px;
}

.frequent-bought-together {
  padding-bottom: 0px;
}

.ratings-container.style-2 {
  padding: 50px 50px;
  display: flex;
  align-items: center;
}

.ratings-container.style-2 .rating-summary {
  width: 50%;
  float: left;
}

.ratings-container.style-2 .rating-bars {
  width: 50%;
  float: left;
  margin-top: 0px;
}

.review-page {
  background-color: #fff;
}

.rating-img {
  background-color: #F5F5F5;
  border-radius: 20px;
}

.rating-img a {
  height: 300px;
}

.rating-img img {
  display: block;
  margin: auto;
}

.discprc {
  color: #008000;
}

.address-tag.style-2 {
  background-color: rgb(67, 160, 71, .1);
}

.trackorder-modal .modal-body {
  padding: 30px 30px
}

.return-info {
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  background: rgba(255, 75, 75, .1);
  padding: 15px 20px;
}

.return-info p {
  color: #FF4B4B;
  font-family: "Inter", sans-serif;
}

.return-info a {
  color: #000;
}

.c-color {
  background-color: #F5F5F5
}

.c_textarea {
  height: 150px;
}


.upload-area {
  border: 1px dashed #e3e3e3;
  border-radius: 8px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .12s, background .12s;
  background: #fafafa;
}

.upload-area:hover {
  border-color: #d0d0d0;
  background: #fcfcfc;
}

.upload-inner {
  text-align: center;
  color: #9aa0a6;
}

.upload-inner .bi {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}

.preview-grid {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-item {
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  background: #f2f2f2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}

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

.remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
}

.stars .bi {
  font-size: 32px;
  color: #e9ecef;
  cursor: pointer;
}

.stars .bi.filled {
  color: #ffd24d;
}

.btn-submit {
  background: #ffd400;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding-left: 22px;
  padding-right: 22px;
}

.write-review .modal-dialog {
  max-width: 700px;
}

.write-review .modal-body {
  padding: 30px 30px;
}

.write-review .modal-content {
  background-color: #F4F4F4;
  border-radius: 20px;
}

.write-review .order-info {
  padding: 20px 20px
}

.write-review h5 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.rate-star .star {
  font-size: 45px;
  color: rgb(34, 34, 34, .5);
}

.wishlist .col-wsh {
  width: 20%;
}

.myBanner .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 15px;
  /* adjust vertical position */
  transform: translateX(-50%);
  background-color: #FFFFFF;
  border-radius: 50px;
  padding: 10px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  /* let it grow naturally */
}

.myBanner .swiper-pagination-bullet {
  background-color: rgb(34 34 34 / 50%);
  height: 7px;
  width: 7px;
  opacity: 1;
}

.myBanner .swiper-pagination-bullet-active {
  width: 20px;
  height: 7px;
  border-radius: 20px;
  background-color: #43A047;
}

.features-bar {
  background: #F5F5F5;
  padding: 30px 0;
}

.features-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* hide scrollbar (Firefox) */
}

.features-container::-webkit-scrollbar {
  display: none;
  /* hide scrollbar (Chrome/Safari) */
}

.feature-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 10px;
  min-width: 260px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item img {
  width: 60px;
  margin-bottom: 0px;
  margin-right: 10px;
}

.feature-item span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-categories .row {
  margin-top: 20px;
}

.top-categories .box {
  background-color: #F5F5F5;
  padding: 10px 10px 10px 10px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.top-categories .box h4 a {
  font-size: 18px;
  font-weight: 500;
  color: #222222;
}

.top-categories {
  padding-top: 30px;
  padding-bottom: 30px;
}

.icon-wrap {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  position: relative;
}

.icon-wrap img {
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}


/* Loader container */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Outer ring */
.loader-circle {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(253, 61, 181, 0.2);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  position: relative;
  box-shadow: 0 0 10px rgba(253, 61, 181, 0.6);
}

/* Inner glowing core */
.loader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(253, 61, 181, 0.8), 0 0 30px rgba(253, 61, 181, 0.6);
  animation: pulse 1.2s ease-in-out infinite;
}

/* Loader text */
.loader-text {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 20px;
  animation: fadeIn 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

@keyframes fadeIn {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}



.product-slider .mySwiper {
  box-sizing: border-box;
  position: relative;
  margin-top: 30px;
  padding: 1px;

}

.product-slider .mySwiper2 {
  width: 100%;
  height: 100%;
  position: relative;
}

.mySwiper2 .swiper-slide {
  position: relative;
  background: #E5E4E2;
  height: 600px;
  border-radius: 20px;
}

.mySwiper2 .swiper-slide img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  border-radius: 20px;
}

.mySwiper .swiper-slide-thumb-active {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
}

.mySwiper .swiper-slide img {
  border-radius: 10px;
}

.product-slider .swiper-slide img {
  display: block;

}

/* .product-slider .mySwiper .swiper-slide {
  width: 100%;
  height: 16.6667%;
} */

.product-slider .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

/* Main slider navigation */
.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
  color: #fff;
}

.radius-10 {
  border-radius: 10px;
}

.product_cat {
  font-size: 16px;
  color: var(--primary-color);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}

.product_description .stars {
  font-size: 14px;
}

.strip-section-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 15px;
  padding-bottom: 15px;

}

.strip-item-2 {
  text-align: center;
  max-width: 70px;
}

.strip-section-2 .content h4 {
  font-size: 14px;
  font-weight: 600;
}

.strip-section-2 .icon {
  max-width: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.product-details .section-1 {
  padding-bottom: 40px;
}

.spec-review .custom_accordion:last-child .accordion-collapse {
  padding-bottom: 0px;
}

.product_description .wrap {
  gap: 14px
}

.block-height {
  width: 100%;
  height: 20px;
  background-color: #E5E4E2;
}

.fw-30 {
  font-size: 30px;
  font-weight: 600;
}

.ratings-container {
  background-color: #E5E4E2;
  border-radius: 8px;
  align-items: center;
  padding: 40px 20px;
  border-radius: 20px;
  height: 100%;
}

.ratings-container p {
  font-size: 20px;
  color: #222222;
}

.rating-summary {
  text-align: center;
  color: #FF406C;
  width: 100%;
  margin-right: 0%;
}

.rating-summary h2 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222222;
}

.rating-summary .stars {
  color: #FFA500;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.text-rating {
  font-size: 20px;
  color: #222222
}

.rating-bars {
  width: 100%;
  background-color: #F6F3EF;
  border-radius: 20px;
  padding: 20px 20px;
  margin-top: 30px;
}

.rating-bars .star {
  color: #FFA500;
}

.rating-bar {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;

}

.rating-bar .star-level {
  /* width: 10%; */
  text-align: right;
  font-size: 0.9em;
}

.rating-bar .progress {
  flex: 1;
  height: 4px;
  margin: 0 10px;
  background-color: rgb(34, 34, 34, .2);
}

.rating-bar .progress-bar {
  background-color: #222222;
}

.rating-bar .percentage {
  /* width: 10%; */
  text-align: right;
  font-size: 16px;
  color: #222222;
  font-weight: 400;
}


.posted-by .items-avaliable {
  color: rgb(34, 34, 34, 0.5);
  font-size: 12px;
}

.posted-by h4 {
  font-size: 16px;
  color: rgb(34, 34, 34, 0.8);
  font-weight: 500;
  margin-bottom: 5px;
}

.posted-by h4 i {
  margin-right: 5px;
}

.rating_date {
  color: rgb(34, 34, 34, .5);
  font-size: 12px;
  font-weight: normal;
}

.posted-by p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(34, 34, 34, 0.5);
}

.rating_date .fa-circle {
  font-size: 8px;
  width: 8px;
  height: 8px;
  color: var(--primary-color);
}



.all-flavors {
  padding-bottom: 30px;
}

.all-flavors h2 {
  font-size: 24px;
  font-weight: 500;
}

.all-flavors .select-flavor select {
  font-size: 14px;
  color: rgb(34, 34, 34, .7);
  width: 120px;
  font-weight: normal;
}

.posted-by h5 {
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  margin-bottom: 10px;
}

.posted-by .stars {
  font-size: 15px;
}

.load-more {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}

.quantity-container.style-3 .input-group {
  background-color: #fff;
  border-radius: 50px;
}

.add_new_addr {
  font-size: 16px;
  font-weight: 600;
  color: #B72629;
  border: 1px solid #B72629;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 5px;
}

.payment-container .form-check {
  padding: 20px 20px;
  border: 1px solid #777777;
  border-radius: 10px;
  margin-bottom: 15px;
}

.payment-container .form-check .form-check-input {
  margin-right: 0px;
  margin-top: 5px;
  font-size: 20px;
  margin-right: 5px;
}

.payment-container .form-check .form-check-label {
  font-size: 20px;
  font-weight: 500;
}

.pay-price {
  font-size: 20px;
  font-weight: 700;
}

.addaddresspopup .modal-dialog {
  max-width: 1000px;
  width: 96%;
}

.addaddresspopup .modal-body {
  padding: 30px 30px;
  background-color: #F2F2F2;
  border-radius: 30px;
}

.addaddresspopup .modal-content {
  border-radius: 30px;
}

.addaddresspopup h4 {
  font-size: 24px;
  font-weight: 500;
}

.addaddresspopup .wrap {
  padding: 25px 25px;
  background-color: #fff;
  border-radius: 15px;
}

.addaddresspopup h6 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}

.addaddresspopup .form-check-label {
  font-size: 14px;
  color: rgb(34, 34, 34, .5);
}

.cancel-btn {
  color: var(--primary-color);
}

.change_btn {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.edit_profile .wrap {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 10px;
}

.edit_profile h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.clabel {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 15px;
}

.mediumpopup .modal-content {
  padding: 30px 30px;
  border-radius: 30px;
  background-color: #F5F5F5;
}

.mediumpopup p {
  font-size: 16px;
  color: rgb(30, 30, 30, .5);
}

.mediumpopup .modal-dialog {
  max-width: 600px;
}

.mediumpopup h4 {
  font-size: 24px;
  color: rgb(30, 30, 30, 1);
  font-weight: 700;
  margin-bottom: 15px;
}

.close-abs {
  position: absolute;
  left: 0px;
  top: 0px;
  cursor: pointer;
}

.can-reason {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.can-reason .c-select {
  background-color: #F5F5F5;
  border: none;
}

.ctextarea-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ctextarea {
  background-color: #F5F5F5;
  border: none;
  flex-grow: 1;
}

.ctextarea:focus {
  background-color: #F5F5F5;
}


.filter-sidebar {
  margin-top: 50px;
}

.filter-sidebar .box h3 {
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.filter-sidebar .box .accordion-button {
  padding: 15px 0px;
  border: none;
}

.custom-accordion .accordion-item {
  border: none;
  background: none;
}

.custom-accordion .accordion-button {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0.5rem 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: "Jost", sans-serif;
  font-weight: normal;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  /* active green */
}

.custom-accordion .accordion-button::after {
  display: none;
}

/* Rotate icons */
.custom-accordion .accordion-button.collapsed i {
  transform: rotate(180deg);
}

.custom-accordion .accordion-button:not(.collapsed) i {
  transform: rotate(0deg);
}

.custom-accordion .accordion-item ul li a {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  font-weight: normal;
  color: #222222;
}

.fa-chevron-right {
  font-size: 13px;
}

.clear-filters {
  position: absolute;
  right: 0px;
  top: 10px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 999;
}

.filters .custom-accordion .accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
}

.search-box-2 {
  position: relative;
}

.search-box-2 .form_fi2 {
  border: 1px solid #CCCCCC;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  padding: 10px
}

.search-box-2 .btn-search2 {
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 10px 12px;
  cursor: pointer
}

.filters .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: rgb(34, 34, 34, .5);
}

.filters .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  margin-right: 0px;
  float: right;
}

.filters .form-check {
  margin-top: 14px;
  margin-bottom: 14px;
  padding-left: 0%;
}

/* Apply only inside your custom area */
.custom-scroll {
  max-height: 150px;
  /* adjust height */
  overflow-y: auto;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: var(--primary-color) #e0e0e0;
  /* thumb color | track color */
}

/* Chrome, Edge, Safari */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
  /* scrollbar thickness */
}

.custom-scroll::-webkit-scrollbar-track {
  background: #e0e0e0;
  /* grey track */
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  /* green thumb */
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #218838;
  /* darker green on hover */
}


.ui-slider-horizontal .ui-slider-handle {
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  border: 1px solid var(--primary-color);
}

.ui-slider-horizontal {
  height: 1px;
  border-color: var(--primary-color);
}

.ui-widget.ui-widget-content {
  border: 1px solid var(--primary-color);
}

.ui-slider-horizontal .ui-slider-handle {
  top: -7px;
  margin-right: -.6em;
}

.custom-scroll .wrap:first-child {
  margin-top: 0px;
}

/* Header Search Bar Styles */
.header-search-bar {
  flex: 1;
  max-width: 600px;
  margin: 0 40px;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-input {
  width: 100%;
  height: 45px;
  padding: 10px 45px 10px 15px;
  border: 1px solid #222;
  border-radius: 5px;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.header-search-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #222;
  font-size: 16px;
  cursor: pointer;
}

.about h4 {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 700;
  /* margin-top: 15px; */
  margin-bottom: 15px;
}

.content-page h2 {
  font-size: 40px;
  color: #222222;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.content-page h3 {
  font-size: 24px;
  color: #222222;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 15px;
}

.content-page ul li {
  list-style: disc;
}

.content-page ul {
  padding-left: 20px;
}

.inner-banner h1 {
  color: #fff;
  font-weight: 700;
  margin-right: 50px;
}

.inner-banner img {
  border-radius: 20px;
  height: 250px;
  object-fit: cover;
}

.custom-position {
  position: absolute;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.blog .pagination {
  margin-top: 30px;
}

.blog-large-img-wrap {
  position: relative;
}

.date-ti {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

.blog-large-img-wrap .date {
  color: #fff;
}

/* .social-links .social-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.social-links .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
  color: unset;
}

.social-links .social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links .social-icon i img {
  width: 20px;
  height: 20px;
  object-fit: contain;
} */


/* Corporate Gifting Scoped Styles */
.cg-heading {
  font-size: 44px;
  font-weight: 300;
  color: #222;
  margin-bottom: 40px;
  text-align: center;
}

.cg-subheading {
  font-size: 24px;
  color: #222;
  margin-bottom: 0px;
}

.btn-red {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 26px;
  border-radius: 10px;
}

.btn-red:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-red-outline {
  border: 2px solid var(--primary-color);
  color: #fff;
  background-color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  width: 180px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 5px;
}

.btn-red-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Banner */
.cg-banner {
  background: url('../images/corporate-banner-img.png') no-repeat center right;
  background-size: cover;
  padding: 120px 0;
  text-align: left;
  min-height: 630px;
  display: flex;
  align-items: center;
  /*margin-top:-60px;*/
}

.cg-banner-title {
  font-family: 'Georgia';
  font-size: 55px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.cg-banner-desc {
  font-size: 20px;
  color: #444;
  margin-bottom: 30px;
}

/* Features */
.cg-feature-card {
  padding: 40px 20px;
  background: #F6F3EF;
  border-radius: 10px;
  transition: transform 0.3s ease;
  height: 100%;
}

.cg-feature-card:hover {
  transform: translateY(-10px);
}

.cg-feature-card .icon-box {
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-feature-card .icon-box img {
  max-height: 100%;
  width: auto;
}

.cg-feature-card h3 {
  font-size: 26px;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
  font-weight: 400;
}

.cg-feature-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.cg-feature-card .btn-red-outline {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
}




.cg-gift-card .img-box img {
  border-radius: 20px;

}

.cg-gift-card .content {
  padding: 15px 20px 0px;
}

.cg-gift-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

.cg-gift-card .price-range {
  color: #222222;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Get Started / Form */
.cg-get-started {
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: rgba(183, 38, 41, 0.05);
  /* Fallback */
}

.cg-testimonial {
  padding-right: 5%;
}

.cg-testimonial .stars {
  margin-bottom: 30px;
}

.cg-testimonial .stars i {
  color: #D28800;
  font-size: 28px;
}

.cg-testimonial .quote {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  color: #222;
}

.cg-testimonial .author {
  margin-top: 50px
}

.cg-testimonial .author .name {
  font-size: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
}

.cg-testimonial .author .company {
  color: #444;
  font-size: 24px;
}

.cg-testimonial .dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}

.cg-testimonial .dots .dot.active {
  background: #B72629;
}

.cg-form-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cg-form-box h3 {
  font-size: 36px;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}

.cg-form-box p {
  color: #666;
  margin-bottom: 30px;
}

.cg-form-box .form-control {
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.cg-form-box .form-control:focus {
  border-color: #B72629;
  box-shadow: none;
}

.cg-why-choose .outer-block {
  margin-bottom: 30px;
}

.get-quote-btn {
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 7px;
  margin-top: 10px;
  display: inline-block;
  width: 80%;
}

.cg-gift-card .desc {
  margin-bottom: 10px;
}

/* Corporate Gifting Scoped Styles */
.testimonial-pagination {
  position: relative !important;
  text-align: left !important;
  bottom: 0 !important;
  margin-top: 50px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin-right: 8px !important;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: #B72629 !important;
  width: 15px !important;
  height: 15px !important;
  border-radius: 10px !important;
}


.gift-box-modal form {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 15px;
}

.bottom-fixed ul li a img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.bottom-fixed ul li a.active img {
  filter: grayscale(0%);
  opacity: 1;
}

.ourhappy-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.ourhappy-swiper .testi-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.view-all-btn {
  padding-bottom: 10px;
}

.wishlist-page h1 {
  margin-top: 40px;
}

.content-page p:last-child {
  margin-bottom: 0px;
}

/* Scroll to Top */
#return-to-top {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: #B72629;
  width: 45px;
  height: 45px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}

#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  right: 15px;
  top: 12px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top:hover {
  background: #000;
}

#return-to-top:hover i {
  color: #fff;
  top: 5px;
}

/* Star Rating Styles */
.star-rating {
  display: flex;
  gap: 5px;
  cursor: pointer;
  font-size: 24px;
}

.star-rating .star {
  margin-right: 5px;
  color: #ccc;
  transition: color 0.2s;
}

.star-rating .star.active {
  color: #ffd700;
  /* Gold */
}

/* Optional: Hover effect for better UX */
.star-rating .star:hover {
  color: #ffd700;
}

.blog-filter {
  margin-bottom: 15px
}

.blog-filter .sort-by {
  min-width: 300px;
  justify-content: flex-end;
}

.blog-filter .wrap {
  display: flex
}

.arrow-space {
  display: flex;
}

.social-login-list {
  display: flex;
  gap: 15px
}

.social-login-list li a {
  cursor: pointer;
}

.cart-sidebar .cart-item-details .cart-price .price-ic img {
  width: 20px
}

.cart-price .price-ic img {
  width: 35px
}
.btn-signin{width:100%;}
.min-h{min-height:700px;display:flex;justify-content:center;flex-direction:column;}
.fa-arrow-right{transform: scaleX(-1);}
.arrow-box{flex-direction: row-reverse;}

      .video-block {
         max-width: 100%;
         position: relative;
      }

      /* Position the close button over the top-right of the video */
      .video-close-btn {
         position: absolute;
         top: 15px;
         right: 15px;
         z-index: 10;
         background-color: rgba(0, 0, 0, 0.5);
         /* Makes it visible against light videos */
         padding: 10px;
         border-radius: 50%;
      }

      .video-play-btn {
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         border: none;
         background: none;
         cursor: pointer;
      }
      .cart-price .price-ic{top:-3px;}

            header:not(.inner-header){background-color:transparent;position:absolute;}
header:not(.inner-header):hover {background-color: #F6F3EF;}
header.affix{position:fixed;background-color:#F6F3EF;top:0px;}
header.corporate_header{background-color:transparent;position:absolute;}
header.corporate_header:hover {background-color: #ffffff;}
header.affix{position:fixed;background-color:#F6F3EF}
.inner-header.affix{background-color:#fff;top:0px;}
.custompad-3{padding-top:15px;padding-bottom:15px}
.custom-postion{position:absolute;top:30px;}
.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px; /* Large rounded corners from your image */
    cursor: pointer;
}

.banner-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #FFE3CD;
    font-size: 16px;
    z-index: 2;
}
.banner-card:hover img {
    transform: scale(1.05);
}
.thumb-bg img{height:70px;width:100%;object-fit:cover}
.cart-items .cart-item .item-details{overflow: hidden;}
.cart-sidebar .cart-price .price-ic{top:0px;}
.strip-section{background-color:#E5E4E2;}
.seo-content-wrapper h2 {color: #1a202c;padding-bottom: 15px;font-size:28px;font-weight:700;}
.seo-content-wrapper h4{ font-size:28px;font-weight:600;margin-bottom:15px;}
.seo-content-wrapper p {font-size:16px;}
.product-section + .product-section {padding-top:0px !important;}
.btn-theme-c{background-color:#ba2c31;border:none;}
.c_theme-button{background-color:var(--primary-color);padding:10px 20px;border:none;color:#fff;width:100%;border-radius:5px;display:block;text-align:center;}
.custom-cat-dropdown .btn-link{font-size:16px;font-weight:500;}
.filter-container .custom-select{padding:10px 10px 10px 30px;}
.anooca-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.anooca-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(25, 33, 61, 0.06);
}
.anooca-accordion h2{padding-bottom:0px;}
.anooca-accordion .accordion-item:last-child {
    border-bottom: none;
}

.anooca-accordion .accordion-button {
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(34, 34, 34, .7);
    background-color: transparent;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.anooca-accordion .accordion-button::after{margin-lefT:0;}
.anooca-accordion .accordion-button:not(.collapsed) {
    color: rgba(34, 34, 34, .7);
    background-color: transparent;
    box-shadow: none;
}
.anooca-accordion .accordion-button::after {
    content: '';
    width: 32px;
    height: 32px;
    background-color: #B72629;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.anooca-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-color: #B72629;
}

.anooca-accordion .accordion-body {
    padding: 0 24px 24px 24px;
}
.anooca-accordion .accordion-body p{color: rgba(34, 34, 34, .7);line-height: 1.6;font-size: 14px;}
.anooca-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.anooca-accordion .accordion-collapse{padding-bottom:0px !important}