:root {
        --ink: #312F4D;
        --ink-soft: #423f63;
        --amber: #FBBA00;
        --amber-deep: #E0A800;
        --paper: #FAF9F6;
        --card: #FFFFFF;
        --muted: #6F6C87;
        --border: #E5E2DA;
        --radius-lg: 16px;
        --radius-md: 12px;
        --radius-sm: 8px;
        --font-display: 'Sora', 'Segoe UI', Tahoma, sans-serif;
        --font-body: 'Inter', 'Segoe UI', Tahoma, sans-serif;
        --shadow-soft: 0 12px 30px rgba(49, 47, 77, 0.10);
    }

    /* ---------- Header ---------- */

    .site-header {
        background: var(--ink);
    }

    .header-inner {
        display: flex;
        align-items: center;
        padding: 18px 24px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .brand-mark {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        background: var(--amber);
        color: var(--ink);
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 13px;
        letter-spacing: 0.02em;
        flex-shrink: 0;
    }

    .brand-name {
        font-family: var(--font-display);
        font-weight: 700;
        color: #fff;
        font-size: 16px;
    }

    /* ---------- Hero ---------- */

    .hero {
        padding: 56px 0 40px;
    }

    .eyebrow {
        margin: 0 0 14px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 12px;
        font-weight: 700;
        color: var(--amber-deep);
    }

    .hero h1 {
        margin: 0 0 16px;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: clamp(26px, 4.2vw, 40px);
        line-height: 1.18;
        color: var(--ink);
        letter-spacing: -0.01em;
    }

    .hero-sub {
        margin: 0;
        max-width: 520px;
        color: var(--muted);
        font-size: 16px;
    }

    /* ---------- Service picker (4 buton) ---------- */

    .service-picker {
        padding-bottom: 28px;
    }

    .tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-tab {
        flex: 1 1 200px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        min-height: 52px;
        background: var(--ink);
        border: 1.5px solid var(--ink);
        border-radius: 999px;
        cursor: pointer;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        color: #fff;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    }

    .tab-code {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        border-radius: var(--radius-sm);
        background: var(--amber);
        color: var(--ink);
        transition: background-color 0.15s ease, color 0.15s ease;
    }

    .tab-code svg,
    .panel-code svg {
        width: 18px;
        height: 18px;
        display: block;
        stroke: currentColor;
    }

    .service-tab:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
        color: var(--amber);
    }

    .service-tab:focus-visible {
        outline: 3px solid var(--amber);
        outline-offset: 2px;
    }

    .service-tab.is-active {
        background: var(--amber);
        border-color: var(--amber);
        color: var(--ink);
    }

    .service-tab.is-active .tab-code {
        background: var(--ink);
        color: var(--amber);
    }

    /* ---------- Panel / Form alanı ---------- */

    .panel-area {
        padding-bottom: 64px;
    }

    .service-panel {
        display: none;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px;
        box-shadow: var(--shadow-soft);
    }

    .service-panel.active {
        display: block;
        animation: panelIn 0.35s ease;
    }

    @keyframes panelIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .service-panel.active {
            animation: none;
        }

        .service-tab {
            transition: none;
        }
    }

    .panel-head {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 26px;
    }

    .panel-code {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        border-radius: var(--radius-sm);
        background: var(--ink);
        color: var(--amber);
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 14px;
    }

    .panel-head h2 {
        margin: 0 0 6px;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 22px;
        color: var(--ink);
    }

    .panel-head p {
        margin: 0;
        color: var(--muted);
        font-size: 14.5px;
    }

    /* ---------- Form alanları ---------- */

    .field-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .field {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .field span {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--ink-soft);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .field input,
    .field select,
    .field textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        background: var(--paper);
        font-family: var(--font-body);
        font-size: 15px;
        color: var(--ink);
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .field textarea {
        resize: vertical;
        min-height: 90px;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        outline: none;
        border-color: var(--amber);
        box-shadow: 0 0 0 3px rgba(251, 186, 0, 0.25);
    }

    .field-wide {
        grid-column: 1 / -1;
    }

    .checkbox-field {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .checkbox-field input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: var(--amber);
        flex-shrink: 0;
    }

    .checkbox-field span {
        text-transform: none;
        font-weight: 500;
        font-size: 15px;
        color: var(--ink);
        letter-spacing: 0;
    }

    /* ---------- Submit ---------- */

    .submit-btn {
        appearance: none;
        border: none;
        background: var(--amber);
        color: var(--ink);
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 15px;
        padding: 14px 30px;
        border-radius: var(--radius-sm);
        cursor: pointer;
        min-height: 48px;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    }

    .submit-btn:hover {
        background: var(--amber-deep);
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

    .submit-btn:focus-visible {
        outline: 3px solid var(--ink);
        outline-offset: 2px;
    }

    .form-status {
        display: none;
        margin: 18px 0 0;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        background: rgba(251, 186, 0, 0.14);
        border: 1px solid var(--amber);
        color: var(--ink);
        font-size: 14px;
        font-weight: 500;
    }

    .form-status.show {
        display: block;
    }

    /* ---------- Footer ---------- */

    .site-footer {
        border-top: 1px solid var(--border);
        padding: 22px 0;
    }

    .site-footer p {
        margin: 0;
        text-align: center;
        color: var(--muted);
        font-size: 13px;
    }

    /* ============================================
   Responsive — Tablet
   ============================================ */

    @media (max-width: 860px) {
        .service-panel {
            padding: 26px 22px;
        }
    }

    /* ============================================
   Responsive — Mobil
   ============================================ */

    @media (max-width: 600px) {
        .hero {
            padding: 40px 0 28px;
        }

        .wrap {
            padding: 0 18px;
        }

        .header-inner {
            padding: 16px 18px;
        }

        .tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .service-tab {
            flex: none;
            padding: 12px 14px;
        }

        .tab-label {
            font-size: 15px;
        }

        .field-grid {
            grid-template-columns: 1fr;
        }

        .panel-head {
            gap: 12px;
        }

        .panel-head h2 {
            font-size: 19px;
        }

        .service-panel {
            padding: 22px 18px;
            border-radius: var(--radius-md);
        }
    }

    @media (max-width: 380px) {
        .tabs {
            grid-template-columns: 1fr;
        }
    }

.form-toast {
    position: fixed;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    z-index: 99999;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    width: min(420px, calc(100% - 32px));
    padding: 16px 18px;
    border-radius: 14px;

    background: #ffffff;
    border: 1px solid rgba(49, 47, 77, 0.12);
    box-shadow: 0 18px 45px rgba(49, 47, 77, 0.18);
    color: var(--ink);

    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -45%);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.form-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.form-toast-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--amber);
    position: relative;
}

