/* Common css */

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.panda-btn {
    border-radius: 6px;
    background: linear-gradient(180.00deg, rgb(255, 88, 155) -0.006%, rgb(255, 19, 111) 99.994%);
    padding: 15px 35px;
    border: none;
    color: rgb(246, 246, 249);
    font-weight: 500;
}

.common-section-title {
    font-size: 36px;
    font-weight: 600;
}

.shoes-backpack-section-title-parent {
    display: flex;
    justify-content: space-between;
}

.shoes-backpack-section-title-parent h2 {
    font-weight: bold;
    font-size: 36px;
}

.shoes-backpack-section-title-parent p {
    font-size: 20px;
    color: #ff9d00;
    margin-top: 35px;
}


/* custom css */

/* --------------------- --------------------- ------ */

/* Header Area with nav bar and search bar */
nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.search-parent {
    position: relative;
}

.search-parent input {
    background-color: rgb(241, 241, 241);
    border-radius: 66px;
    width: 500px;
    padding: 15px 30px;
    border: none;
    margin-top: 5px;
}

.search-parent i {
    position: absolute;
    top: 17px;
    right: 20px;
    color: #BABABA;
}

.nav-items {
    display: flex;
    list-style-type: none;
    gap: 10px;


}

.nav-items li a {
    text-decoration: none;
    color: #707070;
    font-size: 16px;
    font-weight: 600px;


}

/* Banner styles */
.banner {
    background: rgb(254, 234, 233);
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    padding: 28px;
    border-radius: 10px;
    margin-top: 30px;
}


.banner img {
    width: 402px;
    height: 378px;
}

.banner h2 {
    color: rgb(31, 31, 31);
    font-family: Poppins;
    font-size: 52px;
    font-weight: bold;
}

.banner p {
    color: #4e4e4e;
    width: 456px;
}

.banner-price {
    color: #ff136f;
    font-size: 52px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
}

/* Category section */

.categories {
    margin: 64px auto;
}

.category-card {
    background: linear-gradient(151.85deg, rgb(255, 156, 53) 14.537%, rgb(255, 208, 25) 84.486%);

    display: flex;
    justify-content: space-between;
    gap: 4px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.categories-card-container {
    display: flex;
    gap: 26px;

}

.category-card:hover {
    background: red;
}

.category-card h3 {
    color: white;
    font-weight: bold;
    font-size: 30px;
}



/* we can also use  pseudo-code like common div name (category-card) --> .category-card:nth-child(1)*/

.category-card-1 {
    background: linear-gradient(151.85deg, rgb(255, 156, 53) 14.537%, rgb(255, 208, 25) 84.486%);
}

.category-card-2 {

    background: linear-gradient(180.00deg, rgb(255, 88, 155) -0.006%, rgb(255, 19, 111) 99.994%);
}

.category-card-3 {
    background: linear-gradient(170.38deg, rgb(66, 137, 255) 15.416%, rgb(63, 7, 248) 74.29%);
}

/* shoes and bag section */

.shoes-backpack-parent {
    background: rgb(244, 244, 244);
}



.shoes-section {
    padding: 50px 0;

}

.shoe-card {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    padding: 25px;
}


.shoe-card-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}



.shoe-card img {
    width: 336px;
    height: 202px;
}

.card-price {
    display: block;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
}

.shoe-card .panda-btn {
    background: black;
}

/* Contact use section */

.contact-us-parent {
    background-color: #FFF2F1;
    text-align: center;
    padding: 35px 20px;
    margin: 35px auto;
    border-radius: 15px;

}

contact-input-btn-parent {
    display: flex;
    justify-content: center;

}

.contact-input-btn-parent input {
    border: none;
    padding: 15px 152px;
}

.contact-input-btn-parent .panda-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Restricted zone only for admins strictly prohibited */

.admin-panel a:hover {
    color: red;
}