* {
  -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: 'Satoshi-Regular';
  font-weight: 400;
}

/* 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 - Header Cover Mode */
.search-full-width {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  z-index: 1051;
  overflow: visible;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}

.search-full-width.active {
  height: 100px;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.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;
  cursor:pointer;
}

/*
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;
}

.theme-color {
  color: var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.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: 20px;
  padding-bottom: 20px;
  /* 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-left: 5px;
}

.menu-ul li a {
  padding: 10px 15px;
}

.right-blk {
  justify-content: end;
  display: flex;
  align-items: center;
}

.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: auto;
  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;
  font-size:12px;
}

.right-blk .dropdown-menu li a:hover {
  background-color: #555555;
  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: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.search-trigger img {
  width: 30px;
}

.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;
  background-color: #fff;
  border-radius: 10px;
}

.product-card .details {
  padding: 15px 15px;
}

.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 */
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.25);
}

.img-box a {
  display: block;
}

.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: #F2F2F2;
  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: 16px;
  margin-bottom: 7px;
  font-family: 'Satoshi-Regular';
  font-weight: 400;
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.price {
  font-size: 20px;
  color: #222222;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Satoshi-Bold';
}

.price del {
  color: rgb(34, 34, 34, .5);
  margin-left: 5px;
  font-size: 16px;
  font-family: 'Satoshi-Regular';
  font-weight: 400;
  position: relative;
  top: -2px;

}

@keyframes btn-cart-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.btn-cart {
  color: #B72025;
  width: 100%;
  padding: 10px;
  border-radius: 7px;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
  font-size: 18px;
  display: block;
  border: 1px solid #B72025;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease, transform 0.1s ease;
  background-image: linear-gradient(105deg,
      transparent 40%,
      rgba(183, 32, 37, 0.12) 50%,
      transparent 60%);
  background-size: 200% 100%;
  background-position: 200% center;
}

.btn-cart:hover {
  border: 1px solid #B72025;
  color: #B72025;
  animation: btn-cart-shimmer 0.7s linear;
}

.btn-cart:active {
  transform: scale(0.96);
  opacity: 0.85;
}


.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: 35px;
}

.section-title h2 {
  font-size: 40px;
  font-family: 'Clash Display Semibold';
  font-weight: 600;
  text-transform: uppercase;
}

.view-all-btn a {
  color: #222222;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Lato", sans-serif;
}

.strip-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}


.strip-item .content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

.strip-section {
  background-color: #fff;
}

.strip-section .swiper {
  padding-top: 30px;
  padding-bottom: 30px;
}

.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;
}

/* 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;
  right: 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-left: 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: 30px;
  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: 30px;
  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;
}

.fa-shopping-bag {
  position: relative;
  top: -3px
}

.icon {
  max-width: 35px;
}

/* .category-links {
  font-size: 20px;
  font-weight: 600;
} */

.category-links {
  margin-left: 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;
}



.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 {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #111111;
}

.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: 24px;
  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;
}

.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: 'Satoshi-Light';
  font-weight: 300;
  font-size: 20px;
  color: rgb(34, 34, 34, .5);
}

.breadcrumb-item.active {
  font-family: 'Satoshi-Regular';
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.breadcrumb-item+.breadcrumb-item::before {
  font-size: 20px;
}

.inner-header {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.product-top h1 {
  font-weight: 700;
  font-size: 30px;
  font-family: 'Satoshi-Bold';
}

.sort-by label {
  color: #B72629;
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px;
  min-width: 75px;
  text-align: right;
}

.sort-by .form-select {
  background-color: #fff;
  /* border: 1px solid #000000; */
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  max-width: 180px;
  padding-left: 20px;
  padding-right: 20px;
  height: 50px;
  border-radius: 10px;
}


.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: "Lato", sans-serif;
  font-weight: 700;
}

/* active page */
.page.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* 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-blk {
  flex: 1;
  min-width: 0;
}

.filter-container {
  display: flex;
  gap: 20px;
  width: 100%;
}

/* Custom Scrollbar for Brand Filter */
.custom-scroll {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #B72629 #f0f0f0;
}

.custom-scroll::-webkit-scrollbar {
  width: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #B72629;
  border-radius: 10px;
}



.product-section .product-col {
  margin-bottom: 10px;
}

.product_cat {
  font-size: 16px;
  color: var(--primary-color);
  font-family: "Lato", 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: rgb(34, 34, 34, .7);
  font-weight: 400;
  font-size: 14px;
  font-family: 'Satoshi-Regular';
  margin-top: 0px;
  margin-left: 5px;
}

.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 {
  color: #222222;
  font-size: 30px;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
  margin-bottom: 0px;
}

.price-blk .withtax {
  color: rgb(34, 34, 34, .5);
  font-size: 16px;
  font-weight: normal;
  font-family: "Lato", sans-serif;
}

/* .mrp-price {
  margin-top: 11px;
  margin-left:10px;
} */

.mrp-price p {
  color: rgb(34, 34, 34, .5);
  font-size: 24px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-decoration: line-through;
}

/* .mrp-price span {
  color: #008000;
} */

.product_description h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  font-family: 'Satoshi-Medium';
}


.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: "Lato", sans-serif;
}

.select-size span {
  font-weight: 700;
  font-size: 16px;
  color: rgb(34, 34, 34, 1);
  font-family: "Lato", 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: "Lato", 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: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.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: 50px;
  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;
  border-radius: 30px;
  font-family: 'Satoshi-Bold';
  font-size: 16px;
  font-weight: 700;
}

.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: "Lato", 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:last-child {
  margin-bottom: 0px;
}

.cart-item img:not(.price-ic img) {
  width: 130px;
  height: auto;
  margin-right: 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-left: 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-left: 25px;
}

.item-details h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-items .cart-price {
  font-weight: normal;
  color: #222222;
  font-size: 30px;
  font-family: 'Recoleta DEMO';
  display: flex;
  justify-content: end;
}

.cart-items .original-price {
  text-decoration: line-through;
  color: rgb(34, 34, 34, 0.5);
  margin-left: 10px;
  font-size: 16px;
  font-weight: normal;
}

.cart-items .discount {
  color: #008000;
  margin-left: 5px;
  font-size: 16px;
  font-weight: 400;
}

.cart-items .qty {
  margin-top: 5px;
  color: rgb(34, 34, 34, .7);
  font-size: 20px;
  font-family: "Lato", sans-serif;

}

.cart-items .item-options {
  margin-top: 10px;
  text-align: right;
}

.cart-items .item-options a {
  color: #222222;
  text-decoration: none;
  font-size: 14px;
}

.cart-items .delivery {
  margin-left: 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%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.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: "Lato", 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-left: 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-left: 30px;
}

.quantity-container2 .input-group {
  width: 70px;
}


.quantity-input {
  text-align: center;
  padding: 0px;
}

.quantity-container {
  display: flex;
  align-items: center;
  gap: 10px;
}


.quantity-container .input-group {
  width: 110px;
  background-color: #F6F6F6;
  border-radius: 222px;
}

.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;
}



/* .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-right: 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;
}

.address-tag i {
  position: relative;
  top: -2px;
}

.or-divider span {
  /* Ensures the 'OR' text is centered and has its own color */
  color: #B72629;
  font-weight: 600;
  text-transform: uppercase;
}

.or-divider::before,
.or-divider::after {
  content: "";
  /* Set your specific width here */
  width: 100px;
  height: 2px;
  border-radius: 2px;
}

/* Left line: fades from transparent into your bright red */
.or-divider::before {
  background: linear-gradient(to right, transparent, #b72629);
}

/* Right line: fades from your dark red into transparent */
.or-divider::after {
  background: linear-gradient(to right, #b72629, transparent);
}

.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;
  right: 10px;
  top: 10px;
  font-weight: 500;
  font-family: 'Satoshi-Medium';
}

.buttons {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.buttons button {
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Satoshi-Medium';
}

.cancel-btn {
  color: black;
  background-color: transparent;
  margin-right: 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: normal;
  text-align: center;
  font-family: "Lato", sans-serif;
}

.add_address h4,
.price-details h4 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}

.price-details h4 span {
  font-weight: 300;
}

.select-address .modal-dialog {
  max-width: 1000px;
}

.f-24 {
  font-size: 24px;
  font-family: 'Satoshi-Bold';
}

.c_close {
  background-color: transparent;
  border: none;
  padding: 0;
}

.select-address .modal-body {
  padding: 30px 30px;
}

.select-address .address-option {
  background-color: #fff;
  padding-left: 50px;
}

.select-address .modal-content {
  background-color: #F4F4F4;
  border-radius: 30px;
}

.c_radio {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 20px;
  background-color: #F4F4F4;
}

.edit_pen {
  position: absolute;
  right: 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;
  margin-bottom: 50px;
  background-color: #fff;
}

.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: 16px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
}