.form-toast-icon::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-weight: 800;
    font-size: 18px;
}

.form-toast.error .form-toast-icon {
    background: #dc3545;
}

.form-toast.error .form-toast-icon::after {
    content: "!";
    color: #ffffff;
}

.form-toast-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-toast-content strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.form-toast-content span {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.45;
}

@media (max-width: 600px) {
    .form-toast {
        width: calc(100% - 32px);
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
    }
}
.panel-head-left {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.panel-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 12px 22px;
    border-radius: 8px;

    background: var(--ink);
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all .25s ease;
    margin-left: auto;
    
}

.panel-link-btn:hover {
    background: var(--amber);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 767px) {
    .panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .panel-link-btn {
        width: 100%;
    }
}

.bha-options {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin-bottom: 15px;
    justify-content: center;
}

.bha-option-right {
    margin-left: auto;
}

@media (max-width: 767px) {

    .bha-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .bha-option-right {
        margin-left: 0;
    }
}
.service-tab:disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(1);
}

.basvuru-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999999;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 320px;
    max-width: calc(100% - 30px);

    padding: 16px 20px;

    background: #2ec152;
    color: #fff;

    border-radius: 12px;

    transform: translate(-50%, -50%) scale(.9);
    opacity: 0;
    visibility: hidden;

    box-shadow: 0 15px 50px rgba(0,0,0,.25);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.basvuru-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.basvuru-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    min-width: 36px;

    background: #fff;
    color: #2ec152;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;
}

.basvuru-toast strong,
.basvuru-toast span {
    display: block;
}

.basvuru-toast strong {
    font-size: 18px;
    margin-bottom: 3px;
}

.basvuru-toast span {
    font-size: 15px;
    opacity: .8;
}
/* ==================================================
   LOCKED TABS - DESKTOP + MOBILE
================================================== */

