* {
    font-family: 'Oswald';
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar-nav {
    justify-content: center;
    /* Centers the menu */
}

.nav-link {
    text-align: center;
    transition: color 0.3s ease;
}

.nav-link:hover {
    background-color: #0265cb !important;
    color: white !important;
    border-radius: 5px;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0265cb;
    --bs-btn-border-color: #0265cb;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0055bb;
    --bs-btn-hover-border-color: #0055bb;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0055bb;
    --bs-btn-active-border-color: #0055bb;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0055bb;
    --bs-btn-disabled-border-color: #0265cb;
}

.cart_qty {
    right: -5px;
    top: -5px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: red;
    color: white;
    position: absolute;
    font-size: 12px;
    line-height: 21px;
}

.social_media_icon {
    height: 30px;
}

.footer_social {
    height: 30px;
    margin: 5px;
}

.pmenu_card {
    background-color: lightgray;
    border-radius: 10px;
    padding: 15px;
    border-radius: 15px;
}

.category_card {
    width: 120px;
    display: inline-block;
    margin: 15px 5px;
    text-align: center;
    border-radius: 15px;
}

.category_card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.only_laptop_inline {
    display: inline-block;
}

.only_laptop {
    display: block;
}

@media screen and (min-width: 0px) and (max-width: 992px) {
    .only_laptop_inline {
        display: none;
    }

    .only_laptop {
        display: none;
    }
}

.chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #0265cb;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.chip.active {
    background-color: #0265cb;
    color: #fff;
}

a {
    text-decoration: none;
}

.product_card {
    display: inline-block;
    border: 1px solid lightgray;
    margin: 15px;
    border-radius: 10px;
}

.product_card img {
    width: 150px;
    width: 150px;
}

.product_card p {
    padding: 0 5px;
    max-width: 140px;
    font-size: 12px;
    margin: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.buy-now-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #0265cb;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Oswald';
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
    background-color: #0055bb;
}