/* ========================================
   MGPS PPF Warranty Section — GARANTİ VE KAYIT SİSTEMİ
   ======================================== */

/* --- Section --- */
.mgps-warranty {
    background: linear-gradient(180deg, #F0F1F3 0%, #F8F9FA 100%);
    border-radius: 16px;
    overflow: hidden;
}

.mgps-warranty .mgps-text-center {
    text-align: center;
}

/* --- Grid --- */
.mgps-warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: center;
}

/* --- Sol sutun: Ozellik kartlari --- */
.mgps-warranty-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- Ozellik karti --- */
.mgps-warranty-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* --- Ikon --- */
.mgps-warranty-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mgps-warranty-icon svg {
    width: 40px;
    height: 40px;
}

/* --- Icerik --- */
.mgps-warranty-title {
    font-family: var(--mgps-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--mgps-text-primary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mgps-warranty-desc {
    font-family: var(--mgps-font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--mgps-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* --- Sag sutun: Gorsel placeholder --- */
.mgps-warranty-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}

.mgps-warranty-img {
    width: 77% !important;
    height: auto !important;
    max-width: 77% !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    display: block !important;
}

.mgps-warranty-placeholder {
    width: 100%;
    min-height: 400px;
    background-color: #1a1a24;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mgps-warranty-placeholder span {
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--mgps-font-body);
    font-size: 14px;
    letter-spacing: 0.1em;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet: <= 1024px */
@media (max-width: 1024px) {
    .mgps-warranty-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Mobile: <= 768px */
@media (max-width: 768px) {
    .mgps-warranty-feat {
        gap: 12px;
    }

    .mgps-warranty-placeholder {
        min-height: 280px;
    }
}