.service-tab.is-locked,
.service-tab:disabled {
    opacity: .35 !important;
    filter: grayscale(1) !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.service-tab {
    width: 100%;
}

/* Link olduğu için varsayılan link görünümünü kaldır */
.appointment-tab {
    text-decoration: none;
    box-sizing: border-box;
}

/* Mobil */
@media (max-width: 767px) {

    .tabs {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-tab {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .tab-label br {
        display: none;
    }
}
.ads-account-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.ads-account-field {
    flex: 1;
}

.ads-unknown-field {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    cursor: pointer;
}

.ads-unknown-field input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

.ads-unknown-field span {
    line-height: 1;
}

@media (max-width: 767px) {
    .ads-account-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .ads-unknown-field {
        margin-bottom: 20px;
        white-space: normal;
    }
}
#panel-randevu .safari-native-field {
    position: relative;

    width: 100%;
    height: 48px;

    box-sizing: border-box;

    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
}


/* Gerçek Safari date/time input */
#panel-randevu .safari-native-field input[type="date"],
#panel-randevu .safari-native-field input[type="time"] {
    position: absolute !important;

    top: 0 !important;
    bottom: 0 !important;

    left: 14px !important;
    right: 14px !important;

    width: auto !important;
    height: 100% !important;

    min-width: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    box-shadow: none !important;
    outline: none;

    box-sizing: border-box !important;

    font-family: inherit;
    font-size: 16px;

    -webkit-appearance: auto;
    appearance: auto;
}
/* =========================================================
   ÇEKİLİŞ MODAL
========================================================= */

.cekilis-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cekilis-modal.is-open {
    display: flex;
}

.cekilis-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cekilis-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.cekilis-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.cekilis-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.cekilis-wheel-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 28px;

    padding: 55px 35px 35px;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.22),
            rgba(255,255,255,0) 65%
        ),
        linear-gradient(
            135deg,
            #0d6efd 0%,
            #084298 100%
        );

    border-radius: 24px 0 0 24px;
}

.cekilis-wheel-result {
    width: 100%;
    max-width: 340px;

    text-align: center;

    padding: 17px 20px;

    border-radius: 14px;

    background: rgba(255,255,255,.14);

    border: 1px solid rgba(255,255,255,.22);

    color: #ffffff;

    backdrop-filter: blur(5px);
}

.cekilis-wheel-result span {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;
    font-weight: 600;

    opacity: .8;
}

.cekilis-wheel-result strong {
    display: block;

    font-size: 32px;
    font-weight: 900;

    letter-spacing: 8px;

    color: #ffffff;
}

.cekilis-wheel-result small {
    display: block;

    margin-top: 6px;

    font-size: 11px;

    opacity: .75;
}

.cekilis-gift-image {
    width: 100%;

    margin: 5px 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cekilis-gift-image img {
    display: block;

    width: 100%;
    max-width: 330px;
    max-height: 230px;

    object-fit: contain;
}

.cekilis-wheel-wrap {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 1 / 1;
}

.cekilis-wheel {
    position: absolute;
    inset: 8px;
    border-radius: 50%;

    background:
        conic-gradient(
            #ffffff 0deg 72deg,
            #ffcf33 72deg 144deg,
            #ffffff 144deg 216deg,
            #ffcf33 216deg 288deg,
            #ffffff 288deg 360deg
        );

    border: 8px solid rgba(255,255,255,.25);

    box-shadow:
        0 15px 40px rgba(0,0,0,.22),
        inset 0 0 0 4px rgba(13,110,253,.15);

    transition:
        transform 3.2s cubic-bezier(.12,.76,.16,1);
}
.cekilis-wheel-number {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 46px;
    height: 46px;

    margin-left: -23px;
    margin-top: -23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #0d6efd;

    font-size: 27px;
    font-weight: 900;

    z-index: 3;

    box-shadow:
        0 5px 15px rgba(0,0,0,.12);
}


/*
 * 5 rakamı çark etrafında
 * 72 derece aralıklarla yerleştiriyoruz.
 */

.cekilis-wheel-number.number-1 {
    transform:
        rotate(0deg)
        translateY(-125px)
        rotate(0deg);
}

.cekilis-wheel-number.number-2 {
    transform:
        rotate(72deg)
        translateY(-125px)
        rotate(-72deg);
}

.cekilis-wheel-number.number-3 {
    transform:
        rotate(144deg)
        translateY(-125px)
        rotate(-144deg);
}

.cekilis-wheel-number.number-4 {
    transform:
        rotate(216deg)
        translateY(-125px)
        rotate(-216deg);
}

.cekilis-wheel-number.number-5 {
    transform:
        rotate(288deg)
        translateY(-125px)
        rotate(-288deg);
}

@media (max-width: 575px) {

    .cekilis-wheel-number {
        width: 38px;
        height: 38px;

        margin-left: -19px;
        margin-top: -19px;

        font-size: 22px;
    }

    .cekilis-wheel-number.number-1 {
        transform:
            rotate(0deg)
            translateY(-82px)
            rotate(0deg);
    }

    .cekilis-wheel-number.number-2 {
        transform:
            rotate(72deg)
            translateY(-82px)
            rotate(-72deg);
    }

    .cekilis-wheel-number.number-3 {
        transform:
            rotate(144deg)
            translateY(-82px)
            rotate(-144deg);
    }

    .cekilis-wheel-number.number-4 {
        transform:
            rotate(216deg)
            translateY(-82px)
            rotate(-216deg);
    }

    .cekilis-wheel-number.number-5 {
        transform:
            rotate(288deg)
            translateY(-82px)
            rotate(-288deg);
    }
}

.cekilis-wheel::before {
    content: "";
    position: absolute;
    inset: 17px;
    border-radius: 50%;
    border: 2px dashed rgba(13, 110, 253, 0.25);
}

.cekilis-wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 8px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cekilis-pointer {
    position: absolute;
    z-index: 6;

    top: 13px;
    left: 50%;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 21px solid transparent;
    border-right: 21px solid transparent;
    border-top: 42px solid #dc3545;

    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
}


.cekilis-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 48px 45px;
}

