/*HEADER SLIDER*/

.header-slider{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}


.header-slider .slider{
    display: flex;
    transform: translateX(0vw);
    transition: all 1s ease-in-out;
}

.header-slider .slider .slide{
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: var(--spacing-medium);
    position: relative;
}

.header-slider .slider .slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: brightness(60%);
}

.header-slider .slider .slide .slide-text{
    max-width: 90%;
    width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    color: white;
    padding: var(--spacing-small);
    z-index: 3;
}

.header-slider .slider .slide .slide-text h2{
    font-size: 50px;
}

.slider-controls-bottom{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-small);
    padding: 20px 0;
    z-index: 2;
}

.slider-controls-bottom div{
    width: 15px;
    height: 15px;
    background-color: rgba(173, 173, 173, 0.503);
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    cursor: pointer;
}

.slider-controls-arrows{
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-small);
    z-index: 2;
}

.slider-controls-arrows i{
    cursor: pointer;
    background-color: rgba(202, 203, 255, 0.67);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


/*MAIN SECTION*/

main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    align-items: center;
    justify-content: center;
}

main section{
    position:relative;
    overflow:hidden;
    
}

main section::before {
  content: "🎂 ";
  font-size: 2.5rem;
  color: rgba(255, 0, 0, 0.4);
  position: absolute;
  top: 1%;
  right: 1%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  animation:floatHeart 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

@keyframes floatHeart {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}


main .big{
    font-size: 50px;
    margin: 50px 0;
}

main hr{
    width: 80%;
    border: none;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.229);
    height: 0.2px;
    margin: 40px 0;
}


.main-categories{
    max-width: 100%;
    width: 900px;
    height: auto;
    display: grid;
    grid-template-areas: "cat4 cat4 cat4 cat4 cat4"
                         "cat1 cat1 cat1 cat2 cat2"
                         "cat1 cat1 cat1 cat3 cat3";
    padding: 50px 0;
    gap: 5px;

}

.main-categories a{
    min-height: 200px;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-decoration: none;
    font-size: 25px;
    color: white;
    gap: 10px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
}

.main-categories a div{
    display: flex;
    gap: var(--spacing-medium);
    align-items: center;
}

.main-categories a img{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
    filter: brightness(50%);
}


.cat1{
    grid-area: cat1;
}

.cat2{
    grid-area: cat2;
}

.cat3{
    grid-area: cat3;
}

.cat4{
    grid-area: cat4;
}


.main-categories a:hover div{
    animation: fadeInOut 0.2s linear forwards;
}

@keyframes fadeInOut{
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(0);
    }
}

.main-categories a:hover img{
    filter: blur(1px) brightness(40%);
}

/*BEST SELLERS and OFFERS SECTION*/

.best-sellers, .special-offers{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: var(--spacing-medium);
    background: var(--vale-color);
}

.best-sellers .product, .special-offers .product{
    max-width: 45%;
    width: 200px;
    height: auto;
    padding: var(--spacing-small);
    position:relative;
    overflow:hidden;
}

/*.best-sellers .product::after, .valentine-offers .product::after{*/
/*  content: "❤";*/
/*  font-size: 3rem;*/
/*  color: rgba(255, 0, 0, 0.6);*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%) scale(0);*/
/*  opacity: 0;*/
/*  transition: all 0.3s ease-in-out;*/
/*  pointer-events: none;*/
/*}*/

/*.best-sellers .product:hover::after, .valentine-offers .product:hover::after{*/
/*  transform: translate(-50%, -50%) scale(1);*/
/*  opacity: 1;*/
/*}*/

.best-sellers .product a h5, .special-offers .product a h5{
    font-size:13px;
    white-space: nowrap;         /* Prevent text from wrapping to the next line */
    overflow: hidden;            /* Hide overflowed text */
    text-overflow: ellipsis;
}

.product a{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    text-decoration: none;
    color: var(--primary-color);
    overflow:hidden;
}

.product img{
    width: 95%;
    height: 200px;
    object-fit: contain;
    object-position: 50% 25%;
}

.product-actions{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.product-actions form button{
    padding: var(--spacing-small);
    cursor: pointer;
    background-color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.229);
    color: rgba(0, 0, 0, 0.929);
}

