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

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

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

.delivery-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    font-weight: 400;
}

/* Delivery Conditions */
.delivery-conditions {
    padding: 80px 0;
    background: var(--primary-gray);
}

.delivery-panel {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
}

.delivery-panel-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.delivery-panel-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.delivery-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.delivery-section {
    padding: 30px;
    background: var(--primary-gray);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.delivery-section:hover {
    transform: translateY(-5px);
}

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

.delivery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.taxi-icon {
    background: #ffd700;
    color: var(--text-dark);
}

.truck-icon {
    background: #d4af37;
    color: var(--primary-white);
}

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

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

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

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

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

.delivery-list li.highlighted {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.delivery-list li.highlighted::before {
    display: none;
}

.delivery-list li.highlighted svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Note Section */
.delivery-note {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    border-left: 4px solid var(--accent-gold);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.note-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

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

.note-content p:last-child {
    margin-bottom: 0;
}

/* Delivery Features */
.delivery-features {
    padding: 80px 0;
    background: var(--primary-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--primary-gray);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-gold);
}

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

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

/* CTA Section */
.delivery-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: 992px) {
    .delivery-panel {
        padding: 40px;
    }

    .delivery-sections {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .delivery-panel {
        padding: 30px 20px;
    }

    .delivery-section {
        padding: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}