:root{
  --clientPrimary: #E84A01;
  --clientSecondary: #49BB00;
  --clientTertiary: #0041AF;
  --clientPrimaryLight: #FFCFB9;
  --clientSecondaryLight: #CAFFDD;
  --clientTertiaryLight: #B3E5FF;
  --clientSuccess: #57CC99;
  --clientError: #F2545C;
  --clientAlert: #FFDE85;
  --clientDark: #878787;
}
#navHeader.fixed {
  animation: slideDown 0.5s forwards;
}
body{
  min-width: 380px !important;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.fixed{
  position: fixed;
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.whatsapp_floating_icon {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 30;
  height: 75px;
  width: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .whatsapp_floating_icon {
    bottom: 135px;
  }
}
.whatsapp_floating_icon:hover {
  scale: 1.1;
}

#heroSlider .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.splide__pagination__page.is-active{
  background-color: var(--clientPrimary);
}

#topMobileOffersSectionSlider .splide__slide,
#topLaptopOffersSlider .splide__slide,
#testimonialsSlider .splide__slide{
  display: flex;
  justify-content: center;
}

#topMobileOffersSectionSlider .splide__pagination,
#topLaptopOffersSlider .splide__pagination{
  bottom: -2.5rem;
}

#heroSlider .splide__arrow--next, #heroSlider .splide__arrow--prev, #productMain .splide__arrow--next, #productMain .splide__arrow--prev{
  background-color: #ffffff;
  opacity: 1;
  padding: 40px 0px;
}

#heroSlider .splide__arrow--next:hover svg, #heroSlider .splide__arrow--prev:hover svg, #productMain .splide__arrow--next:hover svg, #productMain .splide__arrow--prev:hover svg{
  scale: 1.25;
}

#heroSlider .splide__arrow--next, #productMain .splide__arrow--next{
  right: 0;
  border-radius: 10px 0px 0px 10px;
}

#heroSlider .splide__arrow--prev, #productMain .splide__arrow--prev{
  left: 0;
  border-radius: 0px 10px 10px 0px;
}

.highlightEffect {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.highlightEffect::before {
  animation: 2.5s ease-out infinite shine;
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -10px;
  opacity: 0.6;
}
@keyframes shine {
  0% {
    left: -10px;
  }
  60%,
  to {
    left: 100%;
  }
}

.splide__track--nav>.splide__list>.splide__slide.is-active{
  border: none;
  opacity: 1;
}
.buttonFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: #79797933 0 -4px 12px;
    z-index: 29;
}

.step-wizard {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.step-wizard-list {
  background: #fff;
  color: #333;
  list-style-type: none;
  border-radius: 10px;
  display: flex;
  padding: 30px 10px;
  position: relative;
  z-index: 10;
  width: 100%;
  margin-bottom: 0;
}
.progress-count,
.progress-count:after {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.step-wizard-item {
  padding: 0 20px;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
.step-wizard-item + .step-wizard-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  background: var(--clientPrimary);
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  z-index: -10;
}
.progress-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  color: transparent;
}
.progress-count:after {
  background: var(--clientPrimary);
  transform: translate(-50%, -50%);
  z-index: -10;
}
.progress-count:before {
  height: 10px;
  width: 20px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center center;
}
.progress-label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before {
  display: none;
}
.current-item ~ .step-wizard-item .progress-count:after {
  height: 10px;
  width: 10px;
}
.current-item ~ .step-wizard-item .progress-label {
  opacity: 0.5;
}
.current-item .progress-count:after {
  background: #fff;
  border: 2px solid var(--clientPrimary);
}
.current-item .progress-count {
  color: var(--clientPrimary);
}
.progress-count:after,
.progress-count:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
}
.bg-amber-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity));
}
.variant-check {
    position: absolute;
    top: 6px;
    right: 6px;
    pointer-events: none;
    color: #f1d18a;

}
.animate-spin {
  height: 20px;
  margin-left: 5px;
  animation: 1s linear infinite spin;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#page-loader img {
  height: 60px;
  width: 60px;
}
#page-loader p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}
.successToast{
  background: #242424;
  color: #fff;
  border-radius: 10px;
}
.errorToast{
  background: var(--clientError);
  color: #fff;
  border-radius: 10px;
}

.cart-badge {
  /* Positioning */
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;

  /* Colors */
  color: #ffffff;

  /* Spacing */
  padding: 0.125rem 0.4rem;

  /* Border */
  border-radius: 9999px;

  /* Typography */
  font-size: 0.75rem;
  line-height: 1rem;

  /* Transform with vendor prefixes */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);

  /* Optional: Force hardware acceleration for smoother rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}
@supports (hanging-punctuation: first) and (font: -apple-system-body) and
  (-webkit-appearance: none) {
  .cart-badge {
    top: -2.25rem;
    right: -2.25rem;
  }
}
.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.5rem;
  padding: 0;
}