.goto-shoping:hover {
  color: #fff;
}

.deliver-details {
  padding: 20px 20px;
  margin-top: 30px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.deliver-details h3 {
  font-size: 18px;
  font-family: 'Satoshi-Medium';
  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;
  margin-bottom: 0px;
  font-family: 'Satoshi-Regular';
}

.deliver-details h3 span {
  color: rgb(34, 34, 34);
  font-family: 'Satoshi-Medium';
}

.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-right: 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: #E9E9E9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #222222;
  margin-right:10px;
}

.person-info .img-box h3 {
  font-size: 40px;
  font-family: "Lato", 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: "Lato", 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: #E9E9E9;
  color: #222222;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
}

.order-info {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 20px;
}

.order-info h5,
.can-reason h5 {
  font-size: 18px;
  font-weight: 500;
  font-family: 'Satoshi-Medium';
}

.icon-h3 {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #444444;
  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: 'Satoshi-Medium';
}

.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: "Lato", 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: "Lato", 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;
  margin-right:15px;
}

.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: 16px;
  font-family: 'Satoshi-Medium';
  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;
  right: 20px;
  top: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
}

.icon-h3.cancelled {
  background-color: #444444;
}

.select-blk {
  min-width: 150px;
}

.backto {
  font-size: 16px;
  color: #222222;
  display:inline-block;
  font-family: 'Satoshi-Regular';
}

.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;
  line-height: normal;
  font-family: 'Satoshi-Medium';
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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: "Lato", sans-serif;
}

.return-item {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  font-family: "Lato", 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: "Lato", 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: "Lato", 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: "Lato", 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:not(.quantity-input) {
  padding: 12px 20px
}


.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: "Lato", sans-serif;
  margin-top: 5px;
}

.write_review {
  color: #222222;
  font-weight: 500;
  text-decoration: underline;
  font-size: 16px;
  margin-top: 5px;
  font-family: "Lato", 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: "Lato", 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: "Lato", 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 20px 6px 40px;
  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;
  line-height: 30px;
  font-family: 'Satoshi-Bold';
  margin-bottom: 15px;
}

.blog-wrap .blog-content p {
  line-height: 28px;
  margin-bottom: 10px;
  color: rgb(34, 34, 34, .7);
}

.blog-content ul {
  margin-left: 20px;
}

.blog-content ul li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 38px;
  color: rgb(30, 30, 30, .7);
  list-style: disc;
}

.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: 15px;
  font-family: 'Satoshi-Bold';
}

.read_more i img {
  width: 14px;
}

.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: "Lato", 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: "Lato", 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: "Lato", 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;
  gap: 20px;
  /* space between icon and text */
  padding-top: 40px;
  padding-right: 25px;
  padding-left: 40px;
  /* 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-family: 'Satoshi-Bold';
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
}

.office-address .text-box p {
  margin: 3px 0 0;
  font-family: 'Satoshi-Medium';
  font-size: 16px;
  color: #444;
  line-height: 1.4;
  font-weight: 500;
}

.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.png);
  border-radius: 30px;
  padding: 30px 30px;
  background-size: cover;
}

.gmap iframe {
  border-radius: 30px;
  height: 415px;
  width: 100%;
  margin-top: 20px;
}


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;
  font-family: 'ClashDisplay-Medium';
}

.feel-free-to-visit .box-left p {
  color: #fff;
  font-size: 16px;
  font-family: 'ClashDisplay-Medium';
  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: #F6F6F6;
  color: #000;
  text-decoration: none;
}

.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: 'Satoshi-Medium';
}

.tracking-header h5 span {
  color: #222222;
}

/*.progress-track {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  position: relative;*/
/*}*/

/*.progress-track .step::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 15px;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 10px;*/
/*  background: #ffffff;*/
/*  z-index: 0;*/
/*}*/
/*.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;*/
/*}*/

/*.progress-track .step {*/
/*  position: relative;*/
/*  z-index: 3;*/
/*  flex: 1;*/
/*  width: 100%;*/
/*}*/
/*.circle {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 50%;*/
/*  border: 1px solid #444444;*/
/*  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: #43A047;*/
/*  background: #fff;*/
/*  color: #43A047;*/
/*}*/

/*.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%;
}

.tracking-updates {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 20px;
}

.tracking-updates h6 {
  font-size: 20px;
  font-family: 'Satoshi-Medium';
  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 #222222;
  background: #222222;
  z-index: 55;
}

.timeline li.completed::before {
  background: #222222;
  border-color: #222222;
}

.timeline li .title-sm {
  font-weight: 500;
  font-size: 14px;
  color: rgb(34, 34, 34, .5);
  display: flex;
  font-family: "Lato", sans-serif;
}

.timeline li .date {
  color: rgb(34, 34, 34, .5);
  font-size: 12px;
  margin-left: 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: #222222;
}

.timeline li.completed .title-sm {
  color: #222222
}

.timeline li.completed .date {
  color: #222222;
  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;
} */

.product-page {
  padding-bottom: 40px;
}

.product-page .product-box-img-wrap {
  height: 300px;
}

.sold-status {
  color: var(--primary-color);
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.yr-warranty {
  font-family: "Lato", 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-left: 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: "Lato", 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: "Lato", 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: "Lato", 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: "Lato", sans-serif;
  font-weight: 700;
}

.side-product-card-original-price {
  color: #222222;
  font-family: "Lato", 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: "Lato", 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: "Lato", 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: "Lato", 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: "Lato", 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: #fff;
  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: #777777;
}

.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;
}


.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 {
  background-color: #F6F6F6;
}

.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-family: 'Satoshi-Bold';
  font-weight: 700;
}

.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-left: 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: 700;
  font-family: 'Satoshi-Bold';
}

.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;
  right: 15px;
  top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  z-index: 55;
}

.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;
  right: 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: 0px;
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 10px;
}

.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: 'Satoshi-Regular';
  font-weight: normal;
  color: #222222;
}

/* Styles all chevrons UNLESS they are inside an .increment-btn */
:not(.increment-btn)>.fa-chevron-right {
  font-size: 13px;
}

.clear-filters {
  position: absolute;
  right: 0px;
  top: 5px;
  font-family: 'Satoshi-Medium';
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 0;
}

.filters .custom-accordion h4 .accordion-button {
  font-size: 16px;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
}

.filters .custom-accordion .accordion-button {
  font-size: 14px;
  font-family: 'Satoshi-Medium';
  font-weight: 500;
  color: #222222;
  padding: 15px 0;
  /* border-bottom: 1px solid #f0f0f0; */
}

.filters .custom-accordion .accordion-item {
  border: none;
}

.filters .style1 {
  margin: 0;
  border-top: 1px solid #f0f0f0;
  opacity: 1;
}

/* Sub Accordion Styles */
.sub-accordion .accordion-item {
  border: none;
  background: none;
}

.sub-accordion .accordion-button {
  font-size: 15px;
  font-family: 'Satoshi-Medium';
  font-weight: 500;
  color: #222222;
  padding: 12px 0;
  background: none !important;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-accordion .accordion-button.active-text {
  color: var(--primary-color);
}

.sub-accordion .accordion-button::after {
  display: none;
}

.sub-accordion .accordion-button i {
  font-size: 14px;
  color: #222222;
  transition: transform 0.2s;
}

/* Nested List Styles */
.nested-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.nested-list li {
  margin-bottom: 8px;
  position: relative;
}

.nested-list li::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: #222222;
}

.nested-list li a {
  font-size: 14px;
  color: #222222;
  font-family: 'Satoshi-Regular';
  transition: color 0.2s;
}

