/* ============================================
   AL-QAND EXCHANGE — LOCATION / MAP SECTION
   ============================================ */

/* ---------- Location/Map ---------- */
.map-frame {
    width: 100%;
    /*border-radius: 24px;*/
    overflow: hidden;
    /*border: 2px solid rgba(232, 93, 4, 0.1);*/
    background: transparent;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.map-frame:hover {
    border-color: var(--orange);
}*/

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-frame img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.map-fallback {
    display: none;
    padding: 40px;
    text-align: center;
    color: var(--ink-soft);
}

.map-frame.error .map-fallback {
    display: block;
}

.map-frame.error iframe {
    display: none;
}

.branches-wrap {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 24px;
    align-items: start;
}

@media (max-width: 640px) {
    .branches-wrap {
        grid-template-columns: 1fr;
    }
}

.branch-btn {
    position: relative;
    background: transparent;
    color: rgb(0 0 0);
    padding: 14px 22px;
    font-weight: 500;
    font-size: 0.92rem;
    display: block;
    width: 100%;
    text-align: left;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.branch-btn:hover {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 28px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.branch-btn:active {
    background: rgba(255, 255, 255, 0.08);
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.branch-btn:focus,
.branch-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[dir="rtl"] .branch-btn {
    text-align: right;
}

[dir="rtl"] .branch-btn:hover {
    padding-left: 22px;
    padding-right: 28px;
}

@media (max-width: 768px) {
    .map-frame {
        height: 300px;
    }
}
