/* CSS fonts linking */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


/* HTML Layout */
* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: var(--main-txt);
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

:root{
    --bg-color: #ffffff;
    --main-txt: #1f1f1f;
    --cta-button: #5e2c82;
    --secondary-highlight: #d97b93;
    --accent-dividers: #c7c7c7;
    --whatsapp-color: green; 
    --alert-color: red;
}

a{
    text-decoration: none;
}


/* Loader Layout Design */
  /* 🔲 Loader background */
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* 👾 Loader logo */
  #logo {
    width: 70vw;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
  }

  /* Hide main page initially */
  #mainContent {
    display: none;
  }


/* Header Layout Design */
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px;
    background: var(--bg-color);
    box-shadow: 0 0 5px var(--main-txt);
    z-index: 100;
}

.navbar{
    position: absolute;
    right: 0;
    left: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 380px;
}

.mobile{
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

#menu-icon{
    display: none;
    font-size: 30px;
}

.navbar li{
    list-style: none;
    margin-left: 40px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.3s *var(--i)); 
}

.navbar li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-txt); 
    transition: 0.5s;
}

.navbar li a:hover{
    color: var(--secondary-highlight);
    transform: scale(1.05);
}

.navbar i{
    display: none;
}

.logo{
    width: 65%;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: .5s; 
}

/* Section Layout */
section{
    padding: 10rem 3.5% 30px;
}


/* Home Layout Design */
.home{
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-wrapper{
    position: absolute;
    max-width: 100%;
}

.slider{
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.slider img{
    width: 100%;
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    animation: zoomInOut 10s ease-in-out infinite;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);  
    backdrop-filter: blur(10px);
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover{
    opacity: 1;
    background: var(--secondary-highlight);
}

.home-content{
    background: rgba(255, 250, 250, 0.3); 
    backdrop-filter: blur(10px);
    width: 70%;
    height: 37%;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    margin: 15% 0 0;
}

.home-content:hover{
    transform: scale(1.05);
}

.home-content h1{
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 30px 0 0 0;
    margin: 0 30px;
}

.home-content .semi h3{
    font-size: 2rem;
    font-weight: 100;
    margin: 0 30px;
}

.btn-box{
    display: flex;
}

.btn{
    display: inline-block;
    margin: 20px 25px;
    padding: 0.6rem 1.2rem;
    background: var(--cta-button);
    border-radius: 3rem;
    font-size: 2rem;
    color: var(--bg-color);
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
}

.btn:hover{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight);
}

.btn-box a:nth-of-type(2){
    background: transparent;
    color: var(--main-txt);
    border: 2px solid var(--main-txt);
}

.btn-box a:nth-of-type(2):hover{
    box-shadow: 0 0 25px var(--whatsapp-color),
                0 0 50px var(--whatsapp-color);
    background: var(--whatsapp-color);
    color: var(--main-txt);
    border: none;
}

.slider-nav a.active {
    opacity: 1;
    background: var(--secondary-highlight); 
    transform: scale(1.2);
  }

.slider-buttons{
    position: absolute;
}

  button#next, button#prev{
    background: transparent;
    border: transparent;
    position: absolute;
    top: 50%;
    width: 7%;
    transform: translateY(-50%);
    padding: 14px;
    color: var(--bg-color);
    font-size: 3.5rem;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 50%;
    transform: scale(1.2);
    user-select: none;
    cursor: pointer;
    z-index: 1;
}

button#next{
    right: 0;
}

button#prev{
    left: 0;
}

button#next:hover, button#prev:hover{
    opacity: 1;
    color: var(--cta-button);
}


/* Heading Layout */
.heading{
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    color: var(--main-txt);
    height: 100%;
}


/* Cart Layout Design */
#cart-icon{
    position: relative;
    cursor: pointer;
    display: flex;
    font-size: 30px;
    transition: 1.5s;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .5s; 
}

#cart-icon i:hover{
    color: var(--secondary-highlight);
}

#cart-icon .cart-items-count{
    position: absolute;
    top: 0;
    right: -6px;
    width: 15px;
    height: 15px;
    background: var(--alert-color);
    border-radius: 50%;
    font-size: 12px;
    color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center; 
    visibility: hidden;
}


