/* custom-shipping.css */
.custom-shipping-info {
    border: 1px solid #eee;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.shipping-header {
    background: #fff8e1;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.shipping-header p {
    margin: 5px 0;
    line-height: 1.4;
    font-size: 15px;
}

.order-timeline {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.order-timeline > div {
    flex: 1;
}

.order-timeline div div:first-child {
    font-size: 24px;
    margin-bottom: 5px;
}

.discount-slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}

.discount-item {
    flex: 0 0 auto;
    min-width: 180px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    scroll-snap-align: start;
    border: 1px dashed #ccc;
}

.discount-item:hover {
    background: #f1f1f1;
}

.discount-code {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.discount-desc {
    font-size: 14px;
    color: #666;
}
