body {
    font-family: none;
    margin: 0;
    padding: 20px;
    text-align: center;
    background-color:white;
    font-family: "Montserrat" ;

}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: none;
    /* border: #28a745 1px solid; */
    position: static;
    font-family: "Montserrat" ;

}
@font-face {
    font-family: "Montserrat" ;
    src: url(/fonts/Laviossa-Medium.otf) format('opentype');
    font-weight: medium;
    font-style: medium;
}
#toogleBtn {
    font-size: 24px;
    display: none;
    cursor: pointer;
}

@media (max-width: 576px) {
    #toogleBtn {
        display: initial;
        margin-right: 5%;

    }

    #menu {
        top: 50px;
        left: -100%;
        transition: 400ms;
        position: fixed;
        flex-direction: column;
        color: black;
        width: 50%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 20px;
        z-index: 1000;
        display: initial;

        font-family: "Montserrat" ;
    }

    #menu.open-menu {
        left: 0;
    }

    #menu li {
        margin: 10px 66px   ;
    }
}

#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0;
    transition: 400ms;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
}

.show-overlay {
    opacity: 1 !important;
    visibility: visible;
}

nav {
   display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    margin: auto;
    /* background: transparent; */
    color: black;
    /* border: 1px solid black; */
    height: 100px;
    font-family: "Montserrat" ;

}
nav .logo img{
    width: 40%;
    margin-left: -50%;
}
#menu {
    font-size: 14px;
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: left;
    font-family: Arial, Helvetica, sans-serif;
    font-family: "Montserrat" ;
    justify-content: center;
    /* border: #28a745 1px solid; */

}

.search-box {
    width: 120px;
    height: 25px;
    margin: 0 20px 0 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    background-color: transparent;
    gap: 2px;
    padding-right: 55px;
    margin-left: -40px;
    border: 1px solid black;
    font-family: "Montserrat" ;

}

input::placeholder {
    color: black;
    /* Tomato red color */
    opacity: 1;
    /* Ensure the placeholder text is fully visible */
}

#search-icon {
    border: none;
    height: 20px;
    color: black;
    width: 19px;
    display: block;
}

.search-box input {
    color: black;
    background-color: transparent;
    
    border: none;
    /* Removes the border from the input field */
    outline: none;
    /* Removes the outline when focused */
    flex: 1;
    font-family: "Montserrat" ;

    /* Allows input to take available space */
}
.dropbtn {
    background-color:transparent;
    color: white;
    /* padding: 16px; */
    font-size: 14px;
    border: none;
    font-family: "Montserrat" ;

}
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    /* border: #007bff 2px solid; */
    padding: 4px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: transparent;}

  .banner img {
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    #menu {
        display:initial;
        flex-direction: column;
        background-color:#fff;
        position: absolute;
        top: 60px;
        right: 70px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 10px;
        z-index: 1000;
    }

    #menu.show {
        display: flex;
    }

    #toggleBtn {
        display: block;
        margin-right: 5%;
    }
}


.similars-title {
    /* font-size: 24px; */
    margin-top: 70px;
}


/* Product Details */
.product-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 25px;
    background-color: white;
    padding: 20px;
    margin-top: 70px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
}

.product-details img {
    width: 500px;
    border-radius: 10px;
    cursor: pointer;
    /* font-size: 40px; */
}

.product-info {
    max-width: 400px;
    font-family: none        ;
    text-align: justify;
}

.product-info h1 {
    font-size: 48px;
}

.btn {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 5px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn.light {
    background-color:black;
    color: white;
}

/* .btn.dark {
    background-color: gray;
    color: white;
} */

.btn:hover {
    opacity: 0.8;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Similar Products */
.similar-title {
    font-size: 40px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    margin-bottom: 20px;

}

.similar-products {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 206px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100px;
    height: auto;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

.product-card p {
    font-size: 14px;
    color: #666;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .product-details {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .product-info {
        max-width: 100%;
    }

    .similar-products {
        gap: 15px;
    }

    .product-card {
        width: 150px;
        padding: 15px;
    }

    .product-card img {
        width: 80px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card p {
        font-size: 12px;
    }
    nav .logo img {
        width: 40%;
        margin-left: -50%;
    }
    .product-info {
        max-width: 400px;
        font-family: none        ;
        text-align: center;
    }
    .product-details img {
        width: 300px;
        border-radius: 10px;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .product-details {
        padding: 15px;
    }

    .product-card {
        width: 120px;
        padding: 10px;
    }

    .product-card img {
        width: 70px;
    }

    .product-card h3 {
        font-size: 12px;
    }

    .product-card p {
        font-size: 10px;
    }
    .product-info {
        max-width: 400px;
        font-family: none        ;
        text-align: center;
    }
    nav .logo img {
        width: 40%;
        margin-left: -50%;
    }
    .product-details img {
        width: 300px;
        border-radius: 10px;
        cursor: pointer;
    }
    
}

#ordernow {
    width: 100%;
    height: 290px;
    background-color: black;
    color: #FFFFFF;
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
    font-size: 40px;
    display: flex;
    margin-top: 5%;
    border-radius: 10px;
    /* justify-content: center; */
}
/* .left{
    width: 13%;
    height: 200px;
    margin-top: 90px;
} */
.right{
    width: 100%;
    height: 290px;
    /* border: #E23744 1px solid; */
}

.bot{
    display: flex;
    margin-top: 5%;
    gap: 120px;
    justify-content: center;
    /* border: 1px solid blueviolet; */
}
/* h3{
    margin-left: -10%;
} */
@media (max-width: 768px) {
    #ordernow {
        height: auto; /* Allow height to adjust automatically */
        flex-direction: column; /* Stack the elements vertically */
        align-items: center; /* Center align items */
        margin-top: 10%;
    }

    h3{
        margin-left: 0%;
    }

    .left {
        width: 50%;
        height: auto;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .right {
        width: 80%;
        text-align: center;
        margin-top: 10px;
    }

    .bot {
        display: block;
        margin-left: 0;
        text-align: center;
    }

    .SWIGGY, .ZOMATO {
        display: inline-block;
        width: 80%;
        margin: 10px 0;
    }

    .SWIGGY img, .ZOMATO img {
        width: 50%;
        height: auto;
    }

    h3.order-now-title {
        font-size: 28px;
    }
}

/* Additional responsive design for smaller screens */
@media (max-width: 480px) {
    h3.order-now-title {
        font-size: 24px;
    }

    .SWIGGY img, .ZOMATO img {
        width: 70%;
    }
}