.section-cta{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-cta a{
    font-family: var(--text-font);
    padding: 5px;
    color: var(--primary-color);
}

.offer{
    width: 100%;
    min-height: 600px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: var(--spacing-medium);
    flex-wrap: wrap;
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.offer img{
    max-width: 100%;
    width: 450px;
    height: 450px;
    object-fit: contain;
    border-radius: 10px;
}

.offer .desc-n-actions{
    max-width: 100%;
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
}

.offer .desc-n-actions a{
    text-decoration: none;
    font-family: var(--text-font);
    color: var(--primary-color);
}

.offer .desc-n-actions .actions{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-small);
}
.offer .desc-n-actions .actions form button{
    max-width: 60%;
    width: 300px;
    padding: 15px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
}

.offer .desc-n-actions .actions form:nth-child(1) button{
    background-color: var(--primary-color);
    color: #fff;
}

.offer .desc-n-actions .actions form:nth-child(2) button{
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

#discount-tag{
    position: absolute;
    left: 2%;
    top: 0%;
    background-color: var(--other-color1);
    width: 60px;
    height: 100px;
    padding: 10px;
    font-family: var(--text-font);
}

.share-offer{
    display: flex;
    align-items: center;
    padding: var(--spacing-small);
    gap: var(--spacing-small);
}

.share-offer a, .share-offer i{
    text-decoration: none;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
}


/*BRANDS SECTION*/

.brands{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.brands .brands-slider{
    width: auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-large);
    padding: 50px 0;
    animation: slideLeft 60s infinite linear forwards;
}

@keyframes slideLeft{
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(100%);
    }
}


.brands .brands-slider:hover{
    animation-play-state: paused;
}

.brands .brands-slider a, .brands a{
    max-width: 45%;
    width: 200px;
    max-height: 200px;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
}

.brands .brands-slider a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*MORE CATEGORIES*/
.new-arrivals{
    width: 100%;
    min-height: 500px;
    height: auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
    flex-wrap: wrap;
    position: relative;
}

.new-arrivals::before{
     content: "🐣 ";
}

.new-arrival-prods{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-small);
    flex-wrap: wrap;
    position: relative;
}

.new-arrivals .product{
    max-width: 45vw;
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    align-items: center;
    gap: var(--spacing-small);
    position: relative;
    text-decoration: none;
    color: white;
    overflow: hidden;
    padding: var(--spacing-small);
    border-radius: 3px;
}

.new-arrivals .product:hover{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.229);
    transform: scale(1.01);
}
.new-arrivals a img{
    width: 100%;
    height: 150px;
    object-fit: contain;
    object-position: 50% 25%;
    border-radius: 2px;
}

.new-arrivals a h5{
    white-space: nowrap;         /* Prevent text from wrapping to the next line */
    overflow: hidden;            /* Hide overflowed text */
    text-overflow: ellipsis;
}

.tertiary-actions{
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
}

#whatsapp-order-btn i{
    color: rgb(0, 255, 55);
    font-size: 20px;
}

.prod-action-btns{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(173, 173, 173, 0.503);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
}


.new-arrivals .section-bg{
    width: 50%;
    height: 50%;
    object-fit: cover;
    position: absolute;
    left: 0%;
    top: 0%;
    transform: translate(50%, 50%);
    z-index: -1;
    opacity: 0.1;
    border: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}



.body-sprays-ad{
    width:95%;
    overflow:hidden;
    border-radius:10px;
    margin:50px 0;
}

.body-sprays-ad-content, .body-sprays-ad-content .ad-overlay-sprays{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.body-sprays-ad-content {
    height:500px;
    position:relative;
}

.body-sprays-ad-content .ad-overlay-sprays{
    z-index:2;
    background-color:rgba(0,0, 0, 0.5);
    flex-direction:column;
    height:100%;
    color:white;
    gap: 30px;
    position: absolute;
    left: 0;
    top: 0;
}

.body-sprays-ad-content div h2{
    font-size:35px;
}

.body-sprays-ad-content div a{
    width:200px;
    padding:13px;
    background-color:var(--secondary-color);
    text-decoration:none;
    color:#000;
    border-radius:5px;
    text-align:center;
    font-family: var(--text-font);
}

.body-sprays-ad-content img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:50% 25%;
    position:absolute;
    top:0;
    left:0;
    z-index: -1;
}

/*WHY CHOOSE US STATEMENTS*/

.wcu{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-small);
    flex-wrap: wrap;
    position: relative;
}

.wcu-statements{
    max-width: 100%;
    width: 700px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-small);
    justify-content: center;
    align-items: center;
}

.wcu .wcu-statements div{
    max-width: 100%;
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    text-align: center;
    font-size: 13px;
}

.wcu div i{
    font-size: 60px;
    color: var(--other-color1);
}

.wcu img{
    position: absolute;
    right: 0;
    top: 0;
    object-fit: contain;
    width: 60%;
    height: 100%;
    z-index: -1;
}


/*PERFUME OILS SECTION*/

.perfume-oils{
    width: 95%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    margin: 50px 0;
    position: relative;
}

.perfume-oils img{
    max-width: 100%;
    width: 650px;
    object-fit: cover;
    height: 100%;
}

.perfume-oils .text{
    max-width: 100%;
    width: 550px;
    height: 100%;
    padding: var(--spacing-medium);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    justify-content: center;
}

.perfume-oils .text h3{
    font-size: 35px;
}