/* Shopping Layout Design */
.shop{
    padding: 18rem 3.5% 30px;
}

.product-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.product-box .img-box{
    display: flex;
    height: 60%;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid var(--cta-button);
    transition: 0.5s;
}

.product-box .img-box:hover{
    border: 5px solid var(--secondary-highlight);
}

.img-box img{
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.img-box img:hover{
    transform: scale(1.1);
}

.product-box .product-title{
    font-size: 20px;
    margin-top: 10px;
}

.product-box .price-and-cart{
    display: flex;
    justify-content: flex-end;
}

.price-and-cart .price{
    font-size: 20px;
    font-weight: 500;
}

.price-and-cart .add-cart{
    padding: 10px;
    background: var(--cta-button);
    border-radius: 6px;
    font-size: 20px;
    color: var(--bg-color);
    justify-content: flex-end;
    cursor: pointer;
    transition: 0.5s;
}

.price-and-cart .add-cart:hover{
    background: var(--secondary-highlight);
    transform: scale(1.05);
    color: var(--main-txt);
}

.cart.active{
    right: 0;
}


/* Cart Toggle Layout Design */
.cart{
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    height: 100%;
    background: var(--bg-color);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 65px 20px 40px;
    z-index: 100;
    overflow: auto;
    transition: 0.5s; 
}

.cart-title{
    text-align: center;
    font-size: 30px;
}

.cart-box{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.cart-box img{
    width: 100px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 20px; 
}

.cart-details{
    display: grid;
    gap: 8px;
    margin-right: auto;
}

.cart-product-title{
    font-size: 16px;
    margin-bottom: 7px;
    line-height: 1;
}

.cart-price{
    font-size: 17px;
    font-weight: 400;
}

.cart-quantity{
    display: flex;
    width: 100px;
    border: 1px solid var(--accent-dividers); 
    border-radius: 6px;
    transition: 0.5s;
}

.cart-quantity:hover{
    border: 1px solid var(--secondary-highlight);
    transform: scale(1.05);
}

.cart-quantity #decrement:hover,
.cart-quantity #increment:hover,
.cart-quantity .number:hover{
    color: var(--secondary-highlight);
    transform: scale(1.05);
}

.cart-quantity button{
    background: transparent;
    width: 30px;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.cart-quantity #decrement{
    color: var(--accent-dividers);
    transition: 0.5s;
}

.cart-quantity #increment{
    transition: 0.5s;
}

.cart-quantity .number{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 40px;
    border-left: 1px solid var(--accent-dividers);
    border-right: 1px solid var(--accent-dividers);
    cursor: default;
    transition: 0.5s;
}

.cart-remove{
    position: absolute;
    right: 20px;
    font-size: 35px;
    cursor: pointer; 
    transition: 0.5s;
}

.total{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid var(--accent-dividers);
    margin-top: 20px;
    font-size: 18px;
}

.total-price{
    margin-left: 10px;
    font-weight: 600;
}

.btn-buy{
    display: block;
    padding: 10px 30px;
    background: #5e2c82;
    border-radius: 6px;
    font-size: 16px;
    color: var(--bg-color);
    margin: 20px auto 0;
    cursor: pointer;
    font-weight: 600;
    transition: 0.5s;
    border-right: 4px solid var(--main-txt);
    border-bottom: 4px solid var(--main-txt);
    border-top: 4px solid var(--accent-dividers);
    border-left: 4px solid var(--accent-dividers); 
}

.btn-buy:hover{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    font-weight: 600;
    font-size: 16px;
    transform: scale(1.05);
    border-left: 4px solid var(--accent-dividers);
    border-top: 4px solid var(--accent-dividers);
    border-bottom: 4px solid var(--main-txt);
    border-right: 4px solid var(--main-txt);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);
}

#cart-close{
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 60px;
    cursor: pointer;
    transition: 0.5s;
}

#cart-close:hover{
    color: var(--secondary-highlight);
    transform: scale(1.05);
}

.cart .cart-content i{
    transition: 0.5s;
}

.cart .cart-content i:hover{
    color: var(--secondary-highlight);
    transform: scale(1.05);
}

