html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    padding: 0;
    margin: 0;
}

nav {
    background-color: black;
    color: white;
    padding: 20px 50px;
}

.home-logo {
    height: 40px;
    width: auto;
}

.navtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search {
    display: flex;
    align-items: center;
    background-color: gray;
    padding: 10px 28px;
    border-radius: 10px;
}

.searchinput {
    border: none;
    background-color: transparent;
}

.searchinput::placeholder {
    color: lightgray;
}

.limitedoffer {
    font-size: 20px;
    cursor: pointer;
}

/*................ BOTTOM  NAV BAR STYLE..........*/
.navbottem {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuitem {
    margin-right: 50px;
    cursor: pointer;
    color: lightgray;
    font-weight: 400;
}

.slider {
    background: url("img/background.jpg");  
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%)
}

.slidewapper {
    display: flex;
    width: 500vw;
    transition: all 1s ease-in-out;
}


.slideitem {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sildertitle {
    color: aliceblue;
    position: absolute;
    top: 10%;
    right: 12%;
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    z-index: 1;
}

.sliderprice {
    color: aliceblue;
    position: absolute;
    top: 10%;
    left: 8%;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgb(88, 88, 88);
    z-index: 1;
}

.buybutton {
    color: aliceblue;
    position: absolute;
    top: 60%;
    right: 10%;
    font-size: 35px;
    font-weight: 900;
    border: 1px solid rgb(88, 88, 88);
    z-index: 1;
    background-color: black;
    cursor: pointer;
}

.sliderimg {
    z-index: 1;
    height: auto;
    width: 45%;
}

.sliderbg {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    /*background-color: red;*/
    position: absolute;
}

.buybutton:hover {
    background-color: white;
    color: black;
}

.slideitem:nth-child(1) .sliderbg {
    background-color: #55bb7f;
}

.slideitem:nth-child(2) .sliderbg {
    background-color: rgb(128, 91, 165);
}

.slideitem:nth-child(3) .sliderbg {
    background-color: rgb(163, 168, 168);
}

.slideitem:nth-child(4) .sliderbg {
    background-color: cornflowerblue;
}

.slideitem:nth-child(5) .sliderbg {
    background-color: rgb(104, 103, 99);
}


.slideitem:nth-child(1) .sliderprice {
    color: #55bb7f;
}

.slideitem:nth-child(2) .sliderprice {
    color: rgb(241, 241, 241);
}

.slideitem:nth-child(3) .sliderprice {
    color: rgb(163, 168, 168);
}

.slideitem:nth-child(4) .sliderprice {
    color: cornflowerblue;
}

.slideitem:nth-child(5) .sliderprice {
    color: rgb(168, 149, 149);
}

.features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.featureIcon {
    width: 50px;
    height: 50px;
}

.featureTitle {
    font-size: 20px;
    font-weight: 600;
    margin: 20px;
}

.featureDesc {
    color: gray;
    width: 50%;
    height: 100px;
}

.product {
    height: 100vh;
    background-color: whitesmoke;
    position: relative;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}

.payment {
    width: 500px;
    height: 540px;
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px 50px;
    display: none;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.3);
}

.payTitle {
    font-size: 20px;
    color: lightgray;
}

label {
    font-size: 14px;
    font-weight: 300;
}

.payInput {
    padding: 10px;
    margin: 10px 0px;
    border: none;
    border-bottom: 1px solid gray;
}

.payInput::placeholder {
    color: rgb(163, 163, 163);
}

.cardIcons {
    display: flex;
}

.cardIcon {
    margin-right: 10px;
}

.cardInfo {
    display: flex;
    justify-content: space-between;
}

.sm {
    width: 30%;
}

.payButton {
    position: absolute;
    height: 40px;
    bottom: -40;
    width: 100%;
    left: 0;
    -webkit-box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.3);
    background-color: #369e62;
    color: white;
    border: none;
    cursor: pointer;
}

.close {
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: gray;
    color: white;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 2px;
}

.btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #00154c, #12376e, #23487f);
    color: #fff;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
  
  .btn span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: top 0.5s;
  }
  
  .btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .btn:hover .btn-text-one {
    top: -100%;
  }
  
  .btn:hover .btn-text-two {
    top: 50%;
  }
  

