.kamp-page { padding: 40px 0 60px; }
        .kamp-breadcrumb { display:flex;align-items:center;gap:8px;margin-bottom:30px;font-size:13px;color:#999; }
        .kamp-breadcrumb a { color:#666; } .kamp-breadcrumb a:hover { color:var(--primary); }

        .kamp-hero {
            background: linear-gradient(135deg, #0054A6 0%, #003366 100%);
            border-radius: 16px;
            padding: 50px;
            color: white;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        .kamp-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        .kamp-hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; position: relative; }
        .kamp-hero p { font-size: 16px; opacity: 0.85; position: relative; }

        .kamp-filters {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .kamp-filter-btn {
            padding: 10px 22px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 30px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.2s;
        }
        .kamp-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
        .kamp-filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

        .kamp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

        .kamp-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        .kamp-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); transform: translateY(-3px); }

        .kamp-card-banner {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .kamp-card-banner img { width: 100%; height: 100%; object-fit: cover; }

        .kamp-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
        }
        .kamp-badge.active { background: #27ae60; }
        .kamp-badge.soon { background: #f39c12; }
        .kamp-badge.ended { background: #999; }

        .kamp-timer {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .kamp-card-body { padding: 24px; }
        .kamp-card-body h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
        .kamp-card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; }

        .kamp-card-details {
            display: flex;
            gap: 20px;
            margin-bottom: 18px;
            font-size: 13px;
            color: #999;
        }
        .kamp-card-details span { display: flex; align-items: center; gap: 6px; }
        .kamp-card-details i { color: var(--primary); }

        .kamp-card-discount {
            display: inline-block;
            background: #fff0f0;
            color: #e74c3c;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .kamp-card-actions { display: flex; gap: 10px; }
        .kamp-btn {
            flex: 1;
            padding: 12px 20px;
            border-radius: 8px;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s;
            text-decoration: none;
            text-align: center;
            border: none;
        }
        .kamp-btn-primary { background: var(--primary); color: white; }
        .kamp-btn-primary:hover { background: #003d7a; color: white; }
        .kamp-btn-outline { background: white; color: var(--primary); border: 2px solid var(--primary); }
        .kamp-btn-outline:hover { background: var(--primary); color: white; }

        .kamp-empty {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        .kamp-empty i { font-size: 56px; color: #ddd; display: block; margin-bottom: 16px; }

        /* Countdown detail */
        .countdown { display: flex; gap: 8px; justify-content: center; margin: 20px 0; }
        .countdown-item {
            background: white;
            border-radius: 10px;
            padding: 12px 16px;
            text-align: center;
            min-width: 65px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .countdown-item .num { font-size: 28px; font-weight: 700; color: var(--primary); display: block; }
        .countdown-item .lbl { font-size: 10px; color: #999; text-transform: uppercase; font-weight: 600; }

        @media (max-width: 768px) {
            .kamp-grid { grid-template-columns: 1fr; }
            .kamp-hero { padding: 30px 20px; }
            .kamp-hero h1 { font-size: 24px; }
        }
/* ===== Öne Çıkan Kampanya Banner ===== */
.kamp-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 8px 28px rgba(0, 84, 166, 0.10);
}
.kamp-featured-image {
    position: relative;
    background: #1e3a8a;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.kamp-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.kamp-featured-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(220, 38, 38, 0.45);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.kamp-featured-body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.kamp-featured-eyebrow {
    color: #0054A6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}
.kamp-featured-body h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px;
    line-height: 1.25;
}
.kamp-featured-body h2 strong { color: #0054A6; }
.kamp-featured-lead {
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 18px;
}
.kamp-featured-lead strong { color: #0f172a; }

.kamp-gift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 6px 0 18px;
}
.kamp-gift-card {
    background: linear-gradient(135deg, #0054A6, #003a73);
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 16px rgba(0, 84, 166, 0.25);
}
.kamp-gift-count {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px 10px;
    text-align: center;
    flex-shrink: 0;
    min-width: 56px;
}
.kamp-gift-count span {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    display: block;
    color: #fde68a;
}
.kamp-gift-count small {
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.15;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
}
.kamp-gift-info { flex: 1; min-width: 0; }
.kamp-gift-value {
    font-size: 10.5px;
    font-weight: 700;
    color: #fde68a;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
}
.kamp-gift-name {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.25;
}
.kamp-gift-name strong { color: #fde68a; font-weight: 800; }
.kamp-gift-model {
    font-size: 10.5px;
    opacity: 0.78;
    margin-top: 2px;
    font-family: 'Courier New', monospace;
}

.kamp-featured-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.kamp-btn-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.kamp-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37, 211, 102, 0.5); }

.kamp-featured-fineprint {
    font-size: 11.5px;
    color: #64748b;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}
.kamp-featured-fineprint a { color: #0054A6; font-weight: 700; }

@media (max-width: 880px) {
    .kamp-featured { grid-template-columns: 1fr; }
    .kamp-featured-image { min-height: 220px; }
    .kamp-featured-body { padding: 24px 22px; }
    .kamp-featured-body h2 { font-size: 19px; }
    .kamp-gift-grid { grid-template-columns: 1fr; }
}
