/* Genel Ayarlar */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0f3d91;
    --accent-blue: #1f6bff;
    --deep-navy: #0a2558;
    --soft-bg: #f8fbff;
    --card-white: #ffffff;
    --text-main: #2d3748;
    --text-muted: #718096;
}

/* Ürünler Bölümü Genel */
.mavzer-products-section {
    background: #FEF4EE; ;
    padding: 120px 20px;
    font-family: 'Inter', sans-serif;
}

.mavzer-products-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Başlık Alanı */
.mavzer-products-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.mavzer-badge {
    background: rgba(31, 107, 255, 0.1);
    color: var(--accent-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.mavzer-main-title {
    font-size: 42px;
    color: var(--deep-navy);
    font-weight: 800;
    margin-bottom: 25px;
}

.mavzer-main-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.mavzer-main-desc span {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Grid Yapısı */
.mavzer-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Kartlar */
.mavzer-product-card {
    background: var(--card-white);
    padding: 40px;
    border-radius: 32px;
    position: relative;
    border: 1px solid rgba(15, 61, 145, 0.05);
    box-shadow: 0 20px 50px rgba(10, 37, 88, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.mavzer-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(10, 37, 88, 0.1);
    border-color: var(--accent-blue);
}

.mavzer-card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(31, 107, 255, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: 0.6s opacity;
    z-index: -1;
}

.mavzer-product-card:hover .mavzer-card-glow { opacity: 1; }

.mavzer-card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.mavzer-card-icon svg { width: 30px; height: 30px; }

.mavzer-card-title {
    font-size: 22px;
    color: var(--deep-navy);
    font-weight: 700;
    margin-bottom: 12px;
}

.mavzer-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Liste */
.mavzer-sub-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mavzer-sub-list li {
    font-size: 14px;
    color: var(--text-main);
    padding: 10px 0;
    border-bottom: 1px solid #f2f6fa;
    display: flex; align-items: center;
}

.mavzer-sub-list li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: 900;
    margin-right: 10px;
}

/* Buton Ayarları */
.mavzer-card-footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 15px;
}

.mavzer-card-btn {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Butonu daireye yakın şık bir kare/yuvarlak yapıyoruz */
    width: 48px; 
    height: 48px;
    background: #f8fafc;
    border-radius: 50%; /* Tam yuvarlak istiyorsan 50%, karemsi istiyorsan 14px yap */
    color: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    margin: 0 auto; /* Tam ortada durması için */
}

.mavzer-card-btn svg {
    width: 22px; /* İkonu biraz büyüttük, daha çarpıcı durur */
    height: 22px;
    display: block;
    transition: transform 0.3s;
}

.mavzer-card-btn:hover {
    background: var(--primary-blue);
    color: white !important;
    transform: scale(1.1); /* Hover olunca hafifçe büyür, çok havalı durur */
}

.mavzer-card-btn:hover svg {
    transform: translateX(3px); /* Ok işareti sağa kayar */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .mavzer-main-title { font-size: 32px; }
    .mavzer-products-section { padding: 60px 20px; }
}

/* --- HEADER FIX (KESİN ÇÖZÜM) --- */
/* Header içindeki tüm sticky yapılarını iptal eder */
header.wp-block-template-part .is-position-sticky,
.wp-block-group.is-position-sticky {
    position: static !important;
    top: auto !important;
}