﻿  html, body {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .vitrin-wrap {
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        background: #f8f8f6;
        overflow: hidden;
    }

    /* ÜST BAR */
    .vitrin-bar {
        height: 52px;
        background: #27500A;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        flex-shrink: 0;
    }

    .vitrin-bar-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .vitrin-logo-icon {
        width: 32px;
        height: 32px;
        background: #EAF3DE;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #27500A;
        font-size: 16px;
    }

    .vitrin-brand {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        line-height: 1.2;
    }

    .vitrin-mahalle {
        font-size: 11px;
        color: #97C459;
    }

    .vitrin-saat {
        font-size: 22px;
        font-weight: 300;
        color: #fff;
        font-variant-numeric: tabular-nums;
    }

    /* İÇERİK */
    .vitrin-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

        .vitrin-content.gizli {
            opacity: 0;
            pointer-events: none;
            position: absolute;
        }

    .vitrin-ana {
        flex: 1;
        display: flex;
        align-items: stretch;
        overflow: hidden;
    }

    /* OKLAR */
    .vitrin-ok {
        width: 52px;
        flex-shrink: 0;
        background: rgba(0,0,0,0.04);
        border: none;
        cursor: pointer;
        font-size: 28px;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

        .vitrin-ok:hover {
            background: rgba(0,0,0,0.12);
            color: #27500A;
        }

    /* GRID */
    .vitrin-grid {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 8px;
        padding: 10px;
        overflow: hidden;
    }

    .vitrin-kart {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        min-height: 0;
        cursor: pointer;
        display: flex;
        flex-direction: column;
    }

    .vitrin-kart-unvan {
        font-size: 11px;
        font-weight: 500;
        color: #333;
        padding: 4px 8px;
        background: #fff;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-shrink: 0;
    }

    .vitrin-kart-img {
        width: 100%;
        flex: 1;
        object-fit: cover;
        display: block;
    }

    .vitrin-kart-placeholder {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        background: linear-gradient(135deg, #EAF3DE, #C0DD97);
    }

    .vitrin-harf {
        font-size: 28px;
        font-weight: 500;
        color: #27500A;
    }

    .vitrin-unvan-ph {
        font-size: 12px;
        font-weight: 500;
        color: #27500A;
        text-align: center;
        padding: 0 8px;
    }

    .vitrin-kategori {
        font-size: 10px;
        color: #3B6D11;
    }

    /* İLERLEME */
    .vitrin-progress {
        height: 3px;
        background: #e0e0e0;
        flex-shrink: 0;
    }

    @@keyframes progress {
        from {
            width: 0%;
        }

        to {
            width: 100%;
        }
    }

    .vitrin-progress-bar {
        height: 100%;
        background: #3B6D11;
        animation: progress linear infinite;
    }

    /* VİDEO */
    .vitrin-video-wrap {
        position: fixed;
        inset: 0;
        background: #000;
        z-index: 10;
        transition: opacity 0.5s;
    }

        .vitrin-video-wrap.gizli {
            opacity: 0;
            pointer-events: none;
            z-index: -1;
        }

    .vitrin-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .vitrin-video-bos {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #555;
        gap: 12px;
        font-size: 16px;
    }

        .vitrin-video-bos i {
            font-size: 48px;
        }

    /* MODAL */
    .vitrin-modal-wrap {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 50;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vitrin-modal {
        background: #fff;
        border-radius: 16px;
        width: 480px;
        max-height: 85vh;
        overflow-y: auto;
        padding-bottom: 20px;
    }

    .vitrin-modal-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px 0;
    }

    .vitrin-modal-geri {
        flex: 1;
        height: 4px;
        background: #eee;
        border-radius: 2px;
        overflow: hidden;
    }

    @@keyframes geriSayim {
        from {
            width: 100%;
        }

        to {
            width: 0%;
        }
    }

    .vitrin-geri-bar {
        height: 100%;
        background: #3B6D11;
        animation: geriSayim linear forwards;
    }

    .vitrin-modal-kapat {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: #f0f0f0;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vitrin-modal-top {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
    }

    .vitrin-modal-logo {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        object-fit: contain;
        border: 0.5px solid #eee;
    }

    .vitrin-modal-harf {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        background: #EAF3DE;
        color: #3B6D11;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 500;
    }

    .vitrin-modal-unvan {
        font-size: 20px;
        font-weight: 500;
    }

    .vitrin-modal-kategori {
        font-size: 13px;
        color: #888;
        margin-top: 2px;
    }

    .vitrin-modal-kart {
        width: calc(100% - 32px);
        margin: 0 16px 12px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .vitrin-modal-iletisim {
        border-top: 0.5px solid #f0f0f0;
        padding: 4px 0;
    }

    .vitrin-modal-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        font-size: 15px;
        color: #333;
        border-bottom: 0.5px solid #f5f5f5;
        text-decoration: none;
    }

        .vitrin-modal-row:last-child {
            border: none;
        }

        .vitrin-modal-row i {
            font-size: 20px;
            color: #aaa;
            width: 22px;
        }

    .vitrin-modal-ozellikler {
        margin: 8px 16px 0;
        border: 0.5px solid #eee;
        border-radius: 10px;
        overflow: hidden;
    }

    .vitrin-oz-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 14px;
        font-size: 14px;
        border-bottom: 0.5px solid #f5f5f5;
    }

        .vitrin-oz-row:last-child {
            border: none;
        }

    .vitrin-oz-key {
        color: #888;
    }

    .vitrin-oz-val {
        font-weight: 500;
    }

    .vitrin-qr-wrap {
        text-align: center;
        padding: 16px;
        border-top: 0.5px solid #f0f0f0;
    }

    .vitrin-qr-baslik {
        font-size: 12px;
        color: #aaa;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .vitrin-qr-img {
        width: 140px;
        height: 140px;
        border-radius: 8px;
        border: 0.5px solid #eee;
    }
.vitrin-baslat {
    position: fixed;
    inset: 0;
    background: #27500A;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    text-align: center;
}

.vitrin-baslat-icerik {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

    .vitrin-baslat-icerik i {
        font-size: 72px;
        color: #97C459;
    }

    .vitrin-baslat-icerik div:nth-child(2) {
        font-size: 32px;
        font-weight: 500;
    }

.vitrin-baslat-alt {
    font-size: 16px;
    color: #97C459;
}
