

    :root {
        --store-dark: #0f172a;
        --store-accent: #f59e0b;
        --store-light: #f8fafc;
        --store-border: #e2e8f0;
        --store-muted: #64748b;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: #f8fafc; /* Arka planı hafif gri yaptık ki kartlar öne çıksın */
        color: var(--store-dark);
    }

    .shop-hero {
        padding: 60px 0 40px 0;
        text-align: center;
    }

    .shop-hero h1 {
        font-weight: 800;
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    /* --- YATAY LİSTE (BILETIX STİLİ) --- */
    .event-list-item {
        display: flex;
        flex-direction: row;
        background: #fff;
        border: 1px solid var(--store-border);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .event-list-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-color: #cbd5e1;
    }

    /* Sol Görsel Alanı */
    .event-img-wrapper {
        width: 280px;
        flex-shrink: 0;
        position: relative;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }

    .event-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .event-badge {
        position: absolute;
        top: 25px;
        left: 25px;
        padding: 5px 10px;
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        z-index: 2;
    }

    /* Orta Bilgi Alanı */
    .event-body {
        flex-grow: 1;
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .event-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--store-dark);
        text-decoration: none;
        margin-bottom: 8px;
        display: inline-block;
        transition: color 0.2s ease;
    }

    .event-title:hover {
        color: var(--store-accent);
    }

    .event-desc {
        font-size: 0.9rem;
        color: var(--store-muted);
        display: block; /* -webkit-box yerine block yaptık */
        margin-bottom: 15px;
        /* overflow, line-clamp ve box-orient özelliklerini tamamen sildik */
    }

    .event-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: auto;
    }

    .meta-item {
        display: flex;
        align-items: center;
        font-size: 0.85rem;
        color: #475569;
        font-weight: 600;
    }

    .meta-item i {
        font-size: 1.1rem;
        color: var(--store-accent);
        margin-right: 8px;
    }

    /* Sağ İşlem/Fiyat Alanı */
    .event-action-area {
        width: 220px;
        flex-shrink: 0;
        background: #fdfdfd;
        border-left: 1px dashed var(--store-border);
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .event-price {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--store-dark);
        line-height: 1;
    }

    .btn-cart {
        width: 100%;
        background: var(--store-dark);
        color: #fff;
        font-weight: 700;
        border: none;
        padding: 12px;
        border-radius: 8px;
        transition: 0.3s;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-cart:hover:not(:disabled) {
        background: var(--store-accent);
        color: #000;
    }

    /* Mobil Uyumluluk (Responsive) */
    @media (max-width: 992px) {
        .event-list-item {
            flex-direction: column;
        }

        .event-img-wrapper {
            width: 100%;
            height: 250px;
            padding: 0;
        }

        .event-img-wrapper img {
            border-radius: 12px 12px 0 0;
        }

        .event-action-area {
            width: 100%;
            border-left: none;
            border-top: 1px dashed var(--store-border);
            flex-direction: row;
            justify-content: space-between;
            padding: 20px;
        }

        .btn-cart {
            width: auto;
            padding: 10px 25px;
        }
        
        .event-meta {
            flex-direction: column;
            gap: 10px;
        }
    }