.nested-list li a:hover {
  color: var(--primary-color);
}

/* Brand Section Styles */
.search-box-2 .form_fi2 {
  border: 1px solid #EEEEEE;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
}

.search-box-2 .btn-search2 {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #CCCCCC;
}

/* Custom Red Scrollbar */
.custom-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 10px;
}

.custom-scroll::-webkit-scrollbar {
  width: 3px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Checkbox Styles in Filters */
.filters .form-check {
  margin-bottom: 15px;
  padding-left: 0;
  display: flex;
  align-items: center;
}

.filters .form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  margin: 0;
}

.filters .form-check-label {
  font-size: 15px;
  color: #222222;
  font-family: 'Satoshi-Regular';
  cursor: pointer;
  line-height: 1;
}

.filters .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Specific alignments for Brand and Size */
#accordionBrand .form-check-input {
  margin-right: 6px;
  margin-left: 6px;
}

#accordionSize .form-check {
  justify-content: space-between;
}

#accordionSize .form-check-input {
  margin-left: 5px;
  margin-right: 5px;
}

/* Price Section Styles */
.price-value-text {
  font-size: 16px;
  color: #222222;
  font-family: 'Satoshi-Bold';
}

/* jQuery UI Slider Customization */
.ui-slider-horizontal {
  height: 2px !important;
  background: #EEEEEE !important;
  border: none !important;
}

.ui-slider-range {
  background: var(--primary-color) !important;
}

.ui-slider-handle {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid var(--primary-color) !important;
  top: -9px !important;
  cursor: pointer !important;
  outline: none !important;
}

.accordion-button:focus {
  box-shadow: none;
}




.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-left: -.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: "Lato", sans-serif;
  font-size: 14px;
}

.header-search-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #222;
  font-size: 16px;
  cursor: pointer;
}

.about h2 {
  font-size: 40px;
  font-family: 'Satoshi-Bold';
  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;
  font-size: 16px;
  line-height: 28px;
  color: #252525;
  font-weight: 400;
}

.content-page ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.content-page ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.content-page ol li {
  list-style: decimal;
  font-size: 16px;
  line-height: 28px;
  color: #252525;
  font-weight: 400;
}

.inner-banner h1 {
  color: #fff;
  font-weight: 700;
  margin-left: 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;
}

.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: 'Recoleta DEMO';
  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: 'Recoleta DEMO';
}

.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: 'Recoleta DEMO';
  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: 'Recoleta DEMO';
  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;
}


.content-page p:last-child {
  margin-bottom: 0px;
}

/* Scroll to Top */
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 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;
  left: 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;
  gap: 10px;
}

.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
}

.lan-switch .form-select {
  background-color: transparent;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  background: #47201A;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 20s linear infinite;
  gap: 20px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 0px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: relative;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* half shift for duplicate content */
}

