@media screen and (max-width: 768px) {
    .maps {
        flex-direction: column;
        max-width: 100%;
        height: 500px;
        padding: 10px 0;
    }
}

.talabat {
    position: fixed;
    z-index: 10;
    right: 5%;
    bottom: 5%;
}

.talabat-btn {
    display: flex;
    width: 65px;
    height: 65px;
    align-items: center;
    justify-content: center;
    border: 1px;
    border-radius: 125px;
    margin-bottom: 10px;
    position: relative;
    left: 18px;
    transition: left 1s, transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f25500;
    cursor: pointer;
}

.talabat-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(242, 85, 0, 0.5);
}

.talabat-img {
    width: 55px;
    height: 55px;
    border-radius: 30px;
}

/* Tooltip */
.talabat-btn::after {
    content: "Order Now";
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background-color: #f25500;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.talabat-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.group-search {
    position: relative;
    margin-bottom: 20px;
}

.input-search {
    width: 100%;
    height: 50px;
    background: #F5FBFF;
    padding-left: 20px;
    font-size: 15px;
    color: #000;
    border: none;
    border: 1px solid #E8E8E8;
    border-radius: 30px;
}

.btn-search {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    border: none;
    color: #fff;
    background: #F0542C;
    padding: 10px;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 30px;
    top: 5px;
    right: 5px;
    font-size: 16px;
    font-weight: 600;
}

.btn-icon {
    border: none;
    /*background-color: unset;*/
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding-left: 0;
    list-style: none;
}

.pagination li {
    display: inline;
}

.pagination .page-link {
    color: #222;
    border-radius: 4px;
    margin: 0 4px;
    border: 1px solid #ddd;
    padding: 6px 14px;
    background: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    display: inline-block;
    font-size: 1rem;
}

.pagination .page-item.active .page-link {
    background: #222;
    color: #fff;
    border-color: #222;
}

.pagination .page-link:hover {
    background: #444;
    color: #fff;
    border-color: #444;
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    background: #f8f9fa;
    border-color: #ddd;
    pointer-events: none;
}

.text-muted {
    display: none !important;
}

.active {
    color: yellow;
}