.perfume-oils .text a{
    max-width: 200px;
    padding: 13px;
    background: var(--secondary-color);
    text-decoration: none;
    color: #000;
    border-radius: 3px;
    text-align: center;
    font-family: var(--text-font);
}

/*BEST DEAL*/

.best-deal{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    padding: var(--spacing-small);
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 50px 0;
}

.best-deal::before{
    content: "🌸 ";
}

.best-deal #confetti{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.best-deal #week-deal-img{
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.deal-details{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    justify-content: center;
    align-items: center;
}

.best-deal h4{
    font-size: 40px;
}
.deal-details a{
    text-decoration: none;
    color: var(--primary-color);
}



.deal-details .actions form button{
    background-color: #ff9cae;
}


.location{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: var(--spacing-medium);
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 50px 0;
}

.location div{
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
}

.location div a{
    width: 150px;
    padding: 13px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    text-decoration: none;
    color: var(--primary-color);
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    font-family: var(--text-font);
}


/*WHOLESALE PACKAGES*/

.whole-sale-pckg{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: var(--spacing-small);
    gap: var(--spacing-small);
    flex-wrap: wrap;
    margin: 50px 0;
}

.whole-sale-pckg .package{
    max-width: 95%;
    width: 250px;
    height: 650px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: var(--spacing-small);
    position: relative;
    overflow: hidden;
    font-family: var(--text-font);
    font-size: 14px;
}


/* .package a{
    max-width: 70%;
    width: 200px;
    padding: 13px;
    text-decoration: none;
    text-align: center;
    color: black;
    background-color: var(--other-color1);
    border-radius: 5px;
} */

.package img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 15%;
    border-radius: 2px;
}

.package button{
    max-width: 70%;
    width: 200px;
    padding: 13px;
    color: #fff;
    background-color: var(--other-color1);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: var(--text-font);
}

.whole-sale-pckg .package ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
}


/*DELIVERY PRICES*/

#delivery-pricing{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content:center;
    gap:var(--spacing-large);
    padding: 50px var(--spacing-small);
    border-radius: 10px;
    position: relative;
}


#delivery-pricing .delivery-details{
    max-width: 100%;
    width: 1100px;
    height: auto;
    display: flex;
    align-items:center;
    justify-content:space-evenly;
    flex-wrap:wrap;
    gap: var(--spacing-medium);
    z-index: 2;
    color: white;
    font-size: 20px;
}

#delivery-pricing .delivery-details #delivery-image{
    max-width:95%;
    width:400px;
    height:400px;
    object-fit:cover;
    border-radius:5px;
}

#delivery-pricing .delivery-details .desc{
    max-width:95%;
    width:500px;
    display:flex;
    align-items:center;
    flex-direction:column;
    justify-content:center;
    gap:var(--spacing-medium);
    color:#000;
    text-align:center;
    
}
#delivery-pricing .delivery-details .desc hr{
    width:60%;
    border:none;
    border-radius:10px;
    margin:auto;
    background-color:rgba(0,0,0,0.2);
    height:1px;
}

.payment-logos{
    width: 100%;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content:center;
}

.payment-logos img{
    width: 70px;
    height:70px;
    object-fit:contain;
}

#delivery-pricing .delivery-details .desc h2{
    font-size:40px;
}

#delivery-pricing div a{
    width: 150px;
    padding: 13px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    text-decoration: none;
    color: var(--primary-color);
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    font-family: var(--text-font);
}

.newsletter-popup{
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0%;
    top: 0%;
    backdrop-filter: brightness(30%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(109, 111, 255, 0.154);
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, height 0.5s ease;
}

.newsletter-popup.active{
    opacity: 1;
    visibility: visible;
}

.newsletter-popup section{
    width: 95%;
    max-height: 100%;
    height: 600px;
    left: 0%;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background-color: var(--secondary-color);
    border-radius: 20px;

}

.newsletter-popup img{
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
}

.newsletter-popup div{
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    padding: var(--spacing-medium);
    max-width: 100%;
    width: 500px;
}

.newsletter-popup div form{
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    width: 100%;
}

.newsletter-popup div form input:required, .newsletter-popup div form select{
    width: 90%;
    padding: 13px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.129);
} 

.newsletter-popup div form input:required:focus, .newsletter-popup div form select:focus{
    outline: none;
}

.newsletter-popup div form select{
    cursor: pointer;
    margin-bottom: 40px;
}

.newsletter-popup div form input[type="submit"], #close-btn{
    max-width: 90%;
    width: 200px;
    padding: 13px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    background-color: var(--other-color1);

}


/*BRANDS PAGE*/

#brands-main{
    padding: 200px 0;
}

#brands-main hr{
    width: 80%;
    height: 1px;
    border: none;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.129);
}

.brands{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-large);
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: var(--spacing-small);
}

.brands a{
    max-width: 100%;
    width: 300px;
    height: 300px;
    position: relative;
}

.brands a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}