.marquee-item img {
  width: 16px;
  margin-right: 10px;
  margin-left: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* pause on hover */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.home {
  background-color: #F2F2F2;
}

.product-rating {
  margin-bottom: 5px;
}

.pad-top {
  padding-top: 40px;
}

.cate-wrap {
  background-image: url(../images/category_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 30px 30px;
}

.cate-wrap a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cate-wrap .img-wrap {
  text-align: center;
}

.cate-wrap h3 {
  font-size: 18px;
  font-family: 'Clash Display Semibold';
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cate-wrap .count {
  font-family: 'Satoshi-Regular';
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.bg_1 {
  background-image: url(../images/best-deals-IMG.png);
  background-size: cover;
  background-position: center center;
}

.bestdealoftheweek {
  margin-top: 40px;
}

.bestdealoftheweek .section-title {
  font-size: 50px;
  font-weight: 600;
  color: #FFCBAF;
  margin-bottom: 30px;
}

.deal-product {
  padding: 20px 20px;
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  gap: 20px;
  margin-top: 7.5px;
  margin-bottom: 7.5px;
  align-items: center;
}

.deal-product .img-box-2 {
  width: 40%;
  border-radius: 10px;
  border: 1px solid #DFDFDF
}

.deal-product .img-box-2 img {
  max-width: 300px;
  border-radius: 10px;
  width: 100%;
}

.deal-product .deal-details {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.ofr-amount {
  background-color: #008000;
  padding: 10px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 5px;
  font-family: 'Satoshi-Medium';
  margin-bottom: 10px;
}

.category-wise-products {
  border-radius: 20px;
}

.category-wise-products .col-left {
  padding: 50px 30px;
  width: 30%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.water-heater .category-wise-products-wrap .col-left {
  background: linear-gradient(90deg, rgba(52, 48, 80, 1) 0%, rgba(170, 93, 75, 1) 50%);
}

.category-wise-products .col-right {
  width: 70%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.category-wise-products h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Clash Display Semibold';
  text-transform: uppercase;
}

.category-wise-products p {
  color: #fff
}

.shop-now-btn {
  color: #ED992E;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.category-wise-products .img-box-3 img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product-card.style-2 {
  padding: 0;
  border-radius: 0px;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

.product-card.style-2 .img-box {
  box-shadow: none;
}



.product-card.style-2 .price {
  font-size: 16px;
}

.product-card.style-2 .price del {
  font-size: 14px;
}

.product-card.style-2 .price-ic img,
.product-card.style-2 .striked-price-ic img {
  width: 20px;
}

.product-card.style-2 .striked-price-ic {
  top: 0px
}

.category-wise-products-wrap {
  display: flex;
}

/* .product-card.style-2 {
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

.product-card.style-2:last-child {
  border-bottom: none;
} */

.threegrid {
  margin-top: 40px;
}

.threegrid .img-box-4 img {
  border-radius: 20px;
}

.threegrid .col-blk:last-child .img-box-4 {
  margin-bottom: 0px;
}

.bulkorder-right img {
  width: 100%;
}

/* .bg_2 {
  background-image: url(../images/bulkorder_BG.png);
  background-size: cover;
  background-position: center center;
} */

.bulkorder-left {
  max-width: 675px;
  width: 96%;
  padding-top: 70px;
  padding-bottom: 70px;
}

.bulkorder-left h4 {
  font-family: 'Clash Display Medium';
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.bulkorder-left h3 {
  font-family: 'Clash Display Semibold';
  font-size: 70px;
  line-height: 70px;
  color: #FF9FA1;
  font-weight: 600;
  margin-bottom: 20px;
}

.bulkorder-left p {
  color: #fff;
  font-size: 20px;
  font-family: 'Satoshi-Regular';
  line-height: 40px;
}

.contact-btn {
  color: #FF9FA1;
  font-size: 20px;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
  padding: 15px 45px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
}

.contact-btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.contact-btn:hover .my-arrow {
  color: var(--primary-color);
}

.bulkorders .col-left {
  justify-content: end;
  display: flex;
  align-items: center;
}

.bulkorders .col-right {
  justify-content: center;
  display: flex;
  align-items: center;
}

.threegrid .img-box-4 {
  display: block;
}

.bulkorder-right {
  width: 100%;
}

.pipe-fitting .category-wise-products-wrap .col-left {
  background: #2F3744;
  background: linear-gradient(90deg, rgba(47, 55, 68, 1) 0%, rgba(75, 78, 95, 1) 50%);
}

.shop-now-btn.style-2 {
  color: #FF9A9D;
}

.ofr-slider {
  margin-top: 40px;
}

.ofr-slider .img-wrap-2 img {
  border-radius: 20px;
}

.bg_3 {
  background-image: url(../images/enq_bg.png);
  background-size: cover;
  background-position: center center;
}

.enuire_now h2 {
  color: #fff;
}

.enuire_now p {
  color: #fff;
}

.my-arrow {
  color: #fff;
  width: 24px;
  height: 24px;
}

.enquiry-card {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px 30px;
}

.enquiry-card .form-control {
  background: transparent !important;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  padding-left: 0;
  padding-top: 0px;
}

.enquiry-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.enquiry-card.form-control:focus {
  box-shadow: none;
  border-color: white !important;
}

.enquiry-card h3 {
  color: #fff;
  font-size: 30px;
  font-family: 'Clash Display Semibold';
  font-weight: 600;
  margin-bottom: 20px;
}

.submit_btn {
  padding: 15px 30px;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  font-family: 'Satoshi-Bold';
  border: none;
  width: 100%;
}

.submit_btn svg {
  width: 24px
}

.enuire_now .enq-left {
  padding-right: 10%;
}

.enuire_now .enq-left p {
  font-size: 20px;
  color: #fff;
  font-family: 'Satoshi-Regular';
  line-height: 40px;
}

.swiper-button-disabled {
  opacity: .5;
}


.trustpilot-card {
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 30px 30px
}

.trustpilot-card p {
  font-family: 'Satoshi-Medium';
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.trustpilot-card p.small {
  font-family: 'Satoshi-Regular';
  font-size: 16px;
  font-weight: 400;
}

.testimonial-item {
  background: #fff;
  padding: 30px 30px;
  height: 100%;
}

.lead-text {
  font-family: 'Satoshi-Regular';
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 0;
}

.tp-banner {
  background-color: #1c1c1c;
}

.btn-tp-arrow {
  background-color: #00b67a;
  /* Trustpilot Green */
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.display-4 {
  font-family: 'Clash Display Semibold';
  font-weight: 600;
}

.review-head {
  font-family: 'Satoshi-Bold';
  font-size: 24px;
  font-weight: 700;
}

.tp-banner {
  padding: 20px 20px
}

.testimonial .row {
  display: flex;
  align-items: stretch;
}

.trustpilot-card {
  height: 100%;
}

.edge-to-edge {
  margin-right: calc((100vw - 1280px) / -2);
  overflow: hidden;
  height: 100%;
}

.tp-stars img {
  max-width: 200px;
}

.subscribe-section {
  background-color: #e0e0e0;
  padding-top: 50px;
  padding-bottom: 50px;
}

.subscribe-section h2 {
  font-family: 'Satoshi-Bold';
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subscribe-section p {
  font-family: 'Satoshi-Regular';
  font-size: 20px;
  font-weight: 400;
}

.newsletter-input {
  border-radius: 8px;
  border: none;
  padding: 12px 20px;
}

.btn-red {
  background-color: #c42727;
  color: white;
  border-radius: 8px;
  font-weight: 600;
}

.footer-bg {
  background-color: #111111;
}

.footer-heading {
  font-family: 'Satoshi-Bold';
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-left: 15px;
  color: #fff;
}

/* The red vertical bar next to headings */
.footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background-color: #c42727;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.footer-contact-info p,
.footer-contact-info a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  line-height: 28px;
}

footer .box-4 {
  padding-left: 2.5%;
}

.position-fixed {
  right: 20px;
  bottom: 80px;
  z-index: 44;
}

.position-fixed ul li a {
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
}

.custom_background {
  background-color: #F6F6F6;
}

.login-container {
  padding: 50px 20px
}

.login-card {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 50px;
  border: 1px solid #B72629;
  border-radius: 15px;
  background: #fff;
  text-align: left;
}

.login-card h2 {
  font-family: 'Satoshi-Bold';
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 10px;
}

.login-card p {
  color: rgb(30, 30, 30, .5);
  font-family: 'Satoshi-Medium';
  font-size: 16px;
}

/* .input-group {
  margin-bottom: 20px;
} */

.input-group label {
  display: block;
  margin-bottom: 15px;
  font-family: 'Satoshi-Medium';
  font-size: 20px;
}

.input-group .input_fi {
  width: 100%;
  padding: 15px;
  border: none;
  background-color: #F6F6F6;
  border-radius: 10px !important;
  box-sizing: border-box;
  width: 100%;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-gray);
}

.forgot-link {
  text-align: right;
  margin-bottom: 25px;
}

.forgot-link a {
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  color: rgba(34, 34, 34, .7);
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 14px;
  /* Increased padding for a more modern 'chunky' feel */
  background: linear-gradient(90deg, rgba(183, 38, 41, 1) 0%, rgba(183, 38, 38, 1) 100%);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  /* Slightly rounder for a modern look */
  font-size: 20px;
  /* 24px is quite large; 20px usually balances better with 16px text */
  font-family: 'Satoshi-Bold';
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(183, 38, 41, 0.2);
  /* Soft red shadow */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn:hover {
  background: #fff;
  color: rgba(183, 38, 41, 1);
  border: 1px solid rgba(183, 38, 41, 1);
  box-shadow: 0 6px 20px rgba(183, 38, 41, 0.3);
  transform: translateY(-2px);
  /* Subtle lift effect */
}

.login-btn:active {
  transform: translateY(0px);
  /* Returns to normal when clicked */
}

/* Add this below the .login-btn:hover block */
.login-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.login-btn:hover::after {
  left: 100%;
}

.signup-text {
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
}

.signup-text a {
  color: var(--primary-color);
  font-family: 'Satoshi-Bold';
  text-decoration: none;
  font-size: 16px;
}

/* 1. Styling the Eye Icon */
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgba(30, 30, 30, 0.5);
  /* Matching your paragraph color */
  font-size: 18px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  /* Changed from border to height */
}

.divider::before {
  background: linear-gradient(270deg, rgba(183, 38, 41, 1) 0%, rgba(183, 38, 38, 0) 100%);
}

.divider::after {
  background: linear-gradient(90deg, rgba(183, 38, 41, 1) 0%, rgba(183, 38, 38, 0) 100%);
}

.divider span {
  padding: 0 15px;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  color: rgba(30, 30, 30, 0.5);
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-gray);
  /* You would add background-image icons here */
}

.toggle-password i {
  transition: color 0.3s ease;
}

.toggle-password:hover i {
  color: #B72629;
}

/* .backto {
  color: rgba(30, 30, 30, 0.5);
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  margin-bottom: 10px;
} */

.backto i {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.resend-otp {
  font-family: 'Satoshi-Medium';
  font-size: 16px;
  color: rgba(30, 30, 30, 0.7);
  justify-content: end;
  display: flex;
  margin-bottom: 15px;
}

.resend-otp a {
  color: var(--primary-color);
  margin-left: 10px;
}

.brand-thumb {
  margin-bottom: .5rem;
}

.brand-thumb img {
  max-width: 400px;
}

/*.product-page .col-blk {*/
/*  margin-bottom: 24px;*/
/*}*/

.bottom-fixed li img {
  max-width: 25px;
}

.prdt-code {
  font-family: 'Satoshi-Regular';
  color: rgb(34, 34, 34, .7);
  font-size: 14px;
  /*margin-bottom: 1rem;*/
}

.prdt-code span {
  color: #222222;
  margin-right: 7px;
}

.pdf-spec-blk button {
  padding: 15px 15px;
  background-color: #D9DCE9;
  border-radius: 5px;
  font-family: 'Satoshi-Medium';
  font-size: 14px;
  font-weight: 500;
  border: none;
}

.pdf-spec-blk button i {
  margin-right: 5px;
}

/* Offer Tag */
.offer-tag {
  background-color: #22a651;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Satoshi-Bold';
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-left: 10px;
}

/* Warranty Block */
.warranty-blk {
  font-size: 14px;
  font-family: 'Satoshi-Medium';
  color: #222222;
}

.warranty-blk img {
  width: 22px;
}

/* MRP / VAT Row */
.mrp-price p {
  text-decoration: line-through;
  color: rgb(34, 34, 34, .5);
  font-size: 20px;
  font-family: 'Satoshi-Regular';
  font-weight: 400;
}

.mrp-price i {
  opacity: .5;
  position: relative;
  top: -2px;
}

.vat-text {
  font-size: 20px;
  color: #222222;
  font-family: 'Satoshi-Regular';
}

/* Attribute Dropdowns */
.attr-dropdowns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
}

.attr-row {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
}

.attr-label {
  font-size: 14px;
  font-family: 'Satoshi-Regular';
  color: rgb(34, 34, 34, .55);
  min-width: 90px;
  flex-shrink: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.attr-select {
  flex: 1;
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 28px 0 0 !important;
  font-size: 15px;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
  color: #222222;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.attr-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #888;
  pointer-events: none;
}

/* Tabby Strip */
.tabby-strip {
  background-color: #e8eaf6;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'Satoshi-Regular';
  color: #222222;
}

.tabby-strip i {
  position: relative;
  top: -1px;
}

.tabby-logo {
  height: 28px;
  width: auto;
}

/* OR Divider */
.or-divider span {
  font-size: 13px;
  color: rgb(34, 34, 34, .5);
  font-family: 'Satoshi-Regular';
  white-space: nowrap;
}

.or-divider hr {
  border-color: rgb(34, 34, 34, .2);
}

/* Pay with Link Button */
.pay-with-link {
  display: block;
  background-color: #00D66F;
  color: #222;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Satoshi-Bold';
  font-weight: 500;
  transition: background-color 0.3s ease;
}

/* .pay-with-link:hover {
  background-color: #00a843;
  color: #fff;
} */

/* Bulk Orders Banner */
.bulk-orders-banner {
  background: #F4D9F2;
  /* background: linear-gradient(90deg, rgba(255, 59, 183, 0.62) 0%, rgba(128, 36, 122, 0.5) 100%); */
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Satoshi-Regular';
  color: #333;
}

.bulk-link {
  color: #c2185b;
  font-weight: 700;
  font-family: 'Satoshi-Bold';
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.bulk-link:hover {
  text-decoration: underline;
  color: #880e4f;
}

/* Wishlist & Share */
.wishlist-share {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

.wishlist-share-btn {
  font-size: 13px;
  font-family: 'Satoshi-Medium';
  font-weight: 500;
  color: #444;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.wishlist-share-btn i {
  margin-right: 5px;
}

.wishlist-share-btn:hover {
  color: #B72629;
}

.price-blk i {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.product-spec {
  padding-top: 30px;
  padding-bottom: 30px
}

/* Custom Tab Styling to match your image */
.product-spec .nav-pills .nav-link {
  color: #333;
  background-color: #e2e3e5;
  /* Light grey background */
  margin-right: 15px;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Satoshi-Bold';
  transition: all 0.3s ease;
}

.product-spec .nav-pills .nav-link.active {
  background-color: #b72a2a !important;
  /* The specific red color */
  color: white !important;
}


.product-spec .tab-content {
  margin-top: 30px;
  color: #555;
  line-height: 1.8;
}

.product-spec .fan-model-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

ul.product-specs {
  list-style-type: disc;
  padding-left: 20px;
}

ul.product-specs li {
  list-style: disc;
}


.cart-page .cart-items {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 15px;
}

.cart-page .item-img {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.cart-page .item-img img {
  margin-right: 0px;
}

.cart-page .cart-items .box-1 {
  width: 60%;
  display: flex;
  align-items: center;
  padding-right: 5%;
}

.cart-wrap h3 {
  font-family: 'Satoshi-Medium';
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.cart-img-thumb {
  height: 120px;
  width: 120px;
  border-radius: 15px;
  margin-right: 20px;
  border: 1px solid #CCCCCC;
  position: relative;
  flex-shrink: 0;
}

.cart-img-thumb img {
  border-radius: 15px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
}

.cart-page .cart-items .box-2 {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cartitem-price span {
  font-family: 'Satoshi-Medium';
  font-size: 24px;
  font-weight: 500;
}

.cartitem-price .price-ic img {
  width: 26px;
}

.cartitem-price .price-ic {
  position: relative;
  top: -5px;
}

.cart-page .cart-items {
  margin-bottom: 20px;
}

/* Sidebar Styles */
.cart-page .sidebar-section {
  margin-bottom: 15px;
  padding: 15px 15px;
  border-radius: 15px;
  background-color: #fff;
}

.cart-page .section-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-family: 'Satoshi-Bold';
}

.cart-page .section-title i {
  font-size: 18px;
  color: #444;
}

.cart-page .grey-box {
  background: #f8f8f8;
  border-radius: 8px;
}

/* Coupon Box */
.cart-page .coupon-box {
  display: flex;
  padding: 12px 16px;
}

.cart-page .coupon-box input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.cart-page .coupon-box button {
  background: none;
  border: none;
  color: #bd2a2a;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

.cart-page .shipping-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  cursor: pointer;
  padding: 15px 15px;
  font-family: 'Satoshi-Regular';
}

.cart-page .shipping-row:last-child {
  margin-bottom: 0;
}

.cart-page .shipping-row input {
  margin-right: 12px;
  accent-color: #000;
  transform: scale(1.1);
}

.cart-page .shipping-price {
  font-weight: 500;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  min-width: 90px;
  text-align: right;
}

/* Order Summary */
.cart-page .summary-box {
  padding: 20px 16px;
}

.cart-page .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 16px;
  font-family: 'Satoshi-Regular';
  font-weight: 400;
  color: #222222;
}

.cart-page .summary-row .val {
  font-family: 'Satoshi-Medium';
  font-weight: 500;
  color: #222222;
  min-width: 90px;
  text-align: right;
}

.cart-page .summary-row.discount .val {
  color: #198754;
}

.cart-page hr.summary-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 16px 0;
}

.cart-page .summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  color: #222;
}

.cart-page .summary-total span:last-child {
  font-family: 'Satoshi-Medium';
  font-size: 20px;
}

/* Proceed Button */
.cart-page .btn-pay {
  display: block;
  width: 100%;
  background: #ba3030;
  color: #fff;
  text-align: center;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 20px;
  font-family: 'Satoshi-Bold';
}

.cart-page .btn-pay:hover {
  background: #9e2727;
}

.price-symbol-c {
  position: relative;
  top: -2px;
}

.price-symbol-c img {
  width: 20px;
}

/* Checkout V2 Styles */
/* .checkout-v2 .section-title {
  font-size: 24px;
  font-family: 'Satoshi-Bold';
  margin-bottom: 20px;
  color: #222;
} */

.checkout-v2 .add_new_addr_btn {
  border: 1px solid #B72629;
  padding: 8px 15px;
  border-radius: 8px;
  color: #B72629;
  font-family: 'Satoshi-Medium';
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
}

.address-card-v2 {
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.address-card-v2.selected {
  border-color: #B72629;
}

.address-card-v2 .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: none;
  padding: 0;
  background: transparent;
}

.address-card-v2 .name-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.address-card-v2 .name-section h4 {
  font-size: 18px;
  font-family: 'Satoshi-Bold';
  margin: 0;
  color: #222;
}

.address-card-v2 .change-link {
  color: #222;
  text-decoration: none;
  font-family: 'Satoshi-Medium';
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}

.address-card-v2 .change-link i {
  font-size: 14px;
}

.address-card-v2 .addr-details {
  margin-top: 15px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.address-card-v2 hr {
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #eee;
  opacity: 1;
}

.address-card-v2 .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  padding: 0;
  background: transparent;
}

.address-card-v2 .phone {
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  color: #222;
}

.verify-badge {
  background-color: #E8F5E9;
  color: #2E7D32;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-family: 'Satoshi-Medium';
  display: inline-block;
}

/* Radio Card Row Styles */
.radio-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.radio-card-v2 {
  border: 1px solid #EEEEEE;
  border-radius: 0px;
  padding: 20px;
  background: #fff;
  margin-bottom: -1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.radio-group-v2 .radio-card-v2:first-child {
  border-radius: 12px 12px 0 0;
}

.radio-group-v2 .radio-card-v2:last-child {
  border-radius: 0 0 12px 12px;
  margin-bottom: 0;
}

.radio-card-v2.selected {
  border-color: #B72629;
  z-index: 5;
  border-radius: 0 !important;
}

.radio-group-v2 .radio-card-v2.selected:first-child {
  border-radius: 12px 12px 0 0 !important;
}

.radio-group-v2 .radio-card-v2.selected:last-child {
  border-radius: 0 0 12px 12px !important;
}

.radio-card-v2 .info-part {
  display: flex;
  align-items: center;
  gap: 12px;
}

.radio-card-v2 label {
  font-size: 18px;
  font-family: 'Satoshi-Medium';
  margin: 0;
  cursor: pointer;
  color: #222;
  display: flex;
  align-items: center;
}

.radio-card-v2 .price-part {
  font-size: 18px;
  font-family: 'Satoshi-Bold';
  color: #222;
  display: flex;
  align-items: center;
  gap: 5px;
}

.radio-card-v2 .tabby-badge {
  height: 20px;
  margin-left: 10px;
}

/* Custom Checkbox/Radio */
.checkout-v2 .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  border: 1px solid #222;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.checkout-v2 .form-check-input:checked {
  background-color: transparent;
  border-color: #222;
}

.checkout-v2 .form-check-input:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #222;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkout-v2 .form-check-input:focus {
  box-shadow: none;
}

/* Proceed Button right align */
.proceed-btn-wrap {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  padding-bottom: 40px;
}

.btn-proceed-pay-v2 {
  background-color: #B72629;
  color: #fff !important;
  padding: 12px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-family: 'Satoshi-Bold';
  border: none;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-proceed-pay-v2:hover {
  background-color: #9E2124;
}



.checkout-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.checkout-product-item:last-child {
  margin-bottom: 0;
}

.checkout-item-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.checkout-item-thumb {
  width: 65px;
  height: 65px;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

.checkout-item-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-details h5 {
  font-size: 14px;
  font-family: 'Satoshi-Medium';
  margin-bottom: 5px;
  color: #222;
  line-height: 1.4;
}

.checkout-item-details .qty {
  font-size: 14px;
  color: #777;
  font-family: 'Satoshi-Medium';
}

.checkout-item-price {
  font-size: 18px;
  font-family: 'Satoshi-Bold';
  color: #222;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sidebar-section hr.header-divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 15px 0;
  opacity: 1;
}

/* Modal V2 Styles */
.modal.v2 .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  background: #f8f8f8;
}

.modal.v2 .modal-header-v2 {
  padding: 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.close-btn-round {
  width: 24px;
  height: 24px;
  background: #ccc;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.modal.v2 .modal-body-content {
  padding: 0 30px 30px 30px;
}

.modal.v2 .modal-body-content .row {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin: 0;
}

.modal.v2 .form-control.v2,
.modal.v2 .form-select.v2,
.form-select {
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  color: #222;
  font-family: 'Satoshi-Medium';
}

.modal.v2 .form-control.v2::placeholder {
  color: #999;
}

.modal.v2 .form-control.v2:focus,
.modal.v2 .form-select.v2:focus {
  border-color: #B72629;
  box-shadow: none;
}

.modal.v2 .form-check.v2 .form-check-input {
  border: 1px solid #999;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
}

.modal.v2 .form-check.v2 .form-check-input:checked {
  background-color: #fff;
  border-color: #999;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23B72629' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.modal.v2 .form-check.v2 .form-check-label {
  font-size: 16px;
  color: #555;
  margin-left: 10px;
  font-family: 'Satoshi-Medium';
}

.modal.v2 .modal-footer-v2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.btn-cancel-link {
  background: none;
  border: none;
  color: #B72629;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  padding: 0;
  text-decoration: none;
}

.btn-save-address {
  background: #B72629;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  transition: background 0.3s;
}

.modal.v2 .btn-save-address:hover {
  background: #9E2124;
}

/* Verify Mobile Modal Styles */
.verify-mobile-modal .modal-content {
  border-radius: 12px !important;
  max-width: 600px;
  margin: 0 auto;
}

.verify-mobile-modal .modal-header-v2 {
  padding: 24px 30px !important;
}

.verify-mobile-modal .modal-header-v2 .modal-title {
  font-family: 'Satoshi-Bold';
  font-size: 22px;
}

.verify-mobile-modal .close-btn-round {
  width: 24px;
  height: 24px;
  background: #ccc;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.verify-mobile-modal .modal-body-content {
  padding: 0 30px 30px !important;
}

.verify-mobile-modal .verify-subtitle {
  font-family: 'Satoshi-Medium';
  font-size: 14px;
  color: #888;
}

.verify-mobile-modal .verify-subtitle strong {
  color: #222;
}

.verify-mobile-modal .otp-input {
  background: #f8f8f8;
  border: none;
  height: 50px;
  font-size: 16px;
  border-radius: 8px;
  padding: 0 20px;
}

.verify-mobile-modal .resend-text {
  font-family: 'Satoshi-Medium';
  font-size: 14px;
  color: #666;
}

.verify-mobile-modal .resend-text a {
  color: #B72629 !important;
}

.success .cart-summary {
  background-color: #fff;
  border: none
}

.success .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: 'Satoshi-Regular';
  font-weight: 400;
  color: #222222;
}

.success .summary-row h4 {
  font-family: 'Satoshi-Medium';
  font-size: 22px;
}

.success .summary-row .val {
  font-family: 'Satoshi-Medium';
  font-weight: 500;
  color: #222222;
  min-width: 90px;
  text-align: right;
}

.success .summary-row.discount .val {
  color: #198754;
}

.success .summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-family: 'Satoshi-Medium';
  color: #222;
}

.success .summary-total span:last-child {
  font-family: 'Satoshi-Medium';
  font-size: 20px;
}

.success .cart-summary h4 {
  font-family: 'Satoshi-Medium';
  font-size: 22px;
}

.success .cart-summary h4 span {
  font-family: 'Satoshi-Regular';
}

.mobile-no {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px
}

.mobile-no .phone i {
  margin-right: 10px;
}

.verified {
  background-color: #43A047;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
}

.verified i {
  margin-right: 5px;
  top: -3px;
  position: relative;
}

.didnot-receive span {
  color: var(--primary-color);
  font-family: 'Satoshi-Bold';
  cursor: pointer;
}

.reorder {
  background-color: var(--primary-color);
  color: #fff;
}

.price-ic-2 {
  width: 20px;
  opacity: 0.5;
  margin-right: 5px;
}

.lan-switch .form-select {
  padding: 10px 30px 10px 15px
}

/* New Search Header styling for search.html */
.new-search-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.new-search-input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 5px;
  background: #fff;
}

.new-search-input-box .form-control {
  border: none;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  border-radius: 50px;
  outline: none;
  flex-grow: 1;
  padding: 8px 10px;
}

.new-search-input-box .form-control:focus {
  box-shadow: none;
  outline: none;
}

.new-search-btn {
  background: #c42129;
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: all 0.3s ease;
}

.new-search-btn:hover {
  background: #a11c22;
  color: #fff;
}

.new-search-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
  z-index: 999;
  border: 1px solid #eee;
  height:300px;
  overflow:auto;
}

.new-search-dropdown.show {
  display: flex;
  flex-wrap: wrap;
}

.ns-left-results {
  flex: 0 0 70%;
  padding: 0;
  background: #fff;
}

.ns-right-matches {
  flex: 0 0 30%;
  background: #fbfbfb;
  border-left: 1px solid #eee;
}

.ns-suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ns-suggestion-list li {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
  cursor: pointer;
}

.ns-suggestion-list li:hover {
  background: #fdfdfd;
}

.ns-suggestion-list li:last-child {
  border-bottom: none;
}

.ns-img-wrap {
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: #fff;
}

.ns-img-wrap img {
  max-width: 90%;
  max-height: 90%;
}

.ns-item-text {
  font-size: 14px;
  color: #333;
}

.ns-match-section {
  margin-bottom: 0px;
}

.ns-match-title {
  background: #E4C0CB;
  color: #c42129;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 10px 15px;
  text-align: center;
}

.ns-match-list {
  list-style: none;
  padding: 15px;
  margin: 0;
}

.ns-match-list li {
  margin-bottom: 10px;
}

.ns-match-list li:last-child {
  margin-bottom: 0;
}

.ns-match-list li a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.ns-match-list li a:hover {
  color: #c42129;
}

.about-banner {
  position: relative;
}

.about-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 20px;
}

.about-banner .inner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: white;
  width: 100%;
  padding-left: 50px;
  font-family: 'Satoshi-Bold';
  font-size: 40px;
}

.about img {
  border-radius: 20px;
}

.infrastructur-banner {
  position: relative;
  margin-bottom: 20px;
}

.infrastructur-banner .inner-caption-2 {
  max-width: 900px;
  font-family: 'Satoshi-Bold';
  font-size: 36px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.infrastructur-banner .inner-caption-2 h2 {
  color: white;
  font-family: 'Satoshi-Bold';
  font-size: 36px;
  text-align: center;
}

.about h3:not(.product-title) {
  color: black;
  font-family: 'Satoshi-Bold';
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about h4 {
  color: black;
  font-family: 'Satoshi-Bold';
  font-size: 20px;
  margin-bottom: 15px;
}

.about ul {
  padding-left: 30px;
}

.about ul li {
  margin-bottom: 1rem;
  color: #252525;
  font-size: 16px;
  list-style: disc;
}

.dwld-brochure {
  font-family: 'Satoshi-Medium';
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 15px 20px;
  background-color: #444444;
  border-radius: 5px;
  border: none;
}

.img-box-02 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.video-box iframe {
  height: 700px;
}

.forward-delivery-product h2 {
  font-family: 'Satoshi-Bold';
  font-size: 50px;
  margin-bottom: 10px;
  color: #222;
}

.descr {
  font-family: 'Satoshi-Regular';
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-bottom: 0;
}

.img-box-5r {
  margin-top: 40px;
}

.valves-wrap {
  margin-top: 40px;
}

.valve-slider {
  margin-top: 40px;
}

.valve-slider .img-wrap-2 img {
  border-radius: 20px;
}

.forward-delivery-product .bulkorders {
  margin-top: 40px;
}

/* .bg_3 {
  background-image: url(../images/bulkorder-bg-3.png);
  background-size: cover;
  background-position: center center;
} */

.descr-2 {
  font-family: 'Satoshi-Regular';
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-bottom: 0;
}

.careers-page {
  padding-bottom: 40px;
}

.careers-intro .join-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #B72629;
  font-family: 'Satoshi-Medium';
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.careers-intro .join-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 12px;
  background-image: url(../images/line-.png);
  background-repeat: no-repeat;
  background-position: right;
}

.c_title {
  font-size: 50px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
  font-family: 'Clash Display Bold';
}

.careers-intro .desc-col {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

/* Search & Filter Bar */
.careers-filter-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  margin: 40px 0;
}

.careers-search-row {
  margin-bottom: 14px;
}

.careers-search-box {
  position: relative;
  width: 100%;
}

.careers-search-box .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #B72629;
  font-size: 17px;
}

.careers-search-box input {
  width: 100%;
  padding: 15px 16px 15px 40px;
  border-radius: 8px;
  font-size: 14px;
  color: #444;
  outline: none;
  transition: border-color 0.2s;
  background-color: #F6F6F6;
  border: none;
}

.careers-search-box input:focus {
  border-color: #B72629;
}

.careers-filter-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.careers-filter-row .filter-select {
  flex: 1;
  min-width: 160px;
  padding: 14px 35px 14px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  background: #F6F6F6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  border: none;
}

.careers-filter-row .filter-select:focus {
  border-color: #B72629;
}

/* Remote toggle */
.remote-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #555;
  white-space: nowrap;
  flex-shrink: 0;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
  background: #B72629;
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(18px);
}

/* ===== JOB ACCORDION ===== */
.jobs-list {
  margin-top: 20px;
}

.job-card {
  background: #fff;
  border: 1.5px solid #e6e6e6;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.job-card.open {
  border-color: #D0272B;
  box-shadow: 0 4px 20px rgba(183, 38, 41, 0.08);
}

/* Accordion trigger row */
.job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 30px;
  cursor: pointer;
  gap: 16px;
}

.job-card.open .job-header {
  padding: 30px 30px 15px;
}

.job-header-left {
  flex: 1;
}

.job-meta-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.job-meta-tags .tag {
  font-size: 16px;
  color: #B72629;
  font-family: 'Satoshi-Bold';
}

.job-meta-tags .tag.red {
  color: #B72629;
}

.job-meta-tags .sep {
  color: #ccc;
  font-size: 12px;
}

.job-header-left h3 {
  font-size: 30px;
  font-family: 'Satoshi-Bold';
  color: #111;
  margin: 0 0 6px;
}

.job-header-left .job-preview {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  /* Show only in collapsed state */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card.open .job-header-left .job-preview {
  display: none;
}

/* Right side of header: toggle btn + apply btn */
.job-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #B72629;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-apply:hover {
  background: #961f22;
  color: #fff;
  transform: translateY(-1px);
}

.btn-apply i {
  font-size: 12px;
}

/* Hide header actions when job card is open, because they move to the bottom */
.job-card.open .job-header-right {
  display: none !important;
}

.job-toggle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #e4e4e4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.job-card.open .job-toggle-btn {
  border-color: #B72629;
  background: #B72629;
  color: #fff;
}

.job-toggle-btn i {
  font-size: 13px;
  color: #666;
  transition: transform 0.3s, color 0.2s;
}

.job-card.open .job-toggle-btn i {
  transform: rotate(180deg);
  color: #fff;
}

/* Accordion body */
.job-body {
  display: none;
  padding: 0 30px 30px;
}

.job-card.open .job-body {
  display: block;
}

.job-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 10px;
}

.job-body .job-info-line {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.job-body .job-info-line strong {
  color: #222;
}

.job-body .email-highlight {
  color: #222222;
  font-weight: 500;
  font-family: 'Satoshi-Medium';
}

.job-body .job-location {
  font-size: 13.5px;
  color: #555;
  margin-top: 10px;
}

.job-body .job-location strong {
  color: #222;
}

.job-card:last-child {
  margin-bottom: 0px;
}

.custompara {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
}

/* Company Profile Section */
.company-profile-section {
  width: 100%;
  margin-top: 40px;
}

.company-profile-section .company-head {
  margin-bottom: 40px;
}

.company-profile-title {
  font-size: 40px;
  font-family: 'Satoshi-Bold';
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  white-space: nowrap;
}

.heading-line {
  height: 2px;
}

.line-left {
  background: linear-gradient(to right, rgba(183, 38, 41, 0), rgba(183, 38, 41, 1));
}

.line-right {
  background: linear-gradient(to left, rgba(183, 38, 41, 0), rgba(183, 38, 41, 1));
}

/* Catalog Card Layout */
.custom-catalog-grid {
  margin-top: 40px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.catalog-img-wrap img {
  width: 100%;
  display: block;
}

.catalog-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 2;
}

.bottom-shape-css {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: -1;
}

.bottom-shape-css .bg-left {
  width: calc(100% - 112px);
  background-color: #B72629;
  padding-left: 20px;
}

.bottom-shape-css .bg-hole {
  width: 112px;
  display: block;
  background-image: url(../images/download-cup.png);
  background-size: 100% 70px;
}

.bottom-shape-css .bg-right {
  width: 10px;
  background-color: #B72629;
}

.bottom-shape-bg {
  width: 100%;
  display: block;
}

/* .catalog-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 37px 0 20px;
} */

.catalog-title {
  color: #fff;
  font-family: 'Satoshi-Bold';
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.download-btn {
  position: absolute;
  right: 33px;
  bottom: 50px;
}

.download-btn img {
  width: 45px;
}

.catalog-card-content {
  padding-left: 20px;
  padding-top: 20px;
}

.feel-free-to-visit h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Clash Display Medium';
}

.feel-free-to-visit h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Clash Display Semibold';
}

.request-form {
  padding: 50px 50px;
  background-color: #fff;
  border-radius: 30px;
  height: 100%;
}

/* Custom Bottom Border Inputs */
.contact-form .custom-input {
  border: none;
  border-bottom: 1px solid #777777;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 17px;
  box-shadow: none;
  background-color: transparent;
}

.contact-form .custom-input:focus {
  border-bottom: 2px solid var(--primary-color);
  box-shadow: none;
  background-color: transparent;
  outline: none;
}

.contact-form .submit-btn {
  background-color: var(--primary-color);
  padding: 17px 30px;
  border-radius: 0px;
  font-family: 'Satoshi-Bold';
  margin-top: 10px;
  font-size: 20px;
  width: 100%;
  color: #fff;
  border: none;
  -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;
}

.contact-form .submit-btn:hover {
  background-color: #000;
  border-color: #000;
}

.request-map {
  margin-top: 40px;
}

.request-form h2,
.address-block-2 h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #222222;
  font-family: 'Clash Display Semibold';
}

.contact-form {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}

.address-block-2 {
  margin-top: 40px;
}

.gmap2 iframe {
  width: 100%;
  border-radius: 30px;
  height: 400px;
}

.office-address.style-2 {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.address-block-2 .box-right {
  padding: 30px 30px;
  background-color: #fff;
  border-radius: 30px;
}

.spacer {
  height: 50px;
}

.list-style-no {
  list-style: decimal;
}

.sellonanbi .section-1 {
  background-color: #F6F6F6;
}

.sellonanbi h2 {
  font-size: 30px;
  font-family: 'Satoshi-Bold';
  margin-bottom: 15px;
}

.sellonanbi .box-content p {
  font-size: 20px;
  line-height: 33px;
  color: rgba(0, 0, 0, 0.5);
}

.partner-program {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 20px;
}

.submit-btn-2 {
  background-color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: 'Satoshi-Bold';
  margin-top: 10px;
  font-size: 20px;
  width: 100%;
  color: #fff;
  border: none;
  -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;
}

.submit-btn-2:hover {
  background-color: #000;
  border-color: #000;
}


.how-it-works-timeline {
  padding: 30px 30px;
  background-color: #F8E5E5;
  border-radius: 20px;
  margin-top: 30px;
}

.timeline-step {
  display: flex;
  position: relative;
  /* margin-bottom: 10px; */
}

/* .timeline-step:after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 1px;
  border: dashed 1px rgba(34, 34, 34, 0.5);
} */

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step:last-child .step-content {
  padding-bottom: 0;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  position: relative;
}

.step-indicator .dot {
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 2;
  margin-top: 2px;
}

.step-indicator .line-v {
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-left: 1.5px dashed #A8A8A8;
  z-index: 1;
}

.timeline-step:last-child .step-indicator .line-v {
  display: none;
}

.step-content {
  padding-bottom: 20px;
}

.step-number {
  color: var(--primary-color);
  font-size: 16px;
  font-family: 'Satoshi-Bold';
  margin-bottom: 10px;
}

.step-title {
  font-size: 20px;
  font-family: 'Satoshi-Bold';
  color: #222;
  margin-bottom: 15px;
}

.step-content p {
  color: #888;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 0px;
}

.step-content p:last-child {
  margin-bottom: 0px;
}

.faq-section {
  background-color: #F6F6F6;
}

/* Custom Accordion FAQ */
.faq-section h3 {
  font-family: 'Satoshi-Bold';
  font-size: 24px;
  margin-bottom: 0px;
}

.custom-accordion2 {
  border-top: 1px solid #EAEAEA;
  margin-top: 15px;
  border-radius: 20px;
  overflow: hidden;
}

.custom-accordion2 .accordion-item {
  border: none;
  border-bottom: 1px solid #EAEAEA;
  border-radius: 0;
  margin-bottom: 0;
  background-color: #fff;
}

.custom-accordion2 .accordion-button {
  background-color: transparent;
  color: #222;
  box-shadow: none;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 0;
}

.custom-accordion2 .accordion-button:not(.collapsed) {
  padding: 30px 40px 10px;
}

.custom-accordion2 .accordion-button.collapsed {
  padding: 30px 40px;
}

.custom-accordion2 .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion2 .accordion-button:not(.collapsed) {
  background-color: #262626;
  color: #fff;
  border-radius: 0;
}

.custom-accordion2 .accordion-collapse {
  background-color: #262626;
}

.custom-accordion2 .accordion-body {
  padding: 0 100px 40px 125px;
  background-color: #262626;
  color: #D3D3D3;
  font-size: 15px;
  line-height: 1.8;
}

.custom-accordion2 .accordion-body p {
  color: #fff;
  margin-bottom: 0px;
}

.custom-accordion2 .acc-num-wrapper {
  min-width: 85px;
}

.custom-accordion2 .acc-num {
  font-size: 38px;
  color: #A5A5A5;
  font-family: 'Satoshi-Bold';
  line-height: 1;
}

.custom-accordion2 .accordion-button:not(.collapsed) .acc-num {
  color: #777;
}

.custom-accordion2 .acc-title {
  font-size: 20px;
  line-height: normal;
  font-family: 'Satoshi-Bold';
  text-transform: uppercase;
  margin-top: 0;
}

.custom-accordion2 .accordion-button::after {
  content: '\2b';
  font-family: 'Satoshi-Regular', sans-serif;
  background-image: none;
  color: #222;
  font-size: 30px;
  width: auto;
  height: auto;
  transform: none;
  margin-left: auto;
  font-weight: 300;
}

.custom-accordion2 .accordion-button:not(.collapsed)::after {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  background-image: none;
  color: #222;
  background-color: #fff;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transform: none;
}

.blog-details h4 {
  font-size: 20px;
  font-family: 'Satoshi-Bold';
  margin-bottom: 10px;
}

.lang_opt .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  width: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / .1);
  display: none;
  z-index: 10
}

.dropdown-toggle img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%
}

.dropdown-menu .option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer
}

.lang_opt .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.bulkorders a {
  display: block;
}

.bulkorders a img {
  width: 100%;
}

.pdf-spec-blk{margin-top:20px;}
.offer-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background:var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    font-weight: bold;
    font-size: 12px;
    z-index:4;
}
.offer-badge span {
    margin-right: 4px;
}
.office-address.last-box{margin-top:20px;height:auto;padding: 30px 30px;background-color: #fff;border-radius: 30px;}
.address-option .edit.linke{color: #222222;background-color: #F2F2F2;text-align: center;padding:3px 5px;}


/* Container */
.progress-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align to top so labels don't shift circles */
    position: relative;
    width: 100%;
    margin-top: 20px;
}

/* The Step Item */
.progress-track .step {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 3;
}

/* The Connecting Lines */
.progress-track .step::before, 
.progress-track .step::after {
    content: "";
    position: absolute;
    top: 20px; /* Half of circle height */
    left: 50%; /* Start from center of current circle */
    height: 4px;
    width: 100%;
    transform: translateY(-50%);
    z-index: -1;
}

/* Gray Background Line */
.progress-track .step::before {
    background: #CCCCCC;
}

/* Green Active/Completed Line */
.progress-track .step.completed::after {
    background: #43A047;
    width: 100%;
}

/* Hide the line for the last step */
.progress-track .step:last-child::before,
.progress-track .step:last-child::after {
    display: none;
}

/* Circles */
.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #CCCCCC;
    border: 2px solid #CCCCCC;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center the circle */
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
}

