/* ===== WARRANTY PAGE — /garantyja (information_id=10) ===== */

.gar-page { padding-bottom: 60px; }

/* Intro block */
.gar-intro {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,61,81,0.08);
    padding: 28px 32px;
    margin-bottom: 32px;
    border-left: 4px solid #fbb005;
}
.gar-intro p {
    font-size: 15px;
    color: #2C3D51;
    line-height: 1.7;
    margin: 0;
}

/* Section title */
.gar-section-title {
    font-family: HelveticaNeueCyrBlack;
    font-size: 20px;
    color: #2C3D51;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f2f5;
}

/* Warranty table */
.gar-table-wrap {
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44,61,81,0.08);
}
.gar-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}
.gar-table thead tr {
    background: #2C3D51;
    color: #fff;
}
.gar-table thead th {
    padding: 14px 20px;
    text-align: left;
    font-family: HelveticaNeueCyrBold;
    font-size: 13px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.gar-table thead th:nth-child(2),
.gar-table thead th:nth-child(3) {
    text-align: center;
}
.gar-table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.15s;
}
.gar-table tbody tr:last-child { border-bottom: none; }
.gar-table tbody tr:hover { background: #f8fafc; }
.gar-table tbody td {
    padding: 14px 20px;
    color: #2C3D51;
    line-height: 1.5;
    vertical-align: middle;
}
.gar-table tbody td:nth-child(2) {
    text-align: center;
    font-family: HelveticaNeueCyrBold;
    font-size: 18px;
    color: #1c7ed6;
    white-space: nowrap;
}
.gar-table tbody td:nth-child(3) { text-align: center; }

.gar-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-family: HelveticaNeueCyrBold;
    white-space: nowrap;
}
.gar-badge-required {
    background: #fff3cd;
    color: #856404;
}
.gar-badge-no {
    background: #d1fae5;
    color: #065f46;
}
.gar-badge-zero {
    background: #fee2e2;
    color: #991b1b;
}

/* Non-warranty row */
.gar-table tbody tr.gar-row-nonguar td:first-child {
    font-style: italic;
    color: #8D9293;
}

/* Info block */
.gar-info-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,61,81,0.08);
    padding: 24px 32px;
    margin-bottom: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.gar-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gar-info-icon-warning { background: #fff8e1; color: #f59e0b; }
.gar-info-icon-info    { background: #e8f4fd; color: #1c7ed6; }
.gar-info-text { flex: 1; }
.gar-info-text p {
    margin: 0;
    font-size: 14px;
    color: #2C3D51;
    line-height: 1.7;
}

/* Non-return list */
.gar-list-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,61,81,0.08);
    padding: 24px 32px;
    margin-bottom: 24px;
}
.gar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gar-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: #2C3D51;
    line-height: 1.6;
}
.gar-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: #fbb005;
    border-radius: 50%;
    margin-top: 7px;
}

/* Note block */
.gar-note {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 20px 24px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .gar-intro  { padding: 20px; }
    .gar-info-block { flex-direction: column; gap: 12px; padding: 20px; }
    .gar-list-block { padding: 20px; }
}
@media (max-width: 480px) {
    .gar-table thead th,
    .gar-table tbody td { padding: 10px 12px; }
    .gar-section-title { font-size: 17px; }
    .gar-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .gar-table { min-width: 520px; }
}
