/* HTML: <div class="loader"></div> */
.loader-container{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    width: 100vw; 
    position: fixed; 
    top: 0; 
    left: 0; 
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
  }
  .loader::before,
  .loader::after {    
    content:"";
    grid-area: 1/1;
    --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
    background: 
      var(--c) 50%  0, 
      var(--c) 50%  100%, 
      var(--c) 100% 50%, 
      var(--c) 0    50%;
    background-size: 12px 12px;
    animation: l12 1s infinite;
  }
  .loader::before {
    margin: 4px;
    filter: hue-rotate(45deg);
    background-size: 8px 8px;
    animation-timing-function: linear
  }
  
  @keyframes l12 { 
    100%{transform: rotate(.5turn)}
  }

.logo{
  width:200px;
}

.mb-3 {
  margin-bottom: 20px;
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* optional spacing between items */
}

.single-service {
  flex: 1 1 30%; /* adjust based on desired column width */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-block p{
  text-align: justify !important;
}

.single-item .fragrance-img{
    height: 160px !important;
}

.single-item .fragrance-img img{
    height: 100% !important;
}

.modal{
    z-index: 9999 !important;
}




