/* ======================================================================
   EVENTS PAGE — /etkinlikler & /etkinlikler/{slug}
   Prefix: .ev-
====================================================================== */

.ev-page {
    background: var(--bg-page, #f9fafb);
    min-height: calc(100vh - var(--header-height, 60px));
}

/* ─────────────── HERO ─────────────── */
.ev-hero {
    position: relative;
    padding: 50px 20px 40px;
    background:
        radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(217, 70, 239, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    overflow: hidden;
    text-align: center;
}

.ev-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.4;
}

.ev-hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.ev-hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.ev-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.ev-hero-subtitle {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.5;
}

/* ─────────────── CONTAINER ─────────────── */
.ev-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* ─────────────── FILTERS ─────────────── */
.ev-filters {
    background: white;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ev-filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ev-filter-row + .ev-filter-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border, #f3f4f6);
}

.ev-filter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted, #6b7280);
    flex-shrink: 0;
}

.ev-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ev-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--bg-page, #f3f4f6);
    color: var(--text, #374151);
    border: 1.5px solid transparent;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.ev-chip:hover {
    background: white;
    border-color: var(--border, #d1d5db);
}
.ev-chip.is-active {
    background: var(--primary, #f97316);
    color: white;
    border-color: var(--primary, #f97316);
}
.ev-chip.is-active .ev-chip-count {
    background: rgba(255,255,255,0.25);
    color: white;
}

.ev-chip-emoji { font-size: 14px; }

.ev-chip-count {
    background: white;
    color: var(--text, #6b7280);
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.ev-time-tabs {
    display: inline-flex;
    background: var(--bg-page, #f3f4f6);
    border-radius: 10px;
    padding: 3px;
}

.ev-time-tab {
    padding: 6px 14px;
    color: var(--muted, #6b7280);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.15s;
}
.ev-time-tab:hover { color: var(--text, #111827); }
.ev-time-tab.is-active {
    background: white;
    color: var(--primary, #f97316);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ─────────────── FEATURED CARD ─────────────── */
.ev-featured {
    margin-bottom: 28px;
}

.ev-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ev-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .ev-featured-card {
        grid-template-columns: 1.2fr 1fr;
    }
}

.ev-featured-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #f97316, #d946ef);
}
@media (min-width: 768px) {
    .ev-featured-media { aspect-ratio: auto; min-height: 320px; }
}
.ev-featured-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.ev-featured-card:hover .ev-featured-media img {
    transform: scale(1.04);
}

.ev-featured-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    background: linear-gradient(135deg, #f97316, #d946ef);
}

.ev-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.ev-featured-date {
    position: absolute;
    top: 16px; left: 16px;
    background: white;
    border-radius: 10px;
    padding: 8px 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    line-height: 1;
}
.ev-featured-day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary, #f97316);
}
.ev-featured-month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.ev-featured-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 768px) {
    .ev-featured-body { padding: 32px; }
}

.ev-featured-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary, #f97316);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ev-featured-badge {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ev-featured-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--text, #111827);
    margin: 4px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.ev-featured-desc {
    color: var(--muted, #6b7280);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ev-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text, #374151);
    font-size: 14px;
    margin-top: 4px;
}

.ev-featured-cta {
    display: inline-block;
    color: var(--primary, #f97316);
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
}

/* ─────────────── GRID ─────────────── */
.ev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.ev-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border, #e5e7eb);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.ev-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--primary, #f97316);
}

.ev-card.is-past {
    opacity: 0.7;
}
.ev-card.is-past:hover { opacity: 1; }

.ev-card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #e0e7ff);
}
.ev-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.ev-card:hover .ev-card-media img {
    transform: scale(1.05);
}

.ev-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
    opacity: 0.7;
}

.ev-card-date {
    position: absolute;
    top: 12px; left: 12px;
    background: white;
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    line-height: 1;
}
.ev-card-day {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary, #f97316);
}
.ev-card-month {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--muted, #6b7280);
    text-transform: uppercase;
    margin-top: 1px;
    letter-spacing: 0.05em;
}

.ev-card-featured {
    position: absolute;
    top: 12px; right: 12px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 50%;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.ev-card-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ev-card-cat {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary, #f97316);
}

.ev-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text, #111827);
    margin: 2px 0 4px;
    line-height: 1.3;
    /* 2 line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ev-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--muted, #6b7280);
    margin-top: auto;
}

/* ─────────────── EMPTY ─────────────── */
.ev-empty {
    background: white;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    padding: 60px 24px;
    text-align: center;
}
.ev-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.ev-empty h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text, #111827);
    margin: 0 0 6px;
}
.ev-empty p {
    color: var(--muted, #6b7280);
    margin: 0 0 16px;
    font-size: 14px;
}
.ev-empty-action {
    color: var(--primary, #f97316);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}
.ev-empty-action:hover { text-decoration: underline; }


/* ======================================================================
   EVENT DETAIL PAGE
====================================================================== */

.ev-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.ev-detail-back-row {
    padding: 20px 20px 0;
}
.ev-detail-back {
    color: var(--muted, #6b7280);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.ev-detail-back:hover { color: var(--primary, #f97316); }

.ev-detail-hero {
    position: relative;
    margin: 20px 20px 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    background: linear-gradient(135deg, #1e1b4b, #5b21b6);
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 60px 32px 32px;
}

.ev-detail-hero.no-image {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #6d28d9 100%);
}

.ev-detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ev-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.ev-detail-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ev-detail-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.15s;
}
.ev-detail-cat:hover { background: rgba(255,255,255,0.25); }

.ev-detail-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #FFFFFF;
}

.ev-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.ev-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ev-detail-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px 60px;
}

@media (min-width: 1024px) {
    .ev-detail-body {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
}

.ev-detail-main {
    background: transparent;
}

.ev-detail-section {
    background: white;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 16px;
}

.ev-detail-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text, #111827);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.ev-detail-desc {
    color: var(--text, #374151);
    font-size: 15px;
    line-height: 1.7;
}

.ev-detail-meta-list {
    margin: 0;
}
.ev-detail-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border, #f3f4f6);
}
.ev-detail-meta-row:last-child { border-bottom: none; }
.ev-detail-meta-row dt {
    color: var(--muted, #6b7280);
    font-size: 13px;
    font-weight: 500;
}
.ev-detail-meta-row dd {
    margin: 0;
    color: var(--text, #111827);
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

/* ─────────────── SIDEBAR ─────────────── */
.ev-detail-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1024px) {
    .ev-detail-side {
        position: sticky;
        top: 80px;
        align-self: start;
    }
}

.ev-side-card {
    background: white;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    padding: 22px;
}

.ev-side-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text, #111827);
    margin: 0 0 4px;
}

.ev-side-card-sub {
    font-size: 13px;
    color: var(--muted, #6b7280);
    margin: 0 0 14px;
}

.ev-side-divider {
    text-align: center;
    margin: 16px 0 0;
    position: relative;
    color: var(--muted, #9ca3af);
    font-size: 12px;
}
.ev-side-divider::before,
.ev-side-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--border, #e5e7eb);
}
.ev-side-divider::before { left: 0; }
.ev-side-divider::after  { right: 0; }

.ev-side-past {
    text-align: center;
    padding: 32px 24px;
}
.ev-side-past-icon {
    font-size: 40px;
    margin-bottom: 8px;
}
.ev-side-past h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text, #111827);
}
.ev-side-past p {
    margin: 0 0 16px;
    color: var(--muted, #6b7280);
    font-size: 13px;
}

/* ─────────────── BUTTONS ─────────────── */
.ev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.15s;
    width: 100%;
    font-family: inherit;
}

.ev-btn-primary {
    background: var(--primary, #f97316);
    color: white;
    border-color: var(--primary, #f97316);
}
.ev-btn-primary:hover {
    background: var(--primary-dk, #ea580c);
    transform: translateY(-1px);
}
.ev-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ev-btn-secondary {
    background: transparent;
    color: var(--text, #374151);
    border-color: var(--border, #d1d5db);
}
.ev-btn-secondary:hover {
    background: var(--bg-page, #f9fafb);
}

.ev-btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
    margin-bottom: 8px;
}
.ev-btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-1px);
}

.ev-btn-phone {
    background: white;
    color: var(--text, #111827);
    border-color: var(--border, #d1d5db);
}
.ev-btn-phone:hover {
    background: var(--bg-page, #f9fafb);
    border-color: var(--primary, #f97316);
    color: var(--primary, #f97316);
}

/* ─────────────── FORM ─────────────── */
.ev-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ev-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.ev-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.ev-form-row:has(.ev-form-field:nth-child(2)) {
    grid-template-columns: 2fr 1fr;
}

.ev-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ev-form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text, #374151);
}
.ev-form-field input,
.ev-form-field textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 7px;
    font-size: 14px;
    color: var(--text, #111827);
    background: white;
    font-family: inherit;
    resize: vertical;
}
.ev-form-field input:focus,
.ev-form-field textarea:focus {
    outline: none;
    border-color: var(--primary, #f97316);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.ev-form-field input.is-invalid,
.ev-form-field textarea.is-invalid {
    border-color: #dc2626;
    background: #fef2f2;
}
.ev-form-err {
    color: #dc2626;
    font-size: 11px;
    min-height: 0;
}
.ev-optional {
    color: var(--muted, #9ca3af);
    font-weight: 400;
    font-size: 11px;
}

.ev-form-captcha .ev-captcha-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ev-captcha-question {
    flex: 0 0 auto;
    padding: 9px 12px;
    background: var(--bg-page, #f3f4f6);
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Monaco', 'Menlo', monospace;
    letter-spacing: 2px;
    user-select: none;
    color: var(--text, #111827);
}
.ev-form-captcha .ev-captcha-wrap input {
    max-width: 90px;
}

.ev-form-error,
.ev-form-success {
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.5;
}
.ev-form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.ev-form-success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}
.ev-form-error[hidden], .ev-form-success[hidden] { display: none; }

.ev-form-note {
    text-align: center;
    color: var(--muted, #9ca3af);
    font-size: 11px;
    margin: 6px 0 0;
}

/* ═══════════════════════════════════════════════════════════════
   ETKİNLİK ÜCRETLENDİRME — Card badge + Detail section
   ═══════════════════════════════════════════════════════════════ */

/* ─── Card price badge (events.php) ─────────────────────────── */
.ev-card-price {
    position: absolute;
    bottom: 8px;
    inset-inline-end: 8px;
    padding: 5px 10px;
    border-radius: var(--radius-full, 999px);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ev-card-price-free {
    background: #10b981;
    color: white;
}

.ev-card-price-paid {
    background: white;
    color: #111827;
}

.ev-card-price-discount-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    margin-inline-start: 2px;
}

/* Featured event price badge — daha büyük, dikkat çekici */
.ev-featured-media .ev-card-price {
    bottom: 12px;
    inset-inline-end: 12px;
    padding: 7px 14px;
    font-size: 14px;
}

/* ─── Detail page — Ücretsiz ──────────────────────────────── */
.ev-pricing-free .ev-pricing-free-card {
    text-align: center;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #6ee7b7;
    border-radius: var(--radius-lg, 16px);
    padding: 32px 24px;
}

.ev-pricing-free-icon {
    display: block;
    font-size: 56px;
    margin-bottom: 12px;
}

.ev-pricing-free-title {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.625rem);
    font-weight: 700;
    color: #065f46;
}

.ev-pricing-free-text {
    margin: 0;
    color: #047857;
    font-size: 15px;
    line-height: 1.5;
}

/* ─── Detail page — Ücretli ──────────────────────────────── */
.ev-pricing-paid .ev-pricing-card {
    background: var(--bg-card, white);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
}

.ev-pricing-main {
    text-align: center;
    padding: 28px 20px 20px;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--primary, #e85d04) 6%, white) 0%,
        color-mix(in srgb, var(--primary, #e85d04) 12%, white) 100%);
}

.ev-pricing-amount {
    font-size: clamp(2.25rem, 5vw + 1rem, 3.25rem);
    font-weight: 800;
    line-height: 1;
    color: var(--text, #111827);
    letter-spacing: -0.02em;
}

.ev-pricing-currency {
    font-size: 0.5em;
    font-weight: 600;
    vertical-align: top;
    margin-inline-end: 2px;
    color: var(--text-muted, #6b7280);
}

.ev-pricing-per {
    margin-top: 6px;
    color: var(--text-muted, #6b7280);
    font-size: 14px;
}

/* Includes */
.ev-pricing-includes {
    padding: 20px;
    border-top: 1px solid var(--border, #e5e7eb);
}

.ev-pricing-includes-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.ev-pricing-includes-label svg {
    color: #059669;
}

.ev-pricing-includes-text {
    color: var(--text, #111827);
    font-size: 15px;
    line-height: 1.6;
}

/* Grup indirimi */
.ev-pricing-group {
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top: 1px solid var(--border, #e5e7eb);
}

.ev-pricing-group-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ev-pricing-group-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.ev-pricing-group-title {
    font-size: 15px;
    font-weight: 700;
    color: #92400e;
    line-height: 1.3;
}

.ev-pricing-group-example {
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md, 8px);
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.5;
}

.ev-pricing-group-example-label {
    font-weight: 600;
    color: #78350f;
    margin-inline-end: 4px;
}

.ev-pricing-group-example-text {
    color: #92400e;
}

/* RTL */
[dir="rtl"] .ev-card-price-discount-dot { margin-inline-start: 0; margin-inline-end: 2px; }