.shop-btn-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.shop-btn{
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--cta-button);
    border-radius: 0.5rem;
    font-size: 2rem;
    color: var(--bg-color);
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.shop-btn:hover{
    background: var(--secondary-highlight);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight);
    color: var(--main-txt);
}


/* About Layout Design */
.about{
    width: 100%;
}

.about-page img{
    width: 50%;
    height: auto; 
}

.about-page img:hover{
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);
}

.about-page{
    width: 100%;
    display: flex;
    align-items: center;
}

.about-page .about-content{
    margin-top: 20px;
    margin-left: 40px;
}

.about-page .subheading{
    font-size: 4.5rem;
    font-weight: 250;
} 

.about-page p{
    font-size: 2rem;
} 

.about-page marquee{
    background: var(--accent-dividers);
    font-size: 2rem;
}

.whycustomersloveekesonfashion-section{
    display: flex;
}

.whycustomersloveekesonfashion-content{
    width: 50%;
    height: 50%;
    box-sizing: border-box;
}

.whycustomersloveekesonfashion-content p{
    font-size: 1.9rem;
}

.main-point{
    text-align: center;
    align-items: center;
    gap: 2;
    padding: 20px 0 0 0;
}

.whycustomersloveekesonfashionheading{
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
    color: var(--main-txt);
    height: 100%;
}

.main-point .point{
    display: inline-block;
    margin-top: 15px;
    padding: 1.5rem 1.2rem;
    background: var(--cta-button);
    width: 70%;
    height: 15%;
    border-radius: 5rem;
    font-size: 3rem;
    cursor: pointer;
    color: var(--bg-color);
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#affordable.active{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
    0 0 50px var(--secondary-highlight),
    0 0 100px var(--secondary-highlight);;
}

#quality.active{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);;
}

#variety.active{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);;
}

#reliable.active{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);;
}

#wholesaleandretailfriendly.active{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);;
}

.main-point .point:hover{
    background: var(--secondary-highlight);
    color: var(--main-txt);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);
}


