/* ===================== HERO ALANI ===================== */
.hero-section {
    padding: 50px 0 40px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* ── SOL: Öne Çıkan Ürünler ── */
.sol-kutu {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    border-top: 4px solid var(--green);
}
.sol-kutu h3 {
    font-size: 18px;
    color: var(--green);
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 8px;
}
.sol-kutu h3::before {
    content: '';
    display: inline-block;
    width: 4px; height: 20px;
    background: var(--green-light);
    border-radius: 2px;
}
.product-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.product-list li {
    background: linear-gradient(90deg, #f4ffe8, #fff);
    border-left: 4px solid var(--green);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: 0.2s ease;
    cursor: default;
}
.product-list li:hover {
    background: linear-gradient(90deg, #e8ffd4, #f4ffe8);
    transform: translateX(4px);
}

/* ── ORTA: Ana Başlık ── */
.orta-kutu {
    background: linear-gradient(145deg, #228B22, #2fa52f);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 12px 40px rgba(34,139,34,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.orta-kutu::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.orta-kutu::after {
    content: '';
    position: absolute; bottom: -30px; left: -30px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.orta-etiket {
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(5px);
}
.orta-kutu h1 {
    font-size: clamp(22px, 2.5vw, 32px);
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    position: relative; z-index: 1;
}
.orta-kutu p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative; z-index: 1;
}
.orta-butonlar {
    display: flex; flex-direction: column; gap: 10px;
    width: 100%; margin-top: 8px;
    position: relative; z-index: 1;
}
.btn-hero-birincil {
    background: #fff;
    color: var(--green);
    border: none;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-hero-birincil:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-hero-ikincil {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    backdrop-filter: blur(5px);
}
.btn-hero-ikincil:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ── SAĞ: Ersağ Marka Görseli ── */
.sag-kutu {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    border-top: 4px solid var(--pink);
    display: flex;
    flex-direction: column;
}
.sag-gorsel {
    width: 100%;
    flex: 1;
    min-height: 220px;
    background: url('resimler/ersag-marka.jpg') center/cover no-repeat,
                linear-gradient(135deg, #228B22 0%, #82FF1F 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sag-gorsel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.sag-gorsel-etiket {
    position: absolute; bottom: 14px; left: 14px;
    background: var(--pink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}
.sag-icerik {
    padding: 18px 20px;
}
.sag-icerik h3 {
    font-size: 16px;
    color: var(--green);
    font-weight: 800;
    margin-bottom: 10px;
}
.sag-icerik p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}
.sag-unvan {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #f4ffe8, #e8ffd4);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid #c8f0a0;
}

/* ── İSTATİSTİK BANDI ── */
.stat-bant {
    background: linear-gradient(90deg, #228B22, #2fa52f);
    border-radius: 16px;
    padding: 20px 30px;
    margin: 28px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-sayi {
    font-size: 28px;
    font-weight: 800;
    color: var(--green-light);
    display: block;
    line-height: 1;
}
.stat-etiket {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── ÜCRETSİZ ÜYELİK ── */
.uyelik-section { padding: 10px 0 30px; }
.uyelik-kutu {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-left: 5px solid var(--green);
}
.uyelik-sol h2 {
    font-size: 28px;
    color: var(--green);
    font-weight: 800;
    margin-bottom: 14px;
}
.uyelik-sol p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 10px;
}
.highlight { color: var(--green); font-weight: 800; }
.sponsor-kutu {
    background: #f4ffe8;
    border: 2px solid #c8f0a0;
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 13px;
    color: #2a5a2a;
    line-height: 1.7;
}
.uyelik-sag {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.uyelik-ozellik {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #f9fff5;
    border-radius: 12px;
    border: 1px solid #e4f5d8;
}
.uyelik-ozellik-ikon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.uyelik-ozellik-metin strong {
    display: block;
    font-size: 14px;
    color: #222;
    margin-bottom: 3px;
}
.uyelik-ozellik-metin span {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* ── BUTONLAR ── */
.buton-section { padding: 20px 0 50px; text-align: center; }
.buton-satir {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 15px 30px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--pink), #d4046a);
    color: #fff;
    box-shadow: 0 8px 24px rgba(252,5,124,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(252,5,124,0.4); }
.btn-secondary {
    background: var(--white);
    color: var(--green);
    border: 2px solid var(--green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.btn-secondary:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

/* ── ÇEREZ ── */
.cerez-kutu {
    display: none;
    position: fixed;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    width: 90%; max-width: 480px;
    background: rgba(20,20,20,0.97);
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}
.cerez-kutu p { font-size: 13px; line-height: 1.5; margin-bottom: 12px; color: rgba(255,255,255,0.8); }
.cerez-btn {
    background: var(--green-light);
    color: #000;
    border: none;
    padding: 8px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.cerez-btn:hover { background: #6ee600; }

/* ── MOBİL ── */
@media (max-width: 992px) {
    .hero-grid   { grid-template-columns: 1fr; gap: 20px; }
    .stat-bant   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 10px; }
    .stat-item:nth-child(3),
    .stat-item:last-child { border-bottom: none; }
    .uyelik-kutu { grid-template-columns: 1fr; gap: 24px; }
    .sag-gorsel  { min-height: 200px; }
}
@media (max-width: 640px) {
    .hero-section { padding: 24px 0 20px; }
    .orta-kutu    { padding: 24px 18px; }
    .orta-kutu h1 { font-size: 22px; }
    .stat-bant    { grid-template-columns: repeat(2, 1fr); padding: 16px; }
    .stat-sayi    { font-size: 22px; }
    .uyelik-kutu  { padding: 22px 18px; }
    .buton-satir  { flex-direction: column; align-items: center; }
    .btn          { width: 100%; max-width: 280px; }
}