*{
    max-width: 1440px;
    margin: auto;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
/* SHARED STYLE */
.button{
    width: 168px;
    height: 52px;
    font-family: Inter;
    font-weight: 400;
    color: #FFFFFF;
    background: linear-gradient(180.00deg, 
    rgb(255, 88, 155) -0.006%,
    rgb(255, 19, 111) 99.994%);
    border-radius: 6px;
    border: none;
}

/* NAV BAR */
nav{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.nav-items{
    list-style: none;
    display: flex;
    gap: 24px;
}
.nav-items ul{
    list-style: none;
}
.nav-items li a{
    text-decoration: none;
    color: #707070;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0%;
}
.search{
    position: relative;
    /* font-family: Poppins; */
    color: #BABABA;
}
.search input{
    width: 500px;
    padding: 15px 30px;
    border-radius: 66px;
    background: rgb(241, 241, 241);
    font-family: Poppins;
    border: none;
}
.search i {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 21.94px;
    height: 22.08px;
    color: #BABABA;
}
.product-li{
    position: relative;
    top: 30%;
     transition: 0.5s;
}
.dropdown-nav-items{
    position: absolute;
    visibility: hidden;
   
}
.product-li:hover .dropdown-nav-items{
    visibility: visible;
    top: 100%;
}
/* HERO SECTION */
.hero{
    margin-top: 63px;
    margin-bottom: 63px;
    height: 455px;
    display: flex;
    justify-content: space-between;
    background-color: #FEEAE9;
    border-radius: 10px;
}
.hero h1 {
    color: rgb(31, 31, 31);
    font-family: Poppins;
    font-size: 56px;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: 0%;
    text-align: left;
}
.hero p{
    color: rgb(78, 78, 78);
    font-family: Inter;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: left;
}
.hero h2 {
    margin-top: 25px;
    color: rgb(255, 19, 111);
    font-family: Poppins;
    font-size: 41px;
    font-weight: 600;
    line-height: 62px;
    letter-spacing: 0%;
    text-align: left;
}
.hero img {
    width: 402px;
    height: 378px;
}

/* CATEGORIES */
.categories{
    width: 1340px;
    margin-bottom: 98px;
}
.title{
    color: rgb(31, 31, 31);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
}
.categories-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    width: 100%;
}
.categories-box{
    display: flex;
    width: 359px;
    height: 120px;
    border-radius: 15px;
    flex: 1;
}
.categories-text{
    font-size: 36px;
    font-weight: 500;
    color: #FFFFFF;
}
.categories-img{
    height: 90px;
}
.categories-watch{
    background: linear-gradient(151.85deg, 
    rgb(255, 156, 53) 14.537%,
    rgb(255, 208, 25) 84.486%);
}
.categories-bag{
    background: linear-gradient(180.00deg, 
    rgb(255, 88, 155) -0.006%,
    rgb(255, 19, 111) 99.994%);
}
.categories-shoes{
    background: linear-gradient(170.38deg, 
    rgb(66, 137, 255) 15.416%,
    rgb(63, 7, 248) 74.29%);
}


/* SHOPPING ITEMS */
.shoes{
    background: rgb(244, 244, 244);
    max-width: 2000px;
}

/* BAGS */
.bags{
    background: rgb(250, 250, 250);
}

/* SHOES */
.container-top{
    display: flex;
    gap: 1020px;
}
.container-top h3{
    text-align: left;
}
.container-top h5{
    text-align: right;
}
.container{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.container img{
    height: 207px;
}
.container h3{
    margin-top: 22px;
    margin-bottom: 16px;
}
.container button{
    background: rgb(0, 0, 0);
}
.price{
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 16px;
}
.container-item{
    width: 360px;
    height: 504px;
    border-radius: 20px;
    background: rgb(255, 255, 255);
    align-items: center;
    text-align: center;
    margin: 24px;
}

/* FOOTER */
footer.site-footer{
    margin: 98px auto;
    max-width: 1212px;
    background: rgb(255, 242, 241);
    border-radius: 16px;
    padding: 40px;
    box-sizing: border-box;
}
.footer-inner{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}
.footer-col h3,
.footer-col h4{
    color: rgb(31, 31, 31);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}
.footer-col p{
    color: rgb(112, 112, 112);
    font-size: 14px;
    margin: 0 0 12px 0;
}
.footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li{
    margin-bottom: 8px;
}
.footer-col ul li a{
    text-decoration: none;
    color: #707070;
    font-size: 14px;
}
.social a{
    display: inline-block;
    margin-right: 10px;
    color: #707070;
    font-size: 16px;
}
.newsletter-form{
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.newsletter-form input{
  flex: 1;
  background: rgb(255, 255, 255);
  color: #333333;
  font-size: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 16px;
}
.newsletter-form button{
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    background: linear-gradient(180.00deg, rgb(255, 88, 155) 0.004%, rgb(255, 19, 111) 100.004%);
    color: #FFFFFF;
    font-size: 16px;
}
.footer-bottom{
    text-align: center;
    margin-top: 24px;
    color: #707070;
    font-size: 14px;
}

@media (max-width: 900px){
    .footer-inner{
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-form{flex-direction: column;}
    .newsletter-form button{width:100%;}
}

@media (max-width: 480px){
    .footer-inner{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col ul li{display: inline-block; margin: 0 8px 8px 8px;}
}