/* ===== DESKTOP.WARRANTY.CSS - Десктопные стили страницы "Гарантия" ===== */

/* Hero Section */
.warranty-hero {
    padding: 80px 0;
    background: var(--primary-white);
}

.warranty-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.warranty-hero-text {
    padding: 20px 0;
}

.warranty-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--text-dark);
}

.warranty-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.warranty-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-beige);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-gold);
}

.badge-icon {
    color: var(--accent-gold);
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.warranty-hero-image {
    position: relative;
}

.warranty-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

/* Warranty Terms */
.warranty-terms {
    padding: 80px 0;
    background: var(--primary-gray);
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.warranty-card {
    background: var(--primary-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.warranty-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.warranty-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.warranty-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.warranty-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

.warranty-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warranty-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.warranty-list li:last-child {
    margin-bottom: 0;
}

.warranty-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* CTA Section */
.warranty-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-beige) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: var(--text-dark);
    color: var(--primary-white);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--text-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .warranty-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .warranty-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .warranty-card {
        padding: 30px;
    }
}