/* cart global loader */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.7); */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  background: #fff;
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.animated-cart i {
  font-size: 50px;
  color: #f58220;
  animation: bounce 0.6s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-15px);
  }
}

.loader-content p {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

/* cart global loader end */

/* header cart badge  */
.cart-badge {
  top: -5px;
  right: -21px;
  font-size: 11px;
  min-width: 20px;
  height: 20px;
  color: #fff;
  padding: 0 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* header cart badge end */

/* product card custom  */
.wishlist-trigger-btn {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 30px;
  height: 26px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  z-index: 10;
  outline: none;
  transition: all 0.4s #ef4444;
}

.wishlist-trigger-btn i {
  font-size: 14px;
  color: #64748b;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.65, 0.4, 1),
    color 0.3s ease;
}

.wishlist-trigger-btn:hover {
  transform: scale(1.1);
  background: #ffffff00;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.2);
}

.wishlist-trigger-btn:hover i {
  color: #ef4444;
}

.wishlist-trigger-btn:active {
  transform: scale(0.92);
}

.wishlist-trigger-btn.is-active {
  background: #ffffff00;
  border-color: rgba(239, 68, 68, 0.3);
  animation: heartBlastBurst 0.5s cubic-bezier(0.34, 1.65, 0.4, 1) forwards;
}

.wishlist-trigger-btn.is-active i {
  color: #ef4444;
  font-weight: 900;
  animation: heartPopScale 0.5s cubic-bezier(0.34, 1.65, 0.4, 1) forwards;
}

@keyframes heartPopScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4) rotate(-15deg);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes heartBlastBurst {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }

  100% {
    box-shadow:
      0 0 0 15px rgba(239, 68, 68, 0),
      0 8px 25px rgba(239, 68, 68, 0.15);
  }
}

.premium-qty-switcher {
  width: 100%;
  height: 100%;
  /* background-color: #ffffff; */
  border: 1px solid #df8425;
  padding: 2px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(188, 38, 73, 0.08);
}

.qty-switch-btn {
  width: 40px;
  height: 100%;
  background-color: transparent;
  border: none;
  color: #df8425;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.qty-switch-btn:hover {
  background-color: rgba(188, 135, 38, 0.08);
}

.qty-switch-val {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  flex: 1;
  text-align: center;
}

/* product card end  */
/* cart off canvas  */
.fixed-add-to-cart.cart-dropdown {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  opacity: 1;
}

.fixed-add-to-cart.cart-hidden {
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.cart-toggle.link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #f7456f;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 14px 0 0 14px;
  padding: 6px 5px;
  width: 75px;
  min-height: 85px;
  cursor: pointer;
  box-shadow: -6px 10px 30px rgba(1, 131, 71, 0.2);
}

.cart-toggle.link:hover {
  background: #f7456f;
}

.cart-toggle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.cart-toggle-inner i.fi-rr-shopping-bag {
  font-size: 24px;
  margin-bottom: 6px;
}

.fixed-add-to-cart-text {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.cart-count {
  background: #f59e0b;
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-toggle .price {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  background: #ffffff;
  width: 100%;
  padding: 2% 2px;
  text-align: center;
  border-radius: 4px;
  margin: 5px 0 0 0;
}

.offcanvas.offcanvas-end {
  width: 400px;
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: -15px 0 40px rgba(15, 23, 42, 0.05);
  background: #ffffff;
}

/* Header styling */
.offcanvas-header {
  padding: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #fafafa;
}

.offcanvas-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offcanvas-title-wrapper h5 {
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.cart-items-indicator {
  background: rgba(131, 1, 1, 0.1);
  color: #bc2649;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.btn-close-custom {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-close-custom:hover {
  color: #0f172a;
  transform: rotate(90deg);
}

.offcanvas-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offcanvas-body::-webkit-scrollbar {
  width: 5px;
}

.offcanvas-body::-webkit-scrollbar-track {
  background: transparent;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: 10px;
}

.premium-cart-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  position: relative;
}

.cart-item-img-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 400;
  color: #0f172a;
  margin: 0 0 2px 0;
  line-height: 1.4;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 25px;
  color: #000000;
  margin: 0 0 3px 0;
}

.cart-qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 5px;
  width: fit-content;
  background: #ffffff;
}

.cart-qty-btn {
  background: transparent;
  border: none;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-qty-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.cart-qty-val {
  font-size: 13px;
  font-weight: 600;
  width: 30px;
  text-align: center;
  color: #0f172a;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #3b3b3c;
  cursor: pointer;
  font-size: 14px;
  padding: 8px;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #ef4444;
}

.offcanvas-cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.02);
}

