.delivery-page {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-page__title {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 40px;
    text-align: center;
}

.delivery-section__subtitle {
    font-size: 24px;
    color: #1A5276;
    margin-bottom: 25px;
    border-bottom: 2px solid #E1F5FE;
    padding-bottom: 10px;
}

/* Таблица */
.delivery-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFF;
    min-width: 800px;
}

.delivery-table th {
    background: #F8FCFE;
    padding: 18px 15px;
    text-align: center;
    font-weight: 700;
    color: #2C3E50;
    border: 1px solid #E1F5FE;
}

.delivery-table td {
    padding: 18px 15px;
    border: 1px solid #E1F5FE;
    text-align: center;
    color: #555;
}

.delivery-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #2C3E50;
    background: #F8FCFE;
    width: 40%;
}

.delivery-table .free {
    color: #27AE60;
    font-weight: 700;
}

/* Условия */
.delivery-conditions {
    background: #F8FCFE;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #A7E7FE;
}

.delivery-conditions p {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.delivery-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.delivery-list li:before {
    content: "•";
    color: #A7E7FE;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.delivery-list strong {
    color: #2C3E50;
}

/* Адаптив */
@media (max-width: 768px) {
    .delivery-page {
        padding: 40px 15px;
    }

    .delivery-page__title {
        font-size: 30px;
    }

    .delivery-section__subtitle {
        font-size: 22px;
    }

    .delivery-table th,
    .delivery-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .delivery-conditions {
        padding: 20px;
    }
}

/* Общая страница доставки и оплаты */
.delivery-payment-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.delivery-payment-page__title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Блок доставки (оставляем существующие стили, если есть) */
.delivery-section {
    margin-bottom: 50px;
}

.delivery-section__subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: #444;
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.delivery-table th,
.delivery-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.delivery-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.delivery-table td.free {
    color: #4CAF50;
    font-weight: bold;
}

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

.delivery-list li {
    padding: 10px 0 10px 24px;
    position: relative;
}

.delivery-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

/* Блок оплаты */
.payment-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.payment-section__subtitle {
    font-size: 24px;
    margin-bottom: 25px;
    color: #444;
}

.payment-section h3 {
    font-size: 18px;
    margin: 20px 0 10px 0;
    color: #555;
}

.payment-list {
    list-style: none;
    padding: 0;
}

.payment-list li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.payment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.payment-process p,
.payment-security p,
.payment-refund p {
    line-height: 1.6;
    margin: 10px 0 20px 0;
}

.payment-details p {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
    line-height: 1.8;
}

/* Адаптивность */
@media (max-width: 768px) {
    .delivery-payment-page {
        padding: 20px 15px;
    }

    .delivery-payment-page__title {
        font-size: 24px;
    }

    .delivery-section__subtitle,
    .payment-section__subtitle {
        font-size: 20px;
    }

    .delivery-table th,
    .delivery-table td {
        padding: 8px;
        font-size: 14px;
    }
}

/* ========== БЛОК ВОЗВРАТА ========== */
.return-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.return-section__subtitle {
    font-size: 24px;
    margin-bottom: 25px;
    color: #444;
}

.return-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.return-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.return-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.return-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-left: 3px solid #4CAF50;
    padding-left: 12px;
}

.return-card ul,
.return-card ol {
    margin: 10px 0;
    padding-left: 20px;
}

.return-card li {
    margin: 8px 0;
    line-height: 1.5;
}

.return-card p {
    line-height: 1.5;
    margin: 10px 0;
}

.return-note {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #ddd;
}

.return-steps {
    padding-left: 20px;
}

.return-steps li {
    margin: 10px 0;
}

.return-contacts {
    background: #e8f5e9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.return-contacts h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2e7d32;
}

.return-contacts ul {
    list-style: none;
    padding: 0;
}

.return-contacts li {
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
}

.return-contacts li:before {
    content: "📞";
    position: absolute;
    left: 0;
}

.return-contacts li:nth-child(2):before {
    content: "✉️";
}

.return-contacts li:nth-child(3):before {
    content: "💬";
}

.return-contacts a {
    color: #2e7d32;
    text-decoration: none;
}

.return-contacts a:hover {
    text-decoration: underline;
}

/* Адаптивность для карточек возврата */
@media (max-width: 768px) {
    .return-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .return-card {
        padding: 15px;
    }
    
    .return-section__subtitle {
        font-size: 20px;
    }
}