/* Categories Layout Design */
.all-products{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('two piece set/IMG-20250715-WA0033.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 100%;
    height: 50vh;
    margin-bottom: 20px;
}

.categories-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sweat-sets{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('joggers set/IMG-20250715-WA0084.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 580px;
    height: 50vh;
}

.categories-btn-box{
    justify-content: center;
    align-items: center;
}

.joggers{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('joggers set/IMG-20250715-WA0079.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 580px;
    height: 50vh;
}

.categories-content2{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0 0 0;
}

.children-wear{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('joggers set/IMG-20250715-WA0025.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 30%;
    height: 30vh;
}

.graphic-tees{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('graphic tee/IMG-20250715-WA0091.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 30%;
    height: 30vh;
}

.jersey{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('jersey/IMG-20250715-WA0029.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 30%;
    height: 30vh;
}

.categories-content3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0 0 0;
}

.women-fashion{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('two piece set/visit.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 580px;
    height: 50vh;
}

.full-clothing-sets{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('two piece set/IMG-20250715-WA0048.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 580px;
    height: 50vh;
}

.categories-btn{
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: transparent;
    font-size: 2rem;
    color: var(--bg-color);
    border: 3px solid var(--bg-color);
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.categories-btn:hover{
    background: var(--secondary-highlight);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);
    color: var(--main-txt);
}


/* Contact Layout Design */
.contact-details{
    display: flex;
    justify-content: space-between; 
}

.contact-details .details{
    width: 40%;
}

.contact-details .details span,
.form-details form span{
    font-size: 13px;
    font-weight: 600;
}

.contact-details .details h2,
.form-details form h2{
    font-size: 30px;
    line-height: 35px;
    padding: 20px 0;
}

.contact-details .details h3{
    font-size: 20px;
    padding-bottom: 15px;
}

.contact-details .details li{
    list-style: none;
    display: flex;
    padding: 5px 0;
}

.contact-details .details li i{
    font-size: 18px;
    padding-right: 22px;
    transition: 0.5s;
    cursor: pointer;
}

.contact-details .details li i:hover{
    color: var(--secondary-highlight);
    transform: scale(1.05);
}

.contact-details .details p{
    font-size: 14px;
}

.contact-details .map{
    width: 60%;
    height: 400px;
}

.contact-details .map iframe{
    width: 100%;
    height: 100%;
}

.form-details{
    display: flex;
    margin-top: 15px;
}

.form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-details form input,
.form-details form textarea{
    width: 100%;
    padding: 12px 3.5%;
    font-family: 'Poppins', sans-serif; 
    outline: none;
    resize: none;
    margin-bottom: 20px;
    border: 2px solid var(--accent-dividers);
    transition: 0.5s;
}

.form-details form input:hover,
.form-details form textarea:hover{
    border: 2px solid var(--secondary-highlight);
    transform: scale(1.05); 
}

.form-details form input::placeholder,
.form-details form textarea::placeholder{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.form-details form button{
    display: inline-block;
    background: var(--cta-button);
    color: var(--bg-color);
    text-align: center;
    padding: 1rem 3rem;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    cursor: pointer;
    border-right: 4px solid var(--main-txt); 
    border-bottom: 4px solid var(--main-txt); 
    border-top: 4px solid var(--accent-dividers);
    border-left: 4px solid var(--accent-dividers);  
    transition: 0.3s ease-in-out;
}

.form-details form button:hover{
    background: var(--secondary-highlight);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight);
    color: var(--main-txt);
}

.form-details .people .workers img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: 0.5s;
}

.form-details .people .workers img:hover{
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);
}

.form-details .people .workers p{
    margin-left: 10px;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
}

.form-details .people .workers span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-txt); 
}

.form-details .people .workers {
    padding: 0 0 15px;
    margin-left: 70px;
    display: flex;
    align-items: flex-start;
}

.form-details .people{
    padding: 230px 0 0;
    width: 35%;
}


/* Footer Layout Design */
footer{
    background: var(--main-txt);
    padding: 5rem 3.5% 0;
    display: flex;
    flex-wrap: wrap;
    color: var(--bg-color);
    gap: 5%;
}

footer .logo{
    width: 50%;
    margin-bottom: 20px;
    transition: 0.5s;
}

footer .logo:hover{
    transform: scale(1.2);
}

footer h4{
    font-size: 20px;
    padding-bottom: 20px;
}

footer p{
    font-size: 16px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 16px;
    text-decoration: none;
    color: var(--bg-color);
    margin-bottom: 10px;
    transition: 0.5s ease-in-out;
}

footer a i{
    font-size: 25px;
    margin-right: 5px;
}

footer .icon{
    margin-bottom: 30px;
}

footer .col{
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 70px;
}

footer a:hover{
    color: var(--secondary-highlight);
    transform: scale(1.05);
}

footer .col ul li{
    list-style: none;
}

footer .copyright{
    align-items: center;
    text-align: center;
    width: 100%;
}


/* Responsiveness Layout Design */
/* BREAKPOINT */
@media (max-width: 1280px){
    .slider-buttons {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 1rem;
        z-index: 2;
      }
}

@media (max-width: 1024px){
    .slider-buttons {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 1rem;
        z-index: 2;
      }
}

@media (max-width: 1264.2px){
    .all-products{
        height: 30vh;
    }

    .sweat-sets{
        min-width: 100%;
        height: 30vh;
    }

    .joggers{
        min-width: 100%;
        height: 30vh;
        margin: 20px 0 0 0;
    }

    .women-fashion{
        min-width: 100%;
        height: 30vh;
    }

    .full-clothing-sets{
        min-width: 100%;
        height: 30vh;
        margin: 20px 0 0 0;
    }
}

@media (max-width: 1200px) {
    html{
        font-size: 55%;
    }
    
    .sweat-sets{
        min-width: 100%;
        height: 30vh;
    }

    .joggers{
        min-width: 100%;
        height: 30vh;
    }
}

@media (max-width:1030.40px) {
    .navbar{
        position: absolute;
        right: 0;
        left: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 380px;
    }

    .navbar li{
        font-size: 17px;
    }
}

@media (max-width:960px) {
    #menu-icon{
        display: block;
        cursor: pointer;
        transition: 0.5s;
        opacity: 0;
        animation: slideLeft 1s ease forwards;
        animation-delay: .5s; 
    }

    #menu-icon:hover{
        color: var(--secondary-highlight);
        transform: scale(1.05);
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: 100%;
        right: 0;
        height: 100vh;
        width: 108vh;
        background: var(--bg-color);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 30px 0 0 10px; 
        display: none;
    }

    .navbar.active{
        display: block;
    }

    .navbar li{
        display: block;
        margin-bottom: 5%;
        font-size: 2rem;
        color: var(--text-color);
    }

    .navbar i{
        display: block;
    }

    .whycustomersloveekesonfashion-section{
        display: inline-block;
    }

    .whycustomersloveekesonfashion-content{
        width: 100%;
    }

    .main-point{
        padding: 50px 0 0 0;
    }

    .form-details{
        width: 100%; 
    }

    .contact-details{
        flex-direction: column;
    }

    .contact-details .details{
        width: 100%;
        margin-bottom: 30px; 
    }

    .contact-details .map{
        width: 100%;
    }

    .form-details{
        flex-wrap: wrap;
    }

    .form-details form{
        width: 100%;
        margin-bottom: 30px;
    }

    .form-details .people{
        padding: 0 0 0 0;
        margin: 0 0 0 0;
        width: 100%;
    }

    .form-details .people .workers img{
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .form-details .people .workers p{
        margin-left: 10px;
        font-size: 13px;
        font-weight: 400;
        line-height: 22px;
    }

    .form-details .people .workers span{
        display: block;
        font-size: 25px;
        font-weight: 600;
        color: var(--main-txt); 
    }

    .form-details .people .workers {
        padding: 0 0 15px;
        margin-left: 0;
    }
}

@media (max-width: 700px) {
    html{
        font-size: 50%;
    }

    .slider {
        aspect-ratio: 4 / 3;
    }  

    .home-content{
        width: 100%;
        height: auto;
    }

    .home-content h1{
        font-size: 1.5rem;
    }

    .home-content .semi h3{
        font-size: 0.3rem;
    }

    .btn{
        font-size: 0.5rem;
    }
}

@media (max-width: 462px) {
    html{
        font-size: 40%;
    }
}

@media (max-width: 390px) {
    html{
        font-size: 30%;
    }
}

@media (max-width: 330px){
    html{
        font-size: 25%;
    }
}

@media (max-width: 313px){
    html{
        font-size: 15%;
    }
}

@media (max-width: 768px) {
    .home-content h1 {
      font-size: 3rem;
    }
  
    .home-content .semi h3 {
      font-size: 2.2rem;
    }
  
    .btn {
      font-size: 2.2rem;
    }

    .slider-buttons button {
        font-size: 2rem;
      }

      .cart{
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: rgba(136, 6, 162, 0.23); 
        backdrop-filter: blur(12px);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 65px 20px 40px;
        z-index: 100;
        overflow: auto;
        transition: 0.5s; 
    }

    .about{
        align-items: left;
    }

    .about-page{
        flex-direction: column;
        align-items: left;
    }

    .about-page .about-content{
        margin-top: 20px;
        margin-left: 0; 
    }

    .about-page img{
        justify-content: center;
        align-items: center;
        width: 50%;
        height: auto;
    }
}

@media (max-width: 547px){
    .children-wear{
        min-width: 45%;
    }

    .graphic-tees{
        min-width: 45%;
    }

    .jersey{
        min-width: 100%;
        margin: 30px 0 0 0;
    }

    .form-details .people .workers p{
        margin-left: 10px;
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
    }
}

  @media (max-width: 480px) {
    .product-content{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .slider {
      aspect-ratio: 4 / 3;
    }

    .slider img{
        height: auto;
    }

    .home-content h1 {
      font-size: 2.5rem;
    }
  
    .home-content .semi h3 {
      font-size: 2rem;
    }

    .btn{
        font-size: 2rem;
    }
  
    .slider-nav {
      bottom: 0.5rem;
      column-gap: 0.5rem;
    }
  
    .slider-nav a {
      width: 0.4rem;
      height: 0.4rem;
    }

    .slider-buttons button {
        font-size: 1.5rem;
      }
  }


  
  /* ANIMATION  KEYFRAMES*/
  @keyframes zoomInOut {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }

    100% {
      transform: scale(1); 
    }
  }

  @keyframes slideRight{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }

    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideTop{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }

    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideBottom{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }

    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideLeft{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }

    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }