body {
    font-family: 'Roboto', sans-serif;
}
.image {
    width: 100%;
    height: 100%;
}

.carousel-inner img{
    width: 100%;
    height: 70%;
}
.checkout-form label {
    font-size: 12px;
    font-weight: 700;
}

.checkout-form input {
    font-size: 14px;
    padding: 5px;
    font-weight: 400;
}

.order-details label {
    font-size: 12px;
    font-weight: 700;
}

.order-details div {
    font-size: 14px; /* Fixed typo from 14p to 14px */
    padding: 5px !important;
}

.search-bar {
    width: 40%;
    margin-left: 5%;
    margin-top: 1%;
    text-decoration: none;
}

.ui-menu {
    z-index: 3500 !important;
}

/* styled autocomplete dropdown */
.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ui-autocomplete .ui-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ui-autocomplete .ui-menu-item a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}
.ui-autocomplete .ui-menu-item a:hover {
    background: #f5f5f5;
}
.ui-autocomplete .autocomplete-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}
.ui-autocomplete .autocomplete-label {
    font-size: 14px;
    color: #333;
}

.check {
    color: #ffe400;
}

.whatsapp-chat {
    bottom: 10px;
    left: 10px;
    position: fixed;
}

a {
  text-decoration: none;
  text-transform: capitalize;
}

main{
    width: 100%;
    height: 840px;
    /*background: red;*/
    margin: 10px auto;
    position: relative;
    padding: 5px 0;
}
main .text{
    padding: 10px;
    text-align: center;
    /*font-size: 30px;*/
    color: #554;
}
.text h1{
    font-size: 50px;
}
.text p{
    width: 60%;
    padding: 5px;
    margin: auto;
    line-height: 30px;
}
section{
    width: 98%;
    height: 400px;
    /*background: red;*/
    margin: auto;
    display: flex;
    align-items: center;
    overflow-x: auto;
}
section::-webkit-scrollbar{
    display: none;
}
section .product{
    min-width: 24%;
    height: auto;
    background: whitesmoke;
    margin:  0 20px  0 0;
    border-radius: 20px;
    position: relative;
    left: 0;
    transition: 0.5s;

}
picture{
    width: 100%;
    height: 70%;
    padding: 20px;
    /*background: green;*/
    display: flex;
    overflow: hidden;
    margin-bottom: 20px;
}
picture img{
    width: 100%;
}
@media (max-width: 768px) {
    .text h1{
        font-size: 35px;
    }
    .text p{
        width: 90%;
    }
    section .product {
        min-width: 70%;
        height: auto;
        margin:  0 10px  0 0;
    }
    a{
        padding: 6px 10px;
    }
}
.card-img-top {
    height: 200px;
}




.review-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.rating {
    direction: rtl;
    display: inline-flex;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 40px;
    color: #ddd;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover effect */
.rating label:hover,
.rating label:hover ~ label {
    color: gold;
}

/* Checked effect */
.rating input:checked ~ label {
    color: gold;
}

/* Button style */
.btn-submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: gold;
    color: #000;
}

.reviews-section {
    background: #fafafa;
    padding: 30px;
    border-radius: 15px;
}

.average-rating {
    text-align: center;
}

.star {
    font-size: 22px;
    color: #ddd;
}

.star.filled {
    color: gold;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.review-header {
    font-size: 14px;
    color: #555;
}

.category-tabs {
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    border-radius: 50px;
    padding: 10px 16px;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.category-tab.active,
.category-tab:hover {
    background-color: #111;
    color: #fff;
}

.category-tab-img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
}

.category-products {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