.cekilis-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 100px;
    background: #fff3cd;
    color: #7a5b00;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.cekilis-content h2 {
    margin: 0 0 15px;
    color: #111827;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

.cekilis-description {
    margin: 0 0 26px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

.cekilis-spin-btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;
    border: 0;
    border-radius: 12px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.22);
}

.cekilis-spin-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 11px 26px rgba(13, 110, 253, 0.28);
}

.cekilis-spin-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.cekilis-result {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    background: #f5f8ff;
}

.cekilis-result > span {
    display: block;
    margin-bottom: 5px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.cekilis-result > strong {
    display: block;
    color: #0d6efd;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 7px;
}

.cekilis-result > small {
    display: block;
    margin-top: 8px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
}

.cekilis-message {
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.cekilis-message.is-error {
    background: #fff1f2;
    color: #b42318;
    border: 1px solid #fecdd3;
}

.cekilis-message.is-info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.cekilis-skip-btn {
    margin-top: 17px;
    padding: 10px 15px;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.cekilis-randevu-btn {
    display: block;
    margin-top: 14px;
    min-height: 50px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #198754;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
}

body.cekilis-modal-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cekilis-modal-dialog {
        max-width: 720px;
    }

    .cekilis-modal-grid {
        grid-template-columns: 1fr;
    }

    .cekilis-wheel-column {
        padding: 45px 30px;
        border-radius: 24px 24px 0 0;
    }

    .cekilis-wheel-wrap {
        width: 300px;
        max-width: 100%;
    }

    .cekilis-content {
        padding: 38px 35px 35px;
        text-align: center;
    }

    .cekilis-badge {
        align-self: center;
    }

    .cekilis-content h2 {
        font-size: 30px;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 575px) {

    .cekilis-modal {
        padding: 10px;
    }

    .cekilis-modal-dialog {
        max-height: calc(100vh - 20px);
        border-radius: 18px;
    }

    .cekilis-modal-grid {
        min-height: auto;
    }

    .cekilis-wheel-column {
        padding: 40px 20px 30px;
        border-radius: 18px 18px 0 0;
    }

    .cekilis-wheel-wrap {
        width: 235px;
    }

    .cekilis-wheel-center {
        width: 70px;
        height: 70px;
        border-width: 6px;
        font-size: 21px;
    }

    .cekilis-pointer {
        top: 2px;

        border-left-width: 17px;
        border-right-width: 17px;
        border-top-width: 34px;
    }

    .cekilis-content {
        padding: 30px 20px 25px;
    }

    .cekilis-content h2 {
        font-size: 25px;
    }

    .cekilis-description {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .cekilis-result > strong {
        font-size: 29px;
        letter-spacing: 5px;
    }

    .cekilis-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 25px;
    }
}
.cekilis-wheel-center img{
    max-width: 64px;
    max-height: 64px;
}
/* =========================================================
   ÇEKİLİŞ MODAL - MOBİL TEK EKRAN
========================================================= */

@media (max-width: 575px) {

    body.cekilis-modal-open {
        overflow: hidden !important;
        height: 100dvh;
        overscroll-behavior: none;
    }

    .cekilis-modal {
        padding: 6px;
        overflow: hidden !important;
        height: 100dvh;
    }

    .cekilis-modal-dialog {
        width: 100%;
        height: calc(100dvh - 12px);
        max-height: none;

        overflow: hidden !important;

        border-radius: 16px;
    }

    .cekilis-modal-grid {
        display: flex;
        flex-direction: column;

        width: 100%;
        height: 100%;

        min-height: 0;
    }


    /* -------------------------
       ÜST: ÇARK
    ------------------------- */

    .cekilis-wheel-column {
        flex: 0 0 43%;

        min-height: 0;

        padding: 25px 15px 12px;

        gap: 10px;

        border-radius: 16px 16px 0 0;

        overflow: hidden;
    }

    .cekilis-wheel-wrap {
        width: min(190px, 42vw);
        max-width: 190px;
        flex-shrink: 0;
    }

    .cekilis-wheel {
        inset: 5px;
        border-width: 5px;
    }

    .cekilis-wheel-center {
        width: 58px;
        height: 58px;

        border-width: 5px;

        font-size: 18px;
    }

    .cekilis-wheel-center img {
        max-width: 44px;
        max-height: 44px;
    }


    /* Çark rakamları */

    .cekilis-wheel-number {
        width: 32px;
        height: 32px;

        margin-left: -16px;
        margin-top: -16px;

        font-size: 18px;
    }

    .cekilis-wheel-number.number-1 {
        transform:
            rotate(0deg)
            translateY(-68px)
            rotate(0deg);
    }

    .cekilis-wheel-number.number-2 {
        transform:
            rotate(72deg)
            translateY(-68px)
            rotate(-72deg);
    }

    .cekilis-wheel-number.number-3 {
        transform:
            rotate(144deg)
            translateY(-68px)
            rotate(-144deg);
    }

    .cekilis-wheel-number.number-4 {
        transform:
            rotate(216deg)
            translateY(-68px)
            rotate(-216deg);
    }

    .cekilis-wheel-number.number-5 {
        transform:
            rotate(288deg)
            translateY(-68px)
            rotate(-288deg);
    }


    /* Kırmızı ok */

    .cekilis-pointer {
        top: 0;

        border-left-width: 14px;
        border-right-width: 14px;
        border-top-width: 28px;
    }


    /* Kod alanı */

    .cekilis-wheel-result {
        max-width: 270px;

        padding: 8px 12px;

        border-radius: 10px;
    }

    .cekilis-wheel-result span {
        margin-bottom: 2px;
        font-size: 10px;
    }

    .cekilis-wheel-result strong {
        font-size: 23px;
        letter-spacing: 6px;
    }

    .cekilis-wheel-result small {
        margin-top: 2px;
        font-size: 9px;
    }


    /* -------------------------
       ALT: İÇERİK
    ------------------------- */

    .cekilis-content {
        flex: 1 1 auto;
        min-height: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;

        padding: 14px 18px 12px;

        text-align: center;

        overflow: hidden;
    }

    .cekilis-badge {
        align-self: center;

        margin-bottom: 7px;

        padding: 5px 9px;

        font-size: 9px;
    }

    .cekilis-content h2 {
        margin-bottom: 8px;

        font-size: 20px;
        line-height: 1.12;
    }

    .cekilis-gift-image {
        margin: 0 0 7px;
    }

    @media (max-width: 575px) {

        .cekilis-gift-image {
            width: 100%;
            margin: 2px 0 9px;
        }

        .cekilis-gift-image img {
            display: block;

            width: min(92%, 340px);
            height: auto;

            max-width: 340px;
            max-height: min(155px, 21dvh);

            margin: 0 auto;

            object-fit: contain;
        }

    }

    .cekilis-description {
        margin: 0 0 9px;

        font-size: 11px;
        line-height: 1.4;
    }

    .cekilis-spin-btn {
        min-height: 40px;

        padding: 9px 14px;

        font-size: 13px;

        border-radius: 9px;
    }

    .cekilis-skip-btn {
        margin-top: 6px;

        padding: 5px;

        font-size: 11px;
    }

    .cekilis-randevu-btn {
        min-height: 40px;

        margin-top: 6px;

        padding: 10px 12px;

        font-size: 12px;

        border-radius: 9px;
    }

    .cekilis-modal-close {
        top: 7px;
        right: 7px;

        width: 32px;
        height: 32px;

        font-size: 22px;
    }

}