/* Styles pour l'encart Mode de livraison */

.delivery-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.delivery-radio {
    margin-right: 10px;
    margin-top: 3px;
}

.delivery-content {
    flex: 1;
}

.delivery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.delivery-name {
    font-weight: 600;
    color: #333;
}

.delivery-price {
    font-weight: 600;
    color: #333;
}

.delivery-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.delivery-time {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.delivery-time-icon {
    margin-right: 8px;
    color: #666;
}

.relay-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.relay-button:hover {
    background-color: #333;
}