/* CSS fonts linking */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


/* HTML Layout Design */
* {
    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;
}

.mobile{
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

.logo{
    width: 65%; 
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: .5s; 
}


/* Section Layout */
section{
    padding: 8rem 3.5% 30px;
}


/* Heading Layout Design */
.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);
    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;
    width: 40px;
    font-size: 12px;
    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);
}

.shop-btn-box .active{
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-size: 2rem;
    border: 2px solid transparent;
    font-weight: 600;
    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);
    transition: 0.5s;
}

.shop-btn-box .active:hover{
    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);
}

.active{
    background: var(--secondary-highlight);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight);
    color: var(--main-txt);
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 2rem;
    color: var(--main-txt);
    border: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.active:hover{
    background: var(--secondary-highlight);
    border: none;
    box-shadow: 0 0 25px var(--secondary-highlight),
                0 0 50px var(--secondary-highlight),
                0 0 100px var(--secondary-highlight);
}



/* Contact Layout Design */
.contact-details{
    display: flex;
    align-items: center;
    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{
    margin: 0;
    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: 1200px) {
    html{
        font-size: 55%;
    }

    .sweat-sets{
        min-width: 100%;
        height: 30vh;
    }

    .joggers{
        min-width: 100%;
        height: 30vh;
    }
}

@media (max-width:960px) {
    .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: 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: 700px) {
    html{
        font-size: 50%;
    }
}

@media (max-width: 462px) {
    html{
        font-size: 40%;
    }
}

@media (max-width: 360px) {
    html{
        font-size: 30%;
    }
}

@media (max-width: 330px){
    html{
        font-size: 25%;
    }
}

@media (max-width: 313px){
    html{
        font-size: 15%;
    }
}

@media (max-width: 547px){
    .children-wear{
        min-width: 45%;
    }

    .graphic-tees{
        min-width: 45%;
    }

    .jersey{
        min-width: 100%;
        margin: 30px 0 0 0;
    }
}

@media (max-width: 768px) {
    .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; 
    }

    .cart .cart-details .cart-product-title{
        font-size: 20px;
    }
}

@media (max-width: 547px){
    .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;
    }
  }


  /* ANIMATION KEYFRAMES */
@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);
    }
  }