.step.completed .circle {
    background: #43A047;
    border-color: #43A047;
}

.step.active .circle {
    background: #fff;
    border-color: #43A047;
    color: #43A047;
}

/* Labels */
.progress-track .step .label {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

.step.completed .label, .step.active .label {
    color: #222;
    font-weight: 500;
}

#notifyModal .modal-header {
  border-bottom: 2px solid #B72629;
}
#notifyModal .modal-title {
  color: #B72629;
  font-weight: 600;
}
#notifyModal .close:hover {
  color: #B72629;
  opacity: 1;
}
#notifyModal .form-control:focus {
  border-color: #B72629;
  box-shadow: 0 0 0 0.2rem rgba(183, 38, 41, 0.25);
}
#notifyModal .btn-primary,#btnSubmitBulk {
  background-color: #B72629;
  border-color: #B72629;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
#notifyModal .btn-primary:hover,
#notifyModal .btn-primary:focus,
#notifyModal .btn-primary:active,
#notifyModal .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #961f22; /* 15% darker than theme color */
  border-color: #8c1d20;
  box-shadow: 0 0 0 0.2rem rgba(183, 38, 41, 0.5);
}
#notifyModal .btn-primary:disabled {
  background-color: #d16b6d;
  border-color: #d16b6d;
}
/* Custom Styling for Bulk Order Modal */
#bulkOrderModal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#bulkOrderModal .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
}

#bulkOrderModal .modal-title {
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

#bulkOrderModal .modal-body {
    padding: 1.5rem;
}

/* Enhancing Form Labels */
#bulkOrderModal .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Input Styling */
#bulkOrderModal .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    transition: all 0.3s ease;
}

#bulkOrderModal .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* The Info Alert (Product Context) */
#bulkOrderModal .alert-info {
    background-color: #e7f1ff;
    border: 1px dashed #0d6efd;
    color: #084298;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Action Buttons */
#btnSubmitBulk {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

#btnSubmitBulk:active {
    transform: scale(0.98);
}


/* Animation for Message Box */
#bulkOrderMsg {
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.4s ease-in-out;
}