.shipping-page-custom {
    max-width: 1200px;
    margin: 0 auto;
}

.shipping-page-custom .shipping-banner {
    background: #ff2470;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.shipping-page-custom .shipping-banner .free-accent {
    color: #99cc00;
}

.shipping-page-custom .section-title {
    font-size: 20px;
    color: #333;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #ff2470;
}

.shipping-page-custom .shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.shipping-page-custom .shipping-table thead tr {
    background: #333;
    color: #fff;
}

.shipping-page-custom .shipping-table th,
.shipping-page-custom .shipping-table td {
    padding: 12px 15px;
    text-align: center;
}

.shipping-page-custom .shipping-table tbody td {
    border-bottom: 1px solid #eee;
}

.shipping-page-custom .shipping-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.shipping-page-custom .shipping-table tbody tr:hover {
    background-color: #f0f0f0;
}

.shipping-page-custom .muted-price {
    color: #666;
}

.shipping-page-custom .free-price {
    color: #99cc00;
}

.shipping-page-custom .payment-section {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.shipping-page-custom .payment-column {
    flex: 1;
}

.shipping-page-custom .payment-item {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    border-left: 4px solid #99cc00;
}

.shipping-page-custom .payment-item.is-cod {
    border-left-color: #ff2470;
}

.shipping-page-custom .cod-price {
    color: #ff2470;
}

.shipping-page-custom .bank-section {
    margin-top: 30px;
}

.shipping-page-custom .bank-section h3 {
    color: #333;
}

@media (max-width: 768px) {
    .shipping-page-custom .payment-section {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .shipping-page-custom .shipping-table th,
    .shipping-page-custom .shipping-table td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .shipping-page-custom .shipping-banner {
        font-size: 16px;
    }
}
