 body { font-family: 'Cairo', sans-serif; }
    @media (prefers-color-scheme: light) {
    body {
      background-color: var(--main-blue);
    }
  }
  html {
    background-color: var(--main-blue);
  }

  @keyframes bump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.bump {
  animation: bump 300ms ease;
}

body.loading::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 22.4px;
    height: 22.4px;
    border-radius: 50%;
    background: #474bff;
    box-shadow: 0 0 0 0 rgba(71,75,255,0.5);
    animation: pulse-kefe91md 1.5s infinite linear;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
body.loading::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 22.4px;
    height: 22.4px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(71,75,255,0.5);
    animation: pulse-kefe91md 1.5s infinite linear;
    animation-delay: -0.5s;
    transform: translate(-50%, -50%);
    z-index: 9998;
}
body.loading::marker {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 22.4px;
    height: 22.4px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(71,75,255,0.5);
    animation: pulse-kefe91md 1.5s infinite linear;
    animation-delay: -1s;
    transform: translate(-50%, -50%);
    z-index: 9997;
}
@keyframes pulse-kefe91md {
    100% {
        box-shadow: 0 0 0 44.8px #0000;
    }
}

 
.qty-input{
  position:  flex;
  height: 100%;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none; 
    scrollbar-width: none;    
}

.swiper {
  width: 100%;  
  margin: 10px auto;
}

.swiper-wrapper {
  display: flex;
}

 

.select2-container--default .select2-selection--single {
  height: 35px !important;
  border: 1px solid #d1d5db; 
  border-radius: 5px;   
  padding-right: 0.15rem;    
  padding-left: 2.5rem;       
  align-items: center;
  padding-top: 3px;
  font-size: 0.9rem; 
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0px;
  right: 0px;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: normal;
  text-align: right;
  flex: 1;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #d1d5db;
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.select2-container--default .select2-selection--single {
  transition: all 0.2s ease-in-out;
}

.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #3b82f6; 
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);  
}

.select2-container--default .select2-selection--single:hover {
  border-color: #2563eb;  
}

.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.select2-container--default .select2-results__option {
  padding: 8px 12px;
  transition: background-color 0.2s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #3b82f6;  
  color: white;
}

.main-button.selected {
  background-color: #CFAD21 !important;
}