* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

    ::-webkit-scrollbar {
        display: none;
    }
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #ff5a5f;
}

.hero {
    width: 80vw;
    background-color: white;
    display: flex;
    justify-content: space-between;
    border-radius: 33px;
    /* min-width: 950px; */
    height: 800px;
    padding: 13px;

}


.intro {
    /* background-color: white; */
    width: 60%;
    padding: 13px;
}

.details {
    padding: 10px;
}


.intro .heading {
    display: flex;
    font-size: 80px;
    text-transform: lowercase;
    font-weight: 400;
    font-style: normal;
    gap: 10px;
    color: #ff5a5f;
    padding: 10px;
    justify-content: center;
}

.seprate {
    width: 70vw;
    height: 1px;
    margin-bottom: 10px;
    background-color: rgba(128, 128, 128, 0.507);
}

.intro img {
    width: 90px;
    object-fit: contain;
}

/* .explain{
    display: flex;
    flex-direction: column;
    } */
.screen {
    display: flex;
    flex-direction: column;
    width: 370px;
    height: 770px;
    border-radius: 33px;
    /* border: 1px solid black; */
    background-color: white;
    transition: 0.7s;
    border: none;
    /* box-shadow: 7px 8px 50px 3px #bababa; */
    box-shadow: 7px 8px 50px 3px #c3c3c3;
}

.screen:hover {
    box-shadow: 0px 5px 20px 3px #a6a6a6;
}

.nav {
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 140px;
    /* background-color: aqua; */
    padding-bottom: 8px;
    /* border-radius: 33px; */
    border-top-left-radius: 33px;
    border-top-right-radius: 33px;
    box-shadow: 0px -3px 20px 0px #5a5a5a22;
    position: sticky;
}

.search {
    width: 100%;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    border-radius: 25px;
    /* padding: 5px; */
    /* margin-bottom: 10px; */
    /* box-shadow: 10px 3px 2px 2px; */


}

.search_shadow {
    width: 90%;
    height: 5.5vh;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 5px 20px 0px rgba(128, 128, 128, 0.532);

}

/* .search_shadow img{
        width: 52px;
        height: 20px;
        object-fit: contain;
        } */

.search input {
    width: 100%;
    height: 5.5vh;
    border-radius: 25px;
    /* padding: 10px; */
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    font-size: 15px;
    border: none;
    outline: none;
}

/* .buttons{
            width: 70px;
            height: 50px;
            background-color: brown;
            } */

.buttons {
    width: 100%;
    /* Ensure it doesn't exceed the container */
    /* background-color: black; */
    display: grid;
    grid-template-columns: repeat(6, auto);
    justify-content: center;
    /* Centers the grid */
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    gap: 15px;
    padding-top: 10px;
    /* white-space: nowrap; */
    padding-left: 25%;
    overflow: scroll;
}

.btn {
    width: 58px;
    /* height: 50px; */
    /* height: auto; */
    /* background-color: brown; */
    /* padding: 5px; */
    display: flex;
    margin-top: 8px;
    /* scroll-snap-align: start; */
    flex-direction: column;
    align-items: center;
    /* Center items */
    text-align: center;
}

.buttons img {
    width: 50%;
    height: 100%;
    object-fit: contain;
}

.btn p {
    margin-top: 2px;
    font-size: 10px;
    /* Adjust text size */
    color: black;
    /* Adjust text color if needed */
    /* font-family: "Poppins", sans-serif; */
    font-weight: 500;
    font-style: normal;
}

.main_content {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    overflow: scroll;
    /* gap: 15px; */
    /* margin-top: 19px; */
    /* background-color: aqua; */
}

.listing {
    /* background-color:bisque; */
    width: 90%;
    /* height: 275px; */
    /* margin: auto; */
    border-radius: 12px;
    padding: 18px 0px;
    margin: auto;
    font-size: 13px;
}

.listing img {
    height: 275px;
    width: 100%;
    border-radius: 12px;
    object-fit: fill;
    margin-bottom: 3px;
}

.listing .dark {
    font-weight: 500;
    font-style: normal;
}

.listing .light {
    font-weight: 300;
    font-style: normal;
}

.listing .price {
    font-weight: 500;
    font-style: normal;
}

.footer {
    height: 63px;
    /* background-color: aqua; */
    border-bottom-right-radius: 33px;
    border-bottom-left-radius: 33px;
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(128, 128, 128, 0.466);
}

.img_container {
    display: flex;
    flex-direction: column;
    height: 80%;
    width: 58px;
    /* background-color: bisque; */
    justify-content: center;
    align-items: center;
    /* border-radius: 33px; */
}

.img_container img {
    height: 50%;
    object-fit: contain;
}

.img_container p {
    font-size: 10px;
}

.footer .img_container:hover {
    filter: brightness(0) saturate(100%) invert(40%) sepia(99%) saturate(1925%) hue-rotate(340deg) brightness(96%) contrast(105%);
}
  

@media screen and (max-width: 1150px) {
    .hero {
        width: 100vw;
    }

}


@media screen and (max-width: 820px) {
    body {
        background-color: white;
    }

    .hero {
        height: 100vh;
        width: 100vw;
        flex-direction: column;
        justify-content: space-between; /* Distribute space */
        align-items: center;
        min-height: 0; /* Prevent overflow */
        /* overflow: hidden; */
    }

    .intro {
        flex: 1; /* Allow intro to take available space */
        width: 95%;
        padding: 13px;
        font-size: small;
        /* text-align: center; */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center text */
    }

    .intro .heading {
        font-size: 42px;
    }

    .intro img {
        width: 45px;
    }
    .seprate {
        width: 100%;
    }

}