/* ─── Genel ─────────────────────────────────────────────── */
* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 769px) {
    body {
        background: #e8e8e8 !important;
        min-height: 100vh;
    }
}

/* ─── Merkez Görsel Sütunu ─────────────────────────────── */
.site-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

img.w-100 {
    display: block;
    width: 100%;
    height: auto;
}

/* ─── Sadece Mobilde Görünür ─────────────────────────────── */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* ─── CTA Butonları ─────────────────────────────────────── */
img.cta-btn {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

img.cta-btn:hover {
    opacity: 0.88;
}

/* ─── WhatsApp Butonu ───────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
}

/* ─── Sipariş Modalı ────────────────────────────────────── */
.om-header {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.om-title {
    display: block;
    width: 100%;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: #111;
    padding: 4px 44px; /* sağdaki close butonuyla görsel denge */
}

/* ─── Görsel Tabanlı Paket Seçimi ───────────────────────── */
.om-pkg-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.om-pkg-row {
    display: block;
    width: 100%;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    line-height: 0;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.om-pkg-row img {
    display: block;
    width: 100%;
    height: auto;
}

.om-pkg-row:hover {
    border-color: #cfd4ff;
}

.om-pkg-row.selected {
    border-color: #2f3fd0;
    box-shadow: 0 0 0 2px rgba(47, 63, 208, 0.18);
}

/* ─── Sepet Özeti ───────────────────────────────────────── */
.om-cart {
    border: 2.5px solid #b7ebc0;
    border-radius: 10px;
    background: #f0fff4;
    padding: 12px 14px;
}

.om-cart-title {
    font-size: 13px;
    font-weight: 700;
    color: #276749;
    margin-bottom: 6px;
}

.om-cart-empty {
    font-size: 12px;
    color: #888;
    text-align: center;
    padding: 4px 0;
}

.om-cart-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #333;
}

/* ─── Bölüm Etiketi ─────────────────────────────────────── */
.om-section-label {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

/* ─── Ödeme Kartları ────────────────────────────────────── */
.pay-card {
    display: block;
    cursor: pointer;
    margin: 0;
}

.pay-radio { display: none; }

.pay-card-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 2.5px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    transition: all 0.18s;
}

.pay-radio-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    transition: all 0.18s;
}

.pay-card.active .pay-card-inner {
    border-color: #2f3fd0;
    background: #f2f3ff;
    color: #2f3fd0;
}

.pay-card.active .pay-radio-dot {
    border-color: #2f3fd0;
    background: #2f3fd0;
    box-shadow: inset 0 0 0 3px #fff;
}

/* ─── Form Inputlar ─────────────────────────────────────── */
.order-input {
    border-radius: 8px;
    border-color: #ddd;
    font-size: 16px;
    padding: 13px 16px;
    margin-bottom: 4px;
}

.order-input:focus {
    border-color: #2f3fd0;
    box-shadow: 0 0 0 3px rgba(47, 63, 208, 0.12);
}

/* ─── Gönder Butonu ─────────────────────────────────────── */
.btn-submit-order {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2f3fd0, #4753e8);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-submit-order:hover:not(:disabled) {
    opacity: 0.93;
    transform: translateY(-1px);
}

.btn-submit-order:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
