body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}
.navbar {
    background: linear-gradient(90deg, #FF5733, #2D98DA);
    padding: 12px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1rem;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
    transform: scale(1.1);
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.6);
}
.btn-custom {
    background: #F4D03F;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.btn-custom:hover {
    background: #FFC300;
    color: #000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}
.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F4D03F;
    margin-left: 10px;
}
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        margin-right: 10px;
    }
    .profile-img {
        width: 28px;
        height: 28px;
    }
}
.popular {
    padding: 50px 0;
    text-align: center;
}
.popular h2 {
    color: #FF5733;
    font-weight: bold;
}
.popular p {
    color: #555;
    font-size: 1.1rem;
}
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: scale(1.05);
}
.card img {
    border-radius: 15px 15px 0 0;
    height: 250px;
    object-fit: cover;
}
.card-title {
    font-weight: bold;
    color: #2D98DA;
}
.card-text {
    font-size: 1rem;
    color: #777;
}
.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF5733;
}
.btn-order {
    background: #F4D03F;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.btn-order:hover {
    background: #FFC300;
    color: #000;
}
.card-img-top {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    object-fit: contain; /* Ensures the image covers the area without distortion */
}
