/* Mobil alt aksiyon bar? � anasayfa ile birebir (layout) */

.mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(15, 15, 26, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

.mobile-action-btn {
    min-height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-action-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-action-btn.call {
    color: #fff;
    border: 1px solid rgba(201, 169, 110, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-action-btn.reserve {
    color: #fff;
    background: linear-gradient(135deg, #a8884d, #c9a96e, #e0c98f);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.mobile-action-btn:active {
    transform: translateY(1px);
}

@media (max-width: 768px) {
    body {
        padding-bottom: 84px;
    }

    .mobile-action-bar {
        display: grid;
    }

    .whatsapp-float,
    .whatsapp-btn {
        display: none !important;
    }

    .back-to-top {
        bottom: 100px;
    }
}
