body {
    overflow: hidden;
}

main {
    margin: auto;
    background-color: #1b1b1b;
    color: #fff;
}

.headding {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.sortbydropdown label {
    font-size: 15px;
}

#sortproductsby {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 3px 5px;
    border: 1px solid #e6e3e3;
}

.productheadding p {
    font-size: 30px;
}

.products-cont {
    display: flex;
    justify-content: center;
}

#products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 1430px;
    margin-bottom: 40px;
}

.product-details {
    width: auto;
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #121212;
    border-radius: 15px;
    border: none;
    cursor: pointer;
}

.product-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.product-details img {
    width: auto;
    height: 250px;
    transition: transform 2s, filter 1.5s ease-in-out;
    overflow: hidden;
    filter: brightness(90%);
    background-color: #0e0e0e;
}
.fries-con img{
    height: 300px;
}
.product-details img:hover {
    transform: scale(1.2);
    filter: brightness(100%);
}

.product-name {
    color: #fff;
    padding: 10px 0;
}

.price {
    color: #b99e56;
}

.para-content-info {
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.para-text {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    padding: 20px;
}

.know-more-button {
    padding: 10px 20px;
    border: 2px solid #ffffff;
    background-color: transparent;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.know-more-button:hover {
    background-color: rgb(243, 240, 240, .4);
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px 5px #212121;
}

.popup-content h2 {
    color: #ffffff;
    text-align: center;
    margin: 20px;
    font-family: 'Myriad Pro', sans-serif;
}

.order-options {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.order-options a {
    margin: 10px;
    height: auto;
}

.order-options a img {
    max-width: 80px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background-color: #000000;
}

.close-btn i {
    font-size: 30px;
    color: #ffffff;
}

@media (max-width: 550px) {

    .product-details {
        width: 90%;
    }

    .product-details img {
        width: 100%;
        height: auto;
    }

    .para-adjust1 {
        height: 600px;

    }

    .para-content-info {
        width: 70%;
    }

    .parallax-image {
        background: url('../images/mojitos.jpg') no-repeat center;
        height: 100%;
    }

    .sortbydropdown {
        padding: 20px 0 0 0;
    }

    #products {
        margin-top: -5px;
        margin-bottom: 20px;
    }

    .popup-content {
        width: 80%;
    }

    .order-now img {
        width: 75px;
    }

    .para-adjust1 {
        height: 600px;
    }

    .parallax-image {
        transform: translateZ(-600px) scale(4);
        height: 100%;
    }

    .product-details img:hover {
        transform: scale(1);
        filter: brightness(100%);
    }
}