.subtotal-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.subtotal-label {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.subtotal-price {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.cart-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-cart-btn {
  width: 100%;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  display: block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-cart-btn-checkout {
  background: #bc2649;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(1, 131, 71, 0.15);
}

.premium-cart-btn-checkout:hover {
  background: #c43657;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(1, 131, 71, 0.25);
}

.premium-cart-btn-view {
  background: #f1f5f9;
  color: #0f172a !important;
  border: 1px solid transparent;
}

.premium-cart-btn-view:hover {
  background: #e2e8f0;
}

@media (max-width: 450px) {
  .offcanvas.offcanvas-end {
    width: 100%;
  }
}

/* Empty Cart Premium Styling */
.empty-cart-icon-wrapper {
  width: 85px;
  height: 85px;
  background-color: rgba(188, 38, 73, 0.04);
  border: 1px dashed rgba(188, 38, 73, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 30px;
  color: #bc2649;
  animation: cartBagAmbient 2.2s cubic-bezier(0.25, 1, 0.2, 1) infinite
    alternate;
}

@keyframes cartBagAmbient {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(188, 38, 73, 0.08);
  }

  100% {
    transform: scale(1.06);
    box-shadow: 0 0 15px 5px rgba(188, 38, 73, 0.04);
  }
}

/* cart offcanvas end  */

/* button animation  */
.shake-on-hover:hover {
  animation: premiumShake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.shake-attention-infinite {
  animation: periodicShake 2s ease-in-out infinite;
  backface-visibility: hidden;
}

.shake-attention-infinite:hover {
  animation: premiumShake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes premiumShake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0) rotate(-0.5deg);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0) rotate(1deg);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0) rotate(-1deg);
  }

  40%,
  60% {
    transform: translate3d(3px, 0, 0) rotate(1deg);
  }
}

@keyframes periodicShake {
  0%,
  85%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  88% {
    transform: translate3d(-2px, 0, 0) rotate(-0.5deg);
  }

  91% {
    transform: translate3d(3px, 0, 0) rotate(1deg);
  }

  94% {
    transform: translate3d(-3px, 0, 0) rotate(-1deg);
  }

  97% {
    transform: translate3d(2px, 0, 0) rotate(0.5deg);
  }
}

/* button animation end  */

/* Product Details  */
.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-border {
  color: #d12d53;
  border-color: #d12d53;
  background-color: transparent;
}

.btn-border:hover {
  background-color: #d12d53;
  color: #fff;
}

.btn-filled {
  background-color: #bc2649;
  color: #fff;
}

.btn-filled:hover {
  background-color: #d12d53;
  color: #fff;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1ebd58;
  color: white;
}

.btn-call {
  background-color: #ff9800;
  color: white;
}

.btn-call:hover {
  background-color: #e68a00;
  color: white;
}

/* Product details  */

/* home brand section  */
/* .client-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.client-carousel {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  animation: scrollAnimation 40s linear infinite;
}

.client-item {
  flex: 0 0 calc(100% / 10);
  text-align: center;
  user-select: none;
}

.client-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background-color: #faf2f200;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.client-card img {
  width: auto;
  height: 60px !important;
  max-width: 100%;
  object-fit: contain !important;
}

@keyframes scrollAnimation {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-item {
    flex: 0 0 calc(100% / 3);
  }
}

@media (max-width: 480px) {
  .client-item {
    flex: 0 0 calc(100% / 2);
  }
}

.client-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

.client-card:hover {
  transform: translateY(-2px);
  background-color: #ffffff00;
  border-color: #f9a61c;
  box-shadow: 0 15px 30px rgba(255, 165, 0, 0.15);
}

.client-card:hover img {
  transform: scale(1.1);
  transition: transform 0.4s ease;
} */

/* end home brand section  */
.client-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.client-carousel {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  animation: none;
  user-select: none;
  will-change: transform;
}

.client-item {
  flex: 0 0 calc(100% / 9);
  text-align: center;
  user-select: none;
}

.client-card {
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background-color: #faf2f200;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;

  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.client-card img {
  width: auto;
  height: 70px !important;
  max-width: 100%;
  object-fit: contain !important;

  user-select: none;
  -webkit-user-drag: none;
}

.client-card:hover {
  transform: translateY(-2px);
  background-color: #ffffff00;
  border-color: #f9a61c;
  /* box-shadow: 0 15px 30px rgba(255, 165, 0, 0.15); */
}

.client-card:hover img {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

/* Desktop */
@media (max-width: 768px) {
  .client-item {
    flex: 0 0 calc(100% / 3);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .client-item {
    flex: 0 0 calc(100% / 2);
  }
}

/* combo cart  */
.combo-cart-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f5f8ed;
  border-radius: 8px;
  color: #85a63d;
}

.combo-cart-icon i {
  font-size: 20px;
  margin-bottom: 4px;
}

.combo-cart-icon span {
  font-size: 11px;
  font-weight: 600;
}

.combo-bundle-text {
  display: block;
  color: #85a63d;
  font-size: 11px;
  font-weight: 500;
  margin-top: -3px;
}

.combo-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 8px;
  background: #f1f6e8;
  color: #6f8f2e;
  border: 1px solid #dbe7c5;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
/* combo cart end  */