.productImg {
    width: 50%;
}

.productDetails {
    position: absolute;
    top: 10%;
    right: 0;
    width: 40%;
    padding: 50px;
}

.productTitle {
    font-size: 75px;
    font-weight: 900;
}

.productDesc {
    font-style: 24px;
    color: gray;
}

.colors,
.sizes {
    display: flex;
    margin-bottom: 20px;
}

.color {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background-color: black;
    margin-right: 10px;
    cursor: pointer;
}

.color:last-child {
    background-color: darkblue;
}

.size {
    padding: 5px 20px;
    border: 1px solid black;
    margin-right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.productButton {
    float: right;
    padding: 10px 20px;
    background-color: black;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.productButton:hover {
    background-color: white;
    color: black;
}

.gallery {
    padding: 50px;
    display: flex;
}

.galleryItem {
    flex: 1;
    padding: 50px;
}

.galleryImg {
    width: 100%;
}

.newSeason {
    display: flex;
}

.nsItem {
    flex: 1;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nsImg {
    width: 100%;
    height: 500px;
}

.nsTitle {
    font-size: 40px;
}

.nsButton {
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
}

footer {
    display: flex;
}

.footerLeft {
    flex: 2;
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.fMenuTitle {
    font-size: 16px;
}

.fList {
    padding: 0;
    list-style: none;
}

.fListItem {
    margin-bottom: 10px;
    color: gray;
    cursor: pointer;
}

.footerRight {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fInput {
    padding: 5px;
}

.fButton {
    padding: 5px;
    background-color: black;
    color: white;
}

.fIcons {
    display: flex;
}

.fIcon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.copyright {
    font-weight: 300;
    font-size: 14px;
}

@media screen and (max-width:480px) {

    nav {
        background-color: black;
        color: white;
        padding: 10px 10px;
    }

    .home-logo {
        height: 20px;
        width: auto;
    }

    .search {
        display: none;
    }

    .navbottom {
        flex-wrap: wrap;
    }

    .limitedoffer {
        font-size: 15px;
        cursor: pointer;
    }

    .menuitem {
        margin: 8px;
        font-weight: 600;
        font-size: 12px;
    }

    .slider {
        clip-path: none;
        height: 65vh;
    }

    .sliderimg {
        width: 80%;
    }

    .sliderbg {
        width: 80%;
        height: 80%;
    }

    .sildertitle {
        color: aliceblue;
        position: absolute;
        top: 93%;
        right: 31%;
        font-size: 24px;
        font-weight: 500;
        text-align: center;
        z-index: 1;
    }

    .sliderprice {
        color: aliceblue;
        position: absolute;
        top: unset;
        bottom: -145px;
        left: 70px;
        font-size: 22px;
        background-color: black;
        font-weight: 400;
        text-align: center;
        border: 1px solid rgb(88, 88, 88);
        z-index: 1;
    }


    .buybutton {
        right: 40px;
        top: 132%;
        font-size: 15px;
        font-weight: 400;
    }

    .features {
        flex-direction: column;
    }

    .featureIcon {
        width: 44px;
        height: 44px;
    }

    .featureTitle {
        font-size: 14px;
        font-weight: 600;
        margin: 9px;
    }

    .featureDesc {
        color: gray;
        width: 81%;
        height: 64px;
    }


    .product {
        clip-path: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        margin-bottom: 10px;
    }

    .productImg {
        width: 50%;
    }

    .productDetails {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        top: 0;
    }

    .productTitle {
        font-size: 20px;
        margin: 0;
    }

    .gallery {
        display: flex;
        flex-direction: column;
    }

    .galleryItem {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .galleryImg {
        width: 80%;
    }
    .galleryTitle {
        font-size: 18px;
    }

    .newSeason {
        flex-direction: column;
    }

    .nsTitle {
        font-size: 35px;
    }

    .nsItem:nth-child(2) {
        padding: 50px;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    .fListItem {
        font-size: 13px;
    }

    .footerLeft {
        padding: 20px;
        width: 90%;
    }

    .footerRight {
        padding: 20px;
        width: 90%;
        align-items: center;
        background-color: whitesmoke;
    }

    .payment {
        width: 90%;
        padding: 20px;
    }
}