/* Common CSS */
/* google font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

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

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

/* Custom css */
/* panda button  */
.panda-btn {
    border-radius: 6px;
    /* Linear */
    background: linear-gradient(180.00deg,
            rgb(255, 88, 155) -0.006%,
            rgb(255, 19, 111) 99.994%);
    padding: 14px 20px;
    border: none;
    font-weight: 500;
    color: white;
}

/* Nav style */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    /* background-color: #f8f9fa; */
}

.search-parent {
    position: relative;
    /* font-size: 20px; */

}

.search-parent input {
    border: none;
    border-radius: 66px;
    padding: 15px 30px;
    width: 508.94px;
    height: 48px;
    background-color: rgb(241, 241, 241);
}

.search-parent i {
    position: absolute;
    top: 17px;
    /* left: 0; */
    right: 15px;
    /* bottom: 0; */
    font-size: 20px;
    color: #BABABA
}

.nav-items {
    display: flex;
    gap: 20px;
    list-style: none;
    /* text-decoration: none; */

}

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

h1 {
    border: 2px solid black;
    display: inline;
}
/* another way: Product hover */
.product-li {
    position: relative;
}
.dropdown-nav-items {
    position: absolute;
    top: 100%;
    left: -30px;
    padding: 5px 5px;
    text-align: center;
    list-style: none;
    background-color: rgb(243, 152, 147) ;
    width: 150px;
    border-radius: 15px 15px 15px 15px;
    visibility: hidden;
    transition: 2s;
}

.dropdown-nav-items li {
    margin: 5px 0;
}

.product-li:hover .dropdown-nav-items{
    visibility: visible;
}
/* Bag hover */
.bag-li {
    position: relative;
}
.bag-dropdown-nav-items {
    position: absolute;
    top: 50%;
    left: -30px;
    padding: 5px 5px;
    text-align: center;
    list-style: none;
    background-color: rgb(243, 152, 147) ;
    width: 150px;
    border-radius: 15px 15px 15px 15px;
    visibility: hidden;
}

.bag-dropdown-nav-items li {
    margin: 5px 0;
}

.bag-li:hover .bag-dropdown-nav-items{
    visibility: visible;
    top: 100%;
    transition: 1s;
}
/* Banner */

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

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

.banner p {
    color: #4e4e4e;
    max-width: 505px;
}

/* it is a inline block element */
.banner-price {
    color: #FF136F;
    font-size: 50px;
    height: 62px;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;

}

.banner img {
    max-width: 500px;
    height: 378px;
}
.banner img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* category */
/* .categories {
} */
 .categories {
    margin-bottom: 40px;
 }
.categories-title {
    margin: 64px 0;
    margin-bottom: 24px;
    font-size: 36px;
    font-weight: bold;
}

.categories-card-container {
    display: flex;
    gap: 26px;
    /* justify-content: space-between; */
}

.cards-Category {
    border-radius: 10px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    /* padding: 15px 60px; */
    gap: 76px;
    flex: 1;
}

.cards-Category:hover {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    box-shadow: black 0px 0px 10px;
}

.cards-Category h3 {
    color: white;
    font-weight: bold;
    font-size: 30px;
}

.cards-Category h3:hover {
    color: green;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.cards-Category img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

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

.cards-Category:nth-child(2) {
    background: linear-gradient(180.00deg, rgb(255, 88, 155) -0.006%, rgb(255, 19, 111) 99.994%);
}

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

/* info */
.info-card {
     display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}
.see-all {
    color: #FF9D00;
}

.panda-btn-2 {
    border-radius: 6px;
    background-color: rgb(0, 0, 0);
    padding: 14px 20px;
    border: none;
    font-weight: 500;
    color: white;
}

.bag-card img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.shoe-card img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* Shoes Section */

.shoes-section {
    background: rgb(244, 244, 244);
    padding: 50px 0;
}

.shoe-card-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.shoe-card {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 2px 0px 9px 0px rgb(0 0 0 / 15%);
}

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

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

/* bag Section */

.bags-section {
    background: rgb(244, 244, 244);
    padding: 50px 0;
}

.bag-card-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.bag-card {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 2px 0px 9px 0px rgb(0 0 0 / 15%);
}

.bag-card img {
    width: 336px;
    height: 300px;
}

.card-price {
    display: block;
    font-weight: 600px;
    font-size: 22px;
    margin-bottom: 12px;
}
/* Contact */
.contact-us-parent {
    background: rgb(255, 242, 241);
    text-align: center;
    padding: 146px 256px;
    margin: 70px auto;
    margin-bottom: 70px;
    border-radius: 15px;
}
.contact-input-button-parent {
    display: flex;
    justify-content: center;
}
.contact-input-button-parent input {
    border: none;
    padding: 20px 150px 20px 35px;
}
input {
    padding: 35px 5px;
}
.contact-input-button-parent .panda-